// Copyright 2019 Google LLC. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Code generated file. DO NOT EDIT. // Package androidpublisher provides access to the Google Play Developer API. // // For product documentation, see: https://developers.google.com/android-publisher // // Creating a client // // Usage example: // // import "google.golang.org/api/androidpublisher/v2" // ... // ctx := context.Background() // androidpublisherService, err := androidpublisher.NewService(ctx) // // In this example, Google Application Default Credentials are used for authentication. // // For information on how to create and obtain Application Default Credentials, see https://developers.google.com/identity/protocols/application-default-credentials. // // Other authentication options // // To use an API key for authentication (note: some APIs do not support API keys), use option.WithAPIKey: // // androidpublisherService, err := androidpublisher.NewService(ctx, option.WithAPIKey("AIza...")) // // To use an OAuth token (e.g., a user token obtained via a three-legged OAuth flow), use option.WithTokenSource: // // config := &oauth2.Config{...} // // ... // token, err := config.Exchange(ctx, ...) // androidpublisherService, err := androidpublisher.NewService(ctx, option.WithTokenSource(config.TokenSource(ctx, token))) // // See https://godoc.org/google.golang.org/api/option/ for details on options. package androidpublisher // import "google.golang.org/api/androidpublisher/v2" import ( "bytes" "context" "encoding/json" "errors" "fmt" "io" "net/http" "net/url" "strconv" "strings" gensupport "google.golang.org/api/gensupport" googleapi "google.golang.org/api/googleapi" option "google.golang.org/api/option" htransport "google.golang.org/api/transport/http" ) // Always reference these packages, just in case the auto-generated code // below doesn't. var _ = bytes.NewBuffer var _ = strconv.Itoa var _ = fmt.Sprintf var _ = json.NewDecoder var _ = io.Copy var _ = url.Parse var _ = gensupport.MarshalJSON var _ = googleapi.Version var _ = errors.New var _ = strings.Replace var _ = context.Canceled const apiId = "androidpublisher:v2" const apiName = "androidpublisher" const apiVersion = "v2" const basePath = "https://www.googleapis.com/androidpublisher/v2/applications/" // OAuth2 scopes used by this API. const ( // View and manage your Google Play Developer account AndroidpublisherScope = "https://www.googleapis.com/auth/androidpublisher" ) // NewService creates a new Service. func NewService(ctx context.Context, opts ...option.ClientOption) (*Service, error) { scopesOption := option.WithScopes( "https://www.googleapis.com/auth/androidpublisher", ) // NOTE: prepend, so we don't override user-specified scopes. opts = append([]option.ClientOption{scopesOption}, opts...) client, endpoint, err := htransport.NewClient(ctx, opts...) if err != nil { return nil, err } s, err := New(client) if err != nil { return nil, err } if endpoint != "" { s.BasePath = endpoint } return s, nil } // New creates a new Service. It uses the provided http.Client for requests. // // Deprecated: please use NewService instead. // To provide a custom HTTP client, use option.WithHTTPClient. // If you are using google.golang.org/api/googleapis/transport.APIKey, use option.WithAPIKey with NewService instead. func New(client *http.Client) (*Service, error) { if client == nil { return nil, errors.New("client is nil") } s := &Service{client: client, BasePath: basePath} s.Edits = NewEditsService(s) s.Inappproducts = NewInappproductsService(s) s.Orders = NewOrdersService(s) s.Purchases = NewPurchasesService(s) s.Reviews = NewReviewsService(s) return s, nil } type Service struct { client *http.Client BasePath string // API endpoint base URL UserAgent string // optional additional User-Agent fragment Edits *EditsService Inappproducts *InappproductsService Orders *OrdersService Purchases *PurchasesService Reviews *ReviewsService } func (s *Service) userAgent() string { if s.UserAgent == "" { return googleapi.UserAgent } return googleapi.UserAgent + " " + s.UserAgent } func NewEditsService(s *Service) *EditsService { rs := &EditsService{s: s} rs.Apklistings = NewEditsApklistingsService(s) rs.Apks = NewEditsApksService(s) rs.Bundles = NewEditsBundlesService(s) rs.Deobfuscationfiles = NewEditsDeobfuscationfilesService(s) rs.Details = NewEditsDetailsService(s) rs.Expansionfiles = NewEditsExpansionfilesService(s) rs.Images = NewEditsImagesService(s) rs.Listings = NewEditsListingsService(s) rs.Testers = NewEditsTestersService(s) rs.Tracks = NewEditsTracksService(s) return rs } type EditsService struct { s *Service Apklistings *EditsApklistingsService Apks *EditsApksService Bundles *EditsBundlesService Deobfuscationfiles *EditsDeobfuscationfilesService Details *EditsDetailsService Expansionfiles *EditsExpansionfilesService Images *EditsImagesService Listings *EditsListingsService Testers *EditsTestersService Tracks *EditsTracksService } func NewEditsApklistingsService(s *Service) *EditsApklistingsService { rs := &EditsApklistingsService{s: s} return rs } type EditsApklistingsService struct { s *Service } func NewEditsApksService(s *Service) *EditsApksService { rs := &EditsApksService{s: s} return rs } type EditsApksService struct { s *Service } func NewEditsBundlesService(s *Service) *EditsBundlesService { rs := &EditsBundlesService{s: s} return rs } type EditsBundlesService struct { s *Service } func NewEditsDeobfuscationfilesService(s *Service) *EditsDeobfuscationfilesService { rs := &EditsDeobfuscationfilesService{s: s} return rs } type EditsDeobfuscationfilesService struct { s *Service } func NewEditsDetailsService(s *Service) *EditsDetailsService { rs := &EditsDetailsService{s: s} return rs } type EditsDetailsService struct { s *Service } func NewEditsExpansionfilesService(s *Service) *EditsExpansionfilesService { rs := &EditsExpansionfilesService{s: s} return rs } type EditsExpansionfilesService struct { s *Service } func NewEditsImagesService(s *Service) *EditsImagesService { rs := &EditsImagesService{s: s} return rs } type EditsImagesService struct { s *Service } func NewEditsListingsService(s *Service) *EditsListingsService { rs := &EditsListingsService{s: s} return rs } type EditsListingsService struct { s *Service } func NewEditsTestersService(s *Service) *EditsTestersService { rs := &EditsTestersService{s: s} return rs } type EditsTestersService struct { s *Service } func NewEditsTracksService(s *Service) *EditsTracksService { rs := &EditsTracksService{s: s} return rs } type EditsTracksService struct { s *Service } func NewInappproductsService(s *Service) *InappproductsService { rs := &InappproductsService{s: s} return rs } type InappproductsService struct { s *Service } func NewOrdersService(s *Service) *OrdersService { rs := &OrdersService{s: s} return rs } type OrdersService struct { s *Service } func NewPurchasesService(s *Service) *PurchasesService { rs := &PurchasesService{s: s} rs.Products = NewPurchasesProductsService(s) rs.Subscriptions = NewPurchasesSubscriptionsService(s) rs.Voidedpurchases = NewPurchasesVoidedpurchasesService(s) return rs } type PurchasesService struct { s *Service Products *PurchasesProductsService Subscriptions *PurchasesSubscriptionsService Voidedpurchases *PurchasesVoidedpurchasesService } func NewPurchasesProductsService(s *Service) *PurchasesProductsService { rs := &PurchasesProductsService{s: s} return rs } type PurchasesProductsService struct { s *Service } func NewPurchasesSubscriptionsService(s *Service) *PurchasesSubscriptionsService { rs := &PurchasesSubscriptionsService{s: s} return rs } type PurchasesSubscriptionsService struct { s *Service } func NewPurchasesVoidedpurchasesService(s *Service) *PurchasesVoidedpurchasesService { rs := &PurchasesVoidedpurchasesService{s: s} return rs } type PurchasesVoidedpurchasesService struct { s *Service } func NewReviewsService(s *Service) *ReviewsService { rs := &ReviewsService{s: s} return rs } type ReviewsService struct { s *Service } type Apk struct { // Binary: Information about the binary payload of this APK. Binary *ApkBinary `json:"binary,omitempty"` // VersionCode: The version code of the APK, as specified in the APK's // manifest file. VersionCode int64 `json:"versionCode,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Binary") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Binary") to include in API // requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *Apk) MarshalJSON() ([]byte, error) { type NoMethod Apk raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // ApkBinary: Represents the binary payload of an APK. type ApkBinary struct { // Sha1: A sha1 hash of the APK payload, encoded as a hex string and // matching the output of the sha1sum command. Sha1 string `json:"sha1,omitempty"` // Sha256: A sha256 hash of the APK payload, encoded as a hex string and // matching the output of the sha256sum command. Sha256 string `json:"sha256,omitempty"` // ForceSendFields is a list of field names (e.g. "Sha1") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Sha1") to include in API // requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *ApkBinary) MarshalJSON() ([]byte, error) { type NoMethod ApkBinary raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type ApkListing struct { // Language: The language code, in BCP 47 format (eg "en-US"). Language string `json:"language,omitempty"` // RecentChanges: Describe what's new in your APK. RecentChanges string `json:"recentChanges,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Language") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Language") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *ApkListing) MarshalJSON() ([]byte, error) { type NoMethod ApkListing raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type ApkListingsListResponse struct { // Kind: Identifies what kind of resource this is. Value: the fixed // string "androidpublisher#apkListingsListResponse". Kind string `json:"kind,omitempty"` Listings []*ApkListing `json:"listings,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Kind") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Kind") to include in API // requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *ApkListingsListResponse) MarshalJSON() ([]byte, error) { type NoMethod ApkListingsListResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type ApksAddExternallyHostedRequest struct { // ExternallyHostedApk: The definition of the externally-hosted APK and // where it is located. ExternallyHostedApk *ExternallyHostedApk `json:"externallyHostedApk,omitempty"` // ForceSendFields is a list of field names (e.g. "ExternallyHostedApk") // to unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "ExternallyHostedApk") to // include in API requests with the JSON null value. By default, fields // with empty values are omitted from API requests. However, any field // with an empty value appearing in NullFields will be sent to the // server as null. It is an error if a field in this list has a // non-empty value. This may be used to include null fields in Patch // requests. NullFields []string `json:"-"` } func (s *ApksAddExternallyHostedRequest) MarshalJSON() ([]byte, error) { type NoMethod ApksAddExternallyHostedRequest raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type ApksAddExternallyHostedResponse struct { // ExternallyHostedApk: The definition of the externally-hosted APK and // where it is located. ExternallyHostedApk *ExternallyHostedApk `json:"externallyHostedApk,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "ExternallyHostedApk") // to unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "ExternallyHostedApk") to // include in API requests with the JSON null value. By default, fields // with empty values are omitted from API requests. However, any field // with an empty value appearing in NullFields will be sent to the // server as null. It is an error if a field in this list has a // non-empty value. This may be used to include null fields in Patch // requests. NullFields []string `json:"-"` } func (s *ApksAddExternallyHostedResponse) MarshalJSON() ([]byte, error) { type NoMethod ApksAddExternallyHostedResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type ApksListResponse struct { Apks []*Apk `json:"apks,omitempty"` // Kind: Identifies what kind of resource this is. Value: the fixed // string "androidpublisher#apksListResponse". Kind string `json:"kind,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Apks") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Apks") to include in API // requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *ApksListResponse) MarshalJSON() ([]byte, error) { type NoMethod ApksListResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type AppDetails struct { // ContactEmail: The user-visible support email for this app. ContactEmail string `json:"contactEmail,omitempty"` // ContactPhone: The user-visible support telephone number for this app. ContactPhone string `json:"contactPhone,omitempty"` // ContactWebsite: The user-visible website for this app. ContactWebsite string `json:"contactWebsite,omitempty"` // DefaultLanguage: Default language code, in BCP 47 format (eg // "en-US"). DefaultLanguage string `json:"defaultLanguage,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "ContactEmail") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "ContactEmail") to include // in API requests with the JSON null value. By default, fields with // empty values are omitted from API requests. However, any field with // an empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *AppDetails) MarshalJSON() ([]byte, error) { type NoMethod AppDetails raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // AppEdit: Represents an edit of an app. An edit allows clients to make // multiple changes before committing them in one operation. type AppEdit struct { // ExpiryTimeSeconds: The time at which the edit will expire and will be // no longer valid for use in any subsequent API calls (encoded as // seconds since the Epoch). ExpiryTimeSeconds string `json:"expiryTimeSeconds,omitempty"` // Id: The ID of the edit that can be used in subsequent API calls. Id string `json:"id,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "ExpiryTimeSeconds") // to unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "ExpiryTimeSeconds") to // include in API requests with the JSON null value. By default, fields // with empty values are omitted from API requests. However, any field // with an empty value appearing in NullFields will be sent to the // server as null. It is an error if a field in this list has a // non-empty value. This may be used to include null fields in Patch // requests. NullFields []string `json:"-"` } func (s *AppEdit) MarshalJSON() ([]byte, error) { type NoMethod AppEdit raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type Bundle struct { // Sha1: A sha1 hash of the upload payload, encoded as a hex string and // matching the output of the sha1sum command. Sha1 string `json:"sha1,omitempty"` // Sha256: A sha256 hash of the upload payload, encoded as a hex string // and matching the output of the sha256sum command. Sha256 string `json:"sha256,omitempty"` // VersionCode: The version code of the Android App Bundle. As specified // in the Android App Bundle's base module APK manifest file. VersionCode int64 `json:"versionCode,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Sha1") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Sha1") to include in API // requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *Bundle) MarshalJSON() ([]byte, error) { type NoMethod Bundle raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type BundlesListResponse struct { Bundles []*Bundle `json:"bundles,omitempty"` // Kind: Identifies what kind of resource this is. Value: the fixed // string "androidpublisher#bundlesListResponse". Kind string `json:"kind,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Bundles") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Bundles") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *BundlesListResponse) MarshalJSON() ([]byte, error) { type NoMethod BundlesListResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type Comment struct { // DeveloperComment: A comment from a developer. DeveloperComment *DeveloperComment `json:"developerComment,omitempty"` // UserComment: A comment from a user. UserComment *UserComment `json:"userComment,omitempty"` // ForceSendFields is a list of field names (e.g. "DeveloperComment") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "DeveloperComment") to // include in API requests with the JSON null value. By default, fields // with empty values are omitted from API requests. However, any field // with an empty value appearing in NullFields will be sent to the // server as null. It is an error if a field in this list has a // non-empty value. This may be used to include null fields in Patch // requests. NullFields []string `json:"-"` } func (s *Comment) MarshalJSON() ([]byte, error) { type NoMethod Comment raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // DeobfuscationFile: Represents a deobfuscation file. type DeobfuscationFile struct { // SymbolType: The type of the deobfuscation file. SymbolType string `json:"symbolType,omitempty"` // ForceSendFields is a list of field names (e.g. "SymbolType") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "SymbolType") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *DeobfuscationFile) MarshalJSON() ([]byte, error) { type NoMethod DeobfuscationFile raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type DeobfuscationFilesUploadResponse struct { DeobfuscationFile *DeobfuscationFile `json:"deobfuscationFile,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "DeobfuscationFile") // to unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "DeobfuscationFile") to // include in API requests with the JSON null value. By default, fields // with empty values are omitted from API requests. However, any field // with an empty value appearing in NullFields will be sent to the // server as null. It is an error if a field in this list has a // non-empty value. This may be used to include null fields in Patch // requests. NullFields []string `json:"-"` } func (s *DeobfuscationFilesUploadResponse) MarshalJSON() ([]byte, error) { type NoMethod DeobfuscationFilesUploadResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type DeveloperComment struct { // LastModified: The last time at which this comment was updated. LastModified *Timestamp `json:"lastModified,omitempty"` // Text: The content of the comment, i.e. reply body. Text string `json:"text,omitempty"` // ForceSendFields is a list of field names (e.g. "LastModified") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "LastModified") to include // in API requests with the JSON null value. By default, fields with // empty values are omitted from API requests. However, any field with // an empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *DeveloperComment) MarshalJSON() ([]byte, error) { type NoMethod DeveloperComment raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type DeviceMetadata struct { // CpuMake: Device CPU make e.g. "Qualcomm" CpuMake string `json:"cpuMake,omitempty"` // CpuModel: Device CPU model e.g. "MSM8974" CpuModel string `json:"cpuModel,omitempty"` // DeviceClass: Device class (e.g. tablet) DeviceClass string `json:"deviceClass,omitempty"` // GlEsVersion: OpenGL version GlEsVersion int64 `json:"glEsVersion,omitempty"` // Manufacturer: Device manufacturer (e.g. Motorola) Manufacturer string `json:"manufacturer,omitempty"` // NativePlatform: Comma separated list of native platforms (e.g. "arm", // "arm7") NativePlatform string `json:"nativePlatform,omitempty"` // ProductName: Device model name (e.g. Droid) ProductName string `json:"productName,omitempty"` // RamMb: Device RAM in Megabytes e.g. "2048" RamMb int64 `json:"ramMb,omitempty"` // ScreenDensityDpi: Screen density in DPI ScreenDensityDpi int64 `json:"screenDensityDpi,omitempty"` // ScreenHeightPx: Screen height in pixels ScreenHeightPx int64 `json:"screenHeightPx,omitempty"` // ScreenWidthPx: Screen width in pixels ScreenWidthPx int64 `json:"screenWidthPx,omitempty"` // ForceSendFields is a list of field names (e.g. "CpuMake") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "CpuMake") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *DeviceMetadata) MarshalJSON() ([]byte, error) { type NoMethod DeviceMetadata raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type ExpansionFile struct { // FileSize: If set this field indicates that this APK has an Expansion // File uploaded to it: this APK does not reference another APK's // Expansion File. The field's value is the size of the uploaded // Expansion File in bytes. FileSize int64 `json:"fileSize,omitempty,string"` // ReferencesVersion: If set this APK's Expansion File references // another APK's Expansion File. The file_size field will not be set. ReferencesVersion int64 `json:"referencesVersion,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "FileSize") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "FileSize") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *ExpansionFile) MarshalJSON() ([]byte, error) { type NoMethod ExpansionFile raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type ExpansionFilesUploadResponse struct { ExpansionFile *ExpansionFile `json:"expansionFile,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "ExpansionFile") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "ExpansionFile") to include // in API requests with the JSON null value. By default, fields with // empty values are omitted from API requests. However, any field with // an empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *ExpansionFilesUploadResponse) MarshalJSON() ([]byte, error) { type NoMethod ExpansionFilesUploadResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // ExternallyHostedApk: Defines an APK available for this application // that is hosted externally and not uploaded to Google Play. This // function is only available to enterprises who are using Google Play // for Work, and whos application is restricted to the enterprise // private channel type ExternallyHostedApk struct { // ApplicationLabel: The application label. ApplicationLabel string `json:"applicationLabel,omitempty"` // CertificateBase64s: A certificate (or array of certificates if a // certificate-chain is used) used to signed this APK, represented as a // base64 encoded byte array. CertificateBase64s []string `json:"certificateBase64s,omitempty"` // ExternallyHostedUrl: The URL at which the APK is hosted. This must be // an https URL. ExternallyHostedUrl string `json:"externallyHostedUrl,omitempty"` // FileSha1Base64: The SHA1 checksum of this APK, represented as a // base64 encoded byte array. FileSha1Base64 string `json:"fileSha1Base64,omitempty"` // FileSha256Base64: The SHA256 checksum of this APK, represented as a // base64 encoded byte array. FileSha256Base64 string `json:"fileSha256Base64,omitempty"` // FileSize: The file size in bytes of this APK. FileSize int64 `json:"fileSize,omitempty,string"` // IconBase64: The icon image from the APK, as a base64 encoded byte // array. IconBase64 string `json:"iconBase64,omitempty"` // MaximumSdk: The maximum SDK supported by this APK (optional). MaximumSdk int64 `json:"maximumSdk,omitempty"` // MinimumSdk: The minimum SDK targeted by this APK. MinimumSdk int64 `json:"minimumSdk,omitempty"` // NativeCodes: The native code environments supported by this APK // (optional). NativeCodes []string `json:"nativeCodes,omitempty"` // PackageName: The package name. PackageName string `json:"packageName,omitempty"` // UsesFeatures: The features required by this APK (optional). UsesFeatures []string `json:"usesFeatures,omitempty"` // UsesPermissions: The permissions requested by this APK. UsesPermissions []*ExternallyHostedApkUsesPermission `json:"usesPermissions,omitempty"` // VersionCode: The version code of this APK. VersionCode int64 `json:"versionCode,omitempty"` // VersionName: The version name of this APK. VersionName string `json:"versionName,omitempty"` // ForceSendFields is a list of field names (e.g. "ApplicationLabel") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "ApplicationLabel") to // include in API requests with the JSON null value. By default, fields // with empty values are omitted from API requests. However, any field // with an empty value appearing in NullFields will be sent to the // server as null. It is an error if a field in this list has a // non-empty value. This may be used to include null fields in Patch // requests. NullFields []string `json:"-"` } func (s *ExternallyHostedApk) MarshalJSON() ([]byte, error) { type NoMethod ExternallyHostedApk raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // ExternallyHostedApkUsesPermission: A permission used by this APK. type ExternallyHostedApkUsesPermission struct { // MaxSdkVersion: Optionally, the maximum SDK version for which the // permission is required. MaxSdkVersion int64 `json:"maxSdkVersion,omitempty"` // Name: The name of the permission requested. Name string `json:"name,omitempty"` // ForceSendFields is a list of field names (e.g. "MaxSdkVersion") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "MaxSdkVersion") to include // in API requests with the JSON null value. By default, fields with // empty values are omitted from API requests. However, any field with // an empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *ExternallyHostedApkUsesPermission) MarshalJSON() ([]byte, error) { type NoMethod ExternallyHostedApkUsesPermission raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type Image struct { // Id: A unique id representing this image. Id string `json:"id,omitempty"` // Sha1: A sha1 hash of the image that was uploaded. Sha1 string `json:"sha1,omitempty"` // Url: A URL that will serve a preview of the image. Url string `json:"url,omitempty"` // ForceSendFields is a list of field names (e.g. "Id") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Id") to include in API // requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *Image) MarshalJSON() ([]byte, error) { type NoMethod Image raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type ImagesDeleteAllResponse struct { Deleted []*Image `json:"deleted,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Deleted") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Deleted") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *ImagesDeleteAllResponse) MarshalJSON() ([]byte, error) { type NoMethod ImagesDeleteAllResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type ImagesListResponse struct { Images []*Image `json:"images,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Images") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Images") to include in API // requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *ImagesListResponse) MarshalJSON() ([]byte, error) { type NoMethod ImagesListResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type ImagesUploadResponse struct { Image *Image `json:"image,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Image") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Image") to include in API // requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *ImagesUploadResponse) MarshalJSON() ([]byte, error) { type NoMethod ImagesUploadResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type InAppProduct struct { // DefaultLanguage: The default language of the localized data, as // defined by BCP 47. e.g. "en-US", "en-GB". DefaultLanguage string `json:"defaultLanguage,omitempty"` // DefaultPrice: Default price cannot be zero. In-app products can never // be free. Default price is always in the developer's Checkout merchant // currency. DefaultPrice *Price `json:"defaultPrice,omitempty"` // GracePeriod: Grace period of the subscription, specified in ISO 8601 // format. It will allow developers to give their subscribers a grace // period when the payment for the new recurrence period is declined. // Acceptable values = "P3D" (three days) and "P7D" (seven days) GracePeriod string `json:"gracePeriod,omitempty"` // Listings: List of localized title and description data. Listings map[string]InAppProductListing `json:"listings,omitempty"` // PackageName: The package name of the parent app. PackageName string `json:"packageName,omitempty"` // Prices: Prices per buyer region. None of these prices should be zero. // In-app products can never be free. Prices map[string]Price `json:"prices,omitempty"` // PurchaseType: Purchase type enum value. Unmodifiable after creation. PurchaseType string `json:"purchaseType,omitempty"` // Season: Definition of a season for a seasonal subscription. Can be // defined only for yearly subscriptions. Season *Season `json:"season,omitempty"` // Sku: The stock-keeping-unit (SKU) of the product, unique within an // app. Sku string `json:"sku,omitempty"` Status string `json:"status,omitempty"` // SubscriptionPeriod: Subscription period, specified in ISO 8601 // format. Acceptable values are "P1W" (one week), "P1M" (one month), // "P3M" (three months), "P6M" (six months), and "P1Y" (one year). SubscriptionPeriod string `json:"subscriptionPeriod,omitempty"` // TrialPeriod: Trial period, specified in ISO 8601 format. Acceptable // values are anything between "P7D" (seven days) and "P999D" (999 // days). Seasonal subscriptions cannot have a trial period. TrialPeriod string `json:"trialPeriod,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "DefaultLanguage") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "DefaultLanguage") to // include in API requests with the JSON null value. By default, fields // with empty values are omitted from API requests. However, any field // with an empty value appearing in NullFields will be sent to the // server as null. It is an error if a field in this list has a // non-empty value. This may be used to include null fields in Patch // requests. NullFields []string `json:"-"` } func (s *InAppProduct) MarshalJSON() ([]byte, error) { type NoMethod InAppProduct raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type InAppProductListing struct { Description string `json:"description,omitempty"` Title string `json:"title,omitempty"` // ForceSendFields is a list of field names (e.g. "Description") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Description") to include // in API requests with the JSON null value. By default, fields with // empty values are omitted from API requests. However, any field with // an empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *InAppProductListing) MarshalJSON() ([]byte, error) { type NoMethod InAppProductListing raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type InappproductsListResponse struct { Inappproduct []*InAppProduct `json:"inappproduct,omitempty"` // Kind: Identifies what kind of resource this is. Value: the fixed // string "androidpublisher#inappproductsListResponse". Kind string `json:"kind,omitempty"` PageInfo *PageInfo `json:"pageInfo,omitempty"` TokenPagination *TokenPagination `json:"tokenPagination,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Inappproduct") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Inappproduct") to include // in API requests with the JSON null value. By default, fields with // empty values are omitted from API requests. However, any field with // an empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *InappproductsListResponse) MarshalJSON() ([]byte, error) { type NoMethod InappproductsListResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type Listing struct { // FullDescription: Full description of the app; this may be up to 4000 // characters in length. FullDescription string `json:"fullDescription,omitempty"` // Language: Language localization code (for example, "de-AT" for // Austrian German). Language string `json:"language,omitempty"` // ShortDescription: Short description of the app (previously known as // promo text); this may be up to 80 characters in length. ShortDescription string `json:"shortDescription,omitempty"` // Title: App's localized title. Title string `json:"title,omitempty"` // Video: URL of a promotional YouTube video for the app. Video string `json:"video,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "FullDescription") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "FullDescription") to // include in API requests with the JSON null value. By default, fields // with empty values are omitted from API requests. However, any field // with an empty value appearing in NullFields will be sent to the // server as null. It is an error if a field in this list has a // non-empty value. This may be used to include null fields in Patch // requests. NullFields []string `json:"-"` } func (s *Listing) MarshalJSON() ([]byte, error) { type NoMethod Listing raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type ListingsListResponse struct { // Kind: Identifies what kind of resource this is. Value: the fixed // string "androidpublisher#listingsListResponse". Kind string `json:"kind,omitempty"` Listings []*Listing `json:"listings,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Kind") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Kind") to include in API // requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *ListingsListResponse) MarshalJSON() ([]byte, error) { type NoMethod ListingsListResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type MonthDay struct { // Day: Day of a month, value in [1, 31] range. Valid range depends on // the specified month. Day int64 `json:"day,omitempty"` // Month: Month of a year. e.g. 1 = JAN, 2 = FEB etc. Month int64 `json:"month,omitempty"` // ForceSendFields is a list of field names (e.g. "Day") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Day") to include in API // requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *MonthDay) MarshalJSON() ([]byte, error) { type NoMethod MonthDay raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type PageInfo struct { ResultPerPage int64 `json:"resultPerPage,omitempty"` StartIndex int64 `json:"startIndex,omitempty"` TotalResults int64 `json:"totalResults,omitempty"` // ForceSendFields is a list of field names (e.g. "ResultPerPage") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "ResultPerPage") to include // in API requests with the JSON null value. By default, fields with // empty values are omitted from API requests. However, any field with // an empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *PageInfo) MarshalJSON() ([]byte, error) { type NoMethod PageInfo raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type Price struct { // Currency: 3 letter Currency code, as defined by ISO 4217. Currency string `json:"currency,omitempty"` // PriceMicros: The price in millionths of the currency base unit // represented as a string. PriceMicros string `json:"priceMicros,omitempty"` // ForceSendFields is a list of field names (e.g. "Currency") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Currency") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *Price) MarshalJSON() ([]byte, error) { type NoMethod Price raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // ProductPurchase: A ProductPurchase resource indicates the status of a // user's inapp product purchase. type ProductPurchase struct { // ConsumptionState: The consumption state of the inapp product. // Possible values are: // - Yet to be consumed // - Consumed ConsumptionState int64 `json:"consumptionState,omitempty"` // DeveloperPayload: A developer-specified string that contains // supplemental information about an order. DeveloperPayload string `json:"developerPayload,omitempty"` // Kind: This kind represents an inappPurchase object in the // androidpublisher service. Kind string `json:"kind,omitempty"` // OrderId: The order id associated with the purchase of the inapp // product. OrderId string `json:"orderId,omitempty"` // PurchaseState: The purchase state of the order. Possible values are: // // - Purchased // - Canceled PurchaseState int64 `json:"purchaseState,omitempty"` // PurchaseTimeMillis: The time the product was purchased, in // milliseconds since the epoch (Jan 1, 1970). PurchaseTimeMillis int64 `json:"purchaseTimeMillis,omitempty,string"` // PurchaseType: The type of purchase of the inapp product. This field // is only set if this purchase was not made using the standard in-app // billing flow. Possible values are: // - Test (i.e. purchased from a license testing account) // - Promo (i.e. purchased using a promo code) // - Rewarded (i.e. from watching a video ad instead of paying) PurchaseType *int64 `json:"purchaseType,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "ConsumptionState") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "ConsumptionState") to // include in API requests with the JSON null value. By default, fields // with empty values are omitted from API requests. However, any field // with an empty value appearing in NullFields will be sent to the // server as null. It is an error if a field in this list has a // non-empty value. This may be used to include null fields in Patch // requests. NullFields []string `json:"-"` } func (s *ProductPurchase) MarshalJSON() ([]byte, error) { type NoMethod ProductPurchase raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type Prorate struct { // DefaultPrice: Default price cannot be zero and must be less than the // full subscription price. Default price is always in the developer's // Checkout merchant currency. Targeted countries have their prices set // automatically based on the default_price. DefaultPrice *Price `json:"defaultPrice,omitempty"` // Start: Defines the first day on which the price takes effect. Start *MonthDay `json:"start,omitempty"` // ForceSendFields is a list of field names (e.g. "DefaultPrice") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "DefaultPrice") to include // in API requests with the JSON null value. By default, fields with // empty values are omitted from API requests. However, any field with // an empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *Prorate) MarshalJSON() ([]byte, error) { type NoMethod Prorate raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type Review struct { // AuthorName: The name of the user who wrote the review. AuthorName string `json:"authorName,omitempty"` // Comments: A repeated field containing comments for the review. Comments []*Comment `json:"comments,omitempty"` // ReviewId: Unique identifier for this review. ReviewId string `json:"reviewId,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "AuthorName") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "AuthorName") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *Review) MarshalJSON() ([]byte, error) { type NoMethod Review raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type ReviewReplyResult struct { // LastEdited: The time at which the reply took effect. LastEdited *Timestamp `json:"lastEdited,omitempty"` // ReplyText: The reply text that was applied. ReplyText string `json:"replyText,omitempty"` // ForceSendFields is a list of field names (e.g. "LastEdited") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "LastEdited") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *ReviewReplyResult) MarshalJSON() ([]byte, error) { type NoMethod ReviewReplyResult raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type ReviewsListResponse struct { PageInfo *PageInfo `json:"pageInfo,omitempty"` Reviews []*Review `json:"reviews,omitempty"` TokenPagination *TokenPagination `json:"tokenPagination,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "PageInfo") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "PageInfo") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *ReviewsListResponse) MarshalJSON() ([]byte, error) { type NoMethod ReviewsListResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type ReviewsReplyRequest struct { // ReplyText: The text to set as the reply. Replies of more than // approximately 350 characters will be rejected. HTML tags will be // stripped. ReplyText string `json:"replyText,omitempty"` // ForceSendFields is a list of field names (e.g. "ReplyText") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "ReplyText") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *ReviewsReplyRequest) MarshalJSON() ([]byte, error) { type NoMethod ReviewsReplyRequest raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type ReviewsReplyResponse struct { Result *ReviewReplyResult `json:"result,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Result") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Result") to include in API // requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *ReviewsReplyResponse) MarshalJSON() ([]byte, error) { type NoMethod ReviewsReplyResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type Season struct { // End: Inclusive end date of the recurrence period. End *MonthDay `json:"end,omitempty"` // Prorations: Optionally present list of prorations for the season. // Each proration is a one-off discounted entry into a subscription. // Each proration contains the first date on which the discount is // available and the new pricing information. Prorations []*Prorate `json:"prorations,omitempty"` // Start: Inclusive start date of the recurrence period. Start *MonthDay `json:"start,omitempty"` // ForceSendFields is a list of field names (e.g. "End") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "End") to include in API // requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *Season) MarshalJSON() ([]byte, error) { type NoMethod Season raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // SubscriptionCancelSurveyResult: Information provided by the user when // they complete the subscription cancellation flow (cancellation reason // survey). type SubscriptionCancelSurveyResult struct { // CancelSurveyReason: The cancellation reason the user chose in the // survey. Possible values are: // - Other // - I don't use this service enough // - Technical issues // - Cost-related reasons // - I found a better app CancelSurveyReason int64 `json:"cancelSurveyReason,omitempty"` // UserInputCancelReason: The customized input cancel reason from the // user. Only present when cancelReason is 0. UserInputCancelReason string `json:"userInputCancelReason,omitempty"` // ForceSendFields is a list of field names (e.g. "CancelSurveyReason") // to unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "CancelSurveyReason") to // include in API requests with the JSON null value. By default, fields // with empty values are omitted from API requests. However, any field // with an empty value appearing in NullFields will be sent to the // server as null. It is an error if a field in this list has a // non-empty value. This may be used to include null fields in Patch // requests. NullFields []string `json:"-"` } func (s *SubscriptionCancelSurveyResult) MarshalJSON() ([]byte, error) { type NoMethod SubscriptionCancelSurveyResult raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // SubscriptionDeferralInfo: A SubscriptionDeferralInfo contains the // data needed to defer a subscription purchase to a future expiry time. type SubscriptionDeferralInfo struct { // DesiredExpiryTimeMillis: The desired next expiry time to assign to // the subscription, in milliseconds since the Epoch. The given time // must be later/greater than the current expiry time for the // subscription. DesiredExpiryTimeMillis int64 `json:"desiredExpiryTimeMillis,omitempty,string"` // ExpectedExpiryTimeMillis: The expected expiry time for the // subscription. If the current expiry time for the subscription is not // the value specified here, the deferral will not occur. ExpectedExpiryTimeMillis int64 `json:"expectedExpiryTimeMillis,omitempty,string"` // ForceSendFields is a list of field names (e.g. // "DesiredExpiryTimeMillis") to unconditionally include in API // requests. By default, fields with empty values are omitted from API // requests. However, any non-pointer, non-interface field appearing in // ForceSendFields will be sent to the server regardless of whether the // field is empty or not. This may be used to include empty fields in // Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "DesiredExpiryTimeMillis") // to include in API requests with the JSON null value. By default, // fields with empty values are omitted from API requests. However, any // field with an empty value appearing in NullFields will be sent to the // server as null. It is an error if a field in this list has a // non-empty value. This may be used to include null fields in Patch // requests. NullFields []string `json:"-"` } func (s *SubscriptionDeferralInfo) MarshalJSON() ([]byte, error) { type NoMethod SubscriptionDeferralInfo raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // SubscriptionPriceChange: Contains the price change information for a // subscription that can be used to control the user journey for the // price change in the app. This can be in the form of seeking // confirmation from the user or tailoring the experience for a // successful conversion. type SubscriptionPriceChange struct { // NewPrice: The new price the subscription will renew with if the price // change is accepted by the user. NewPrice *Price `json:"newPrice,omitempty"` // State: The current state of the price change. Possible values are: // // - Outstanding: State for a pending price change waiting for the user // to agree. In this state, you can optionally seek confirmation from // the user using the In-App API. // - Accepted: State for an accepted price change that the subscription // will renew with unless it's canceled. The price change takes effect // on a future date when the subscription renews. Note that the change // might not occur when the subscription is renewed next. State int64 `json:"state,omitempty"` // ForceSendFields is a list of field names (e.g. "NewPrice") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "NewPrice") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *SubscriptionPriceChange) MarshalJSON() ([]byte, error) { type NoMethod SubscriptionPriceChange raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // SubscriptionPurchase: A SubscriptionPurchase resource indicates the // status of a user's subscription purchase. type SubscriptionPurchase struct { // AutoRenewing: Whether the subscription will automatically be renewed // when it reaches its current expiry time. AutoRenewing bool `json:"autoRenewing,omitempty"` // CancelReason: The reason why a subscription was canceled or is not // auto-renewing. Possible values are: // - User canceled the subscription // - Subscription was canceled by the system, for example because of a // billing problem // - Subscription was replaced with a new subscription // - Subscription was canceled by the developer CancelReason *int64 `json:"cancelReason,omitempty"` // CancelSurveyResult: Information provided by the user when they // complete the subscription cancellation flow (cancellation reason // survey). CancelSurveyResult *SubscriptionCancelSurveyResult `json:"cancelSurveyResult,omitempty"` // CountryCode: ISO 3166-1 alpha-2 billing country/region code of the // user at the time the subscription was granted. CountryCode string `json:"countryCode,omitempty"` // DeveloperPayload: A developer-specified string that contains // supplemental information about an order. DeveloperPayload string `json:"developerPayload,omitempty"` // EmailAddress: The email address of the user when the subscription was // purchased. Only present for purchases made with 'Subscribe with // Google'. EmailAddress string `json:"emailAddress,omitempty"` // ExpiryTimeMillis: Time at which the subscription will expire, in // milliseconds since the Epoch. ExpiryTimeMillis int64 `json:"expiryTimeMillis,omitempty,string"` // FamilyName: The family name of the user when the subscription was // purchased. Only present for purchases made with 'Subscribe with // Google'. FamilyName string `json:"familyName,omitempty"` // GivenName: The given name of the user when the subscription was // purchased. Only present for purchases made with 'Subscribe with // Google'. GivenName string `json:"givenName,omitempty"` // Kind: This kind represents a subscriptionPurchase object in the // androidpublisher service. Kind string `json:"kind,omitempty"` // LinkedPurchaseToken: The purchase token of the originating purchase // if this subscription is one of the following: // - Re-signup of a canceled but non-lapsed subscription // - Upgrade/downgrade from a previous subscription For example, // suppose a user originally signs up and you receive purchase token X, // then the user cancels and goes through the resignup flow (before // their subscription lapses) and you receive purchase token Y, and // finally the user upgrades their subscription and you receive purchase // token Z. If you call this API with purchase token Z, this field will // be set to Y. If you call this API with purchase token Y, this field // will be set to X. If you call this API with purchase token X, this // field will not be set. LinkedPurchaseToken string `json:"linkedPurchaseToken,omitempty"` // OrderId: The order id of the latest recurring order associated with // the purchase of the subscription. OrderId string `json:"orderId,omitempty"` // PaymentState: The payment state of the subscription. Possible values // are: // - Payment pending // - Payment received // - Free trial // - Pending deferred upgrade/downgrade PaymentState *int64 `json:"paymentState,omitempty"` // PriceAmountMicros: Price of the subscription, not including tax. // Price is expressed in micro-units, where 1,000,000 micro-units // represents one unit of the currency. For example, if the subscription // price is €1.99, price_amount_micros is 1990000. PriceAmountMicros int64 `json:"priceAmountMicros,omitempty,string"` // PriceChange: The latest price change information available. This is // present only when there is an upcoming price change for the // subscription yet to be applied. // // Once the subscription renews with the new price or the subscription // is canceled, no price change information will be returned. PriceChange *SubscriptionPriceChange `json:"priceChange,omitempty"` // PriceCurrencyCode: ISO 4217 currency code for the subscription price. // For example, if the price is specified in British pounds sterling, // price_currency_code is "GBP". PriceCurrencyCode string `json:"priceCurrencyCode,omitempty"` // ProfileId: The profile id of the user when the subscription was // purchased. Only present for purchases made with 'Subscribe with // Google'. ProfileId string `json:"profileId,omitempty"` // ProfileName: The profile name of the user when the subscription was // purchased. Only present for purchases made with 'Subscribe with // Google'. ProfileName string `json:"profileName,omitempty"` // PurchaseType: The type of purchase of the subscription. This field is // only set if this purchase was not made using the standard in-app // billing flow. Possible values are: // - Test (i.e. purchased from a license testing account) PurchaseType *int64 `json:"purchaseType,omitempty"` // StartTimeMillis: Time at which the subscription was granted, in // milliseconds since the Epoch. StartTimeMillis int64 `json:"startTimeMillis,omitempty,string"` // UserCancellationTimeMillis: The time at which the subscription was // canceled by the user, in milliseconds since the epoch. Only present // if cancelReason is 0. UserCancellationTimeMillis int64 `json:"userCancellationTimeMillis,omitempty,string"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "AutoRenewing") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "AutoRenewing") to include // in API requests with the JSON null value. By default, fields with // empty values are omitted from API requests. However, any field with // an empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *SubscriptionPurchase) MarshalJSON() ([]byte, error) { type NoMethod SubscriptionPurchase raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type SubscriptionPurchasesDeferRequest struct { // DeferralInfo: The information about the new desired expiry time for // the subscription. DeferralInfo *SubscriptionDeferralInfo `json:"deferralInfo,omitempty"` // ForceSendFields is a list of field names (e.g. "DeferralInfo") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "DeferralInfo") to include // in API requests with the JSON null value. By default, fields with // empty values are omitted from API requests. However, any field with // an empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *SubscriptionPurchasesDeferRequest) MarshalJSON() ([]byte, error) { type NoMethod SubscriptionPurchasesDeferRequest raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type SubscriptionPurchasesDeferResponse struct { // NewExpiryTimeMillis: The new expiry time for the subscription in // milliseconds since the Epoch. NewExpiryTimeMillis int64 `json:"newExpiryTimeMillis,omitempty,string"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "NewExpiryTimeMillis") // to unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "NewExpiryTimeMillis") to // include in API requests with the JSON null value. By default, fields // with empty values are omitted from API requests. However, any field // with an empty value appearing in NullFields will be sent to the // server as null. It is an error if a field in this list has a // non-empty value. This may be used to include null fields in Patch // requests. NullFields []string `json:"-"` } func (s *SubscriptionPurchasesDeferResponse) MarshalJSON() ([]byte, error) { type NoMethod SubscriptionPurchasesDeferResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type Testers struct { GoogleGroups []string `json:"googleGroups,omitempty"` GooglePlusCommunities []string `json:"googlePlusCommunities,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "GoogleGroups") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "GoogleGroups") to include // in API requests with the JSON null value. By default, fields with // empty values are omitted from API requests. However, any field with // an empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *Testers) MarshalJSON() ([]byte, error) { type NoMethod Testers raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type Timestamp struct { Nanos int64 `json:"nanos,omitempty"` Seconds int64 `json:"seconds,omitempty,string"` // ForceSendFields is a list of field names (e.g. "Nanos") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Nanos") to include in API // requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *Timestamp) MarshalJSON() ([]byte, error) { type NoMethod Timestamp raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type TokenPagination struct { NextPageToken string `json:"nextPageToken,omitempty"` PreviousPageToken string `json:"previousPageToken,omitempty"` // ForceSendFields is a list of field names (e.g. "NextPageToken") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "NextPageToken") to include // in API requests with the JSON null value. By default, fields with // empty values are omitted from API requests. However, any field with // an empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *TokenPagination) MarshalJSON() ([]byte, error) { type NoMethod TokenPagination raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type Track struct { // Track: Identifier for this track. Track string `json:"track,omitempty"` UserFraction float64 `json:"userFraction,omitempty"` // VersionCodes: Version codes to make active on this track. Note that // this list should contain all versions you wish to be active, // including those you wish to retain from previous releases. VersionCodes []int64 `json:"versionCodes,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Track") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Track") to include in API // requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *Track) MarshalJSON() ([]byte, error) { type NoMethod Track raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } func (s *Track) UnmarshalJSON(data []byte) error { type NoMethod Track var s1 struct { UserFraction gensupport.JSONFloat64 `json:"userFraction"` *NoMethod } s1.NoMethod = (*NoMethod)(s) if err := json.Unmarshal(data, &s1); err != nil { return err } s.UserFraction = float64(s1.UserFraction) return nil } type TracksListResponse struct { // Kind: Identifies what kind of resource this is. Value: the fixed // string "androidpublisher#tracksListResponse". Kind string `json:"kind,omitempty"` Tracks []*Track `json:"tracks,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Kind") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Kind") to include in API // requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *TracksListResponse) MarshalJSON() ([]byte, error) { type NoMethod TracksListResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type UserComment struct { // AndroidOsVersion: Integer Android SDK version of the user's device at // the time the review was written, e.g. 23 is Marshmallow. May be // absent. AndroidOsVersion int64 `json:"androidOsVersion,omitempty"` // AppVersionCode: Integer version code of the app as installed at the // time the review was written. May be absent. AppVersionCode int64 `json:"appVersionCode,omitempty"` // AppVersionName: String version name of the app as installed at the // time the review was written. May be absent. AppVersionName string `json:"appVersionName,omitempty"` // Device: Codename for the reviewer's device, e.g. klte, flounder. May // be absent. Device string `json:"device,omitempty"` // DeviceMetadata: Some information about the characteristics of the // user's device DeviceMetadata *DeviceMetadata `json:"deviceMetadata,omitempty"` // LastModified: The last time at which this comment was updated. LastModified *Timestamp `json:"lastModified,omitempty"` // OriginalText: Untranslated text of the review, in the case where the // review has been translated. If the review has not been translated // this is left blank. OriginalText string `json:"originalText,omitempty"` // ReviewerLanguage: Language code for the reviewer. This is taken from // the device settings so is not guaranteed to match the language the // review is written in. May be absent. ReviewerLanguage string `json:"reviewerLanguage,omitempty"` // StarRating: The star rating associated with the review, from 1 to 5. StarRating int64 `json:"starRating,omitempty"` // Text: The content of the comment, i.e. review body. In some cases // users have been able to write a review with separate title and body; // in those cases the title and body are concatenated and separated by a // tab character. Text string `json:"text,omitempty"` // ThumbsDownCount: Number of users who have given this review a thumbs // down ThumbsDownCount int64 `json:"thumbsDownCount,omitempty"` // ThumbsUpCount: Number of users who have given this review a thumbs up ThumbsUpCount int64 `json:"thumbsUpCount,omitempty"` // ForceSendFields is a list of field names (e.g. "AndroidOsVersion") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "AndroidOsVersion") to // include in API requests with the JSON null value. By default, fields // with empty values are omitted from API requests. However, any field // with an empty value appearing in NullFields will be sent to the // server as null. It is an error if a field in this list has a // non-empty value. This may be used to include null fields in Patch // requests. NullFields []string `json:"-"` } func (s *UserComment) MarshalJSON() ([]byte, error) { type NoMethod UserComment raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // VoidedPurchase: A VoidedPurchase resource indicates a purchase that // was either canceled/refunded/charged-back. type VoidedPurchase struct { // Kind: This kind represents a voided purchase object in the // androidpublisher service. Kind string `json:"kind,omitempty"` // PurchaseTimeMillis: The time at which the purchase was made, in // milliseconds since the epoch (Jan 1, 1970). PurchaseTimeMillis int64 `json:"purchaseTimeMillis,omitempty,string"` // PurchaseToken: The token that was generated when a purchase was made. // This uniquely identifies a purchase. PurchaseToken string `json:"purchaseToken,omitempty"` // VoidedTimeMillis: The time at which the purchase was // canceled/refunded/charged-back, in milliseconds since the epoch (Jan // 1, 1970). VoidedTimeMillis int64 `json:"voidedTimeMillis,omitempty,string"` // ForceSendFields is a list of field names (e.g. "Kind") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Kind") to include in API // requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *VoidedPurchase) MarshalJSON() ([]byte, error) { type NoMethod VoidedPurchase raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type VoidedPurchasesListResponse struct { PageInfo *PageInfo `json:"pageInfo,omitempty"` TokenPagination *TokenPagination `json:"tokenPagination,omitempty"` VoidedPurchases []*VoidedPurchase `json:"voidedPurchases,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "PageInfo") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "PageInfo") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` } func (s *VoidedPurchasesListResponse) MarshalJSON() ([]byte, error) { type NoMethod VoidedPurchasesListResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // method id "androidpublisher.edits.commit": type EditsCommitCall struct { s *Service packageNameid string editId string urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Commit: Commits/applies the changes made in this edit back to the // app. func (r *EditsService) Commit(packageNameid string, editId string) *EditsCommitCall { c := &EditsCommitCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsCommitCall) Fields(s ...googleapi.Field) *EditsCommitCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *EditsCommitCall) Context(ctx context.Context) *EditsCommitCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsCommitCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsCommitCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}:commit") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.commit" call. // Exactly one of *AppEdit or error will be non-nil. Any non-2xx status // code is an error. Response headers are in either // *AppEdit.ServerResponse.Header or (if a response was returned at all) // in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to // check whether the returned error was because http.StatusNotModified // was returned. func (c *EditsCommitCall) Do(opts ...googleapi.CallOption) (*AppEdit, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &AppEdit{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Commits/applies the changes made in this edit back to the app.", // "httpMethod": "POST", // "id": "androidpublisher.edits.commit", // "parameterOrder": [ // "packageName", // "editId" // ], // "parameters": { // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}:commit", // "response": { // "$ref": "AppEdit" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.edits.delete": type EditsDeleteCall struct { s *Service packageNameid string editId string urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Delete: Deletes an edit for an app. Creating a new edit will // automatically delete any of your previous edits so this method need // only be called if you want to preemptively abandon an edit. func (r *EditsService) Delete(packageNameid string, editId string) *EditsDeleteCall { c := &EditsDeleteCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsDeleteCall) Fields(s ...googleapi.Field) *EditsDeleteCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *EditsDeleteCall) Context(ctx context.Context) *EditsDeleteCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsDeleteCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsDeleteCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("DELETE", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.delete" call. func (c *EditsDeleteCall) Do(opts ...googleapi.CallOption) error { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if err != nil { return err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return err } return nil // { // "description": "Deletes an edit for an app. Creating a new edit will automatically delete any of your previous edits so this method need only be called if you want to preemptively abandon an edit.", // "httpMethod": "DELETE", // "id": "androidpublisher.edits.delete", // "parameterOrder": [ // "packageName", // "editId" // ], // "parameters": { // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}", // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.edits.get": type EditsGetCall struct { s *Service packageNameid string editId string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // Get: Returns information about the edit specified. Calls will fail if // the edit is no long active (e.g. has been deleted, superseded or // expired). func (r *EditsService) Get(packageNameid string, editId string) *EditsGetCall { c := &EditsGetCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsGetCall) Fields(s ...googleapi.Field) *EditsGetCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // IfNoneMatch sets the optional parameter which makes the operation // fail if the object's ETag matches the given value. This is useful for // getting updates only after the object has changed since the last // request. Use googleapi.IsNotModified to check whether the response // error from Do is the result of In-None-Match. func (c *EditsGetCall) IfNoneMatch(entityTag string) *EditsGetCall { c.ifNoneMatch_ = entityTag return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *EditsGetCall) Context(ctx context.Context) *EditsGetCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsGetCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsGetCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) if c.ifNoneMatch_ != "" { reqHeaders.Set("If-None-Match", c.ifNoneMatch_) } var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("GET", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.get" call. // Exactly one of *AppEdit or error will be non-nil. Any non-2xx status // code is an error. Response headers are in either // *AppEdit.ServerResponse.Header or (if a response was returned at all) // in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to // check whether the returned error was because http.StatusNotModified // was returned. func (c *EditsGetCall) Do(opts ...googleapi.CallOption) (*AppEdit, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &AppEdit{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Returns information about the edit specified. Calls will fail if the edit is no long active (e.g. has been deleted, superseded or expired).", // "httpMethod": "GET", // "id": "androidpublisher.edits.get", // "parameterOrder": [ // "packageName", // "editId" // ], // "parameters": { // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}", // "response": { // "$ref": "AppEdit" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.edits.insert": type EditsInsertCall struct { s *Service packageNameid string appedit *AppEdit urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Insert: Creates a new edit for an app, populated with the app's // current state. func (r *EditsService) Insert(packageNameid string, appedit *AppEdit) *EditsInsertCall { c := &EditsInsertCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.appedit = appedit return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsInsertCall) Fields(s ...googleapi.Field) *EditsInsertCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *EditsInsertCall) Context(ctx context.Context) *EditsInsertCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsInsertCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsInsertCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil body, err := googleapi.WithoutDataWrapper.JSONReader(c.appedit) if err != nil { return nil, err } reqHeaders.Set("Content-Type", "application/json") c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.insert" call. // Exactly one of *AppEdit or error will be non-nil. Any non-2xx status // code is an error. Response headers are in either // *AppEdit.ServerResponse.Header or (if a response was returned at all) // in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to // check whether the returned error was because http.StatusNotModified // was returned. func (c *EditsInsertCall) Do(opts ...googleapi.CallOption) (*AppEdit, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &AppEdit{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Creates a new edit for an app, populated with the app's current state.", // "httpMethod": "POST", // "id": "androidpublisher.edits.insert", // "parameterOrder": [ // "packageName" // ], // "parameters": { // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits", // "request": { // "$ref": "AppEdit" // }, // "response": { // "$ref": "AppEdit" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.edits.validate": type EditsValidateCall struct { s *Service packageNameid string editId string urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Validate: Checks that the edit can be successfully committed. The // edit's changes are not applied to the live app. func (r *EditsService) Validate(packageNameid string, editId string) *EditsValidateCall { c := &EditsValidateCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsValidateCall) Fields(s ...googleapi.Field) *EditsValidateCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *EditsValidateCall) Context(ctx context.Context) *EditsValidateCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsValidateCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsValidateCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}:validate") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.validate" call. // Exactly one of *AppEdit or error will be non-nil. Any non-2xx status // code is an error. Response headers are in either // *AppEdit.ServerResponse.Header or (if a response was returned at all) // in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to // check whether the returned error was because http.StatusNotModified // was returned. func (c *EditsValidateCall) Do(opts ...googleapi.CallOption) (*AppEdit, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &AppEdit{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Checks that the edit can be successfully committed. The edit's changes are not applied to the live app.", // "httpMethod": "POST", // "id": "androidpublisher.edits.validate", // "parameterOrder": [ // "packageName", // "editId" // ], // "parameters": { // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}:validate", // "response": { // "$ref": "AppEdit" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.edits.apklistings.delete": type EditsApklistingsDeleteCall struct { s *Service packageNameid string editId string apkVersionCode int64 language string urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Delete: Deletes the APK-specific localized listing for a specified // APK and language code. func (r *EditsApklistingsService) Delete(packageNameid string, editId string, apkVersionCode int64, language string) *EditsApklistingsDeleteCall { c := &EditsApklistingsDeleteCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId c.apkVersionCode = apkVersionCode c.language = language return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsApklistingsDeleteCall) Fields(s ...googleapi.Field) *EditsApklistingsDeleteCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *EditsApklistingsDeleteCall) Context(ctx context.Context) *EditsApklistingsDeleteCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsApklistingsDeleteCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsApklistingsDeleteCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}/apks/{apkVersionCode}/listings/{language}") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("DELETE", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, "apkVersionCode": strconv.FormatInt(c.apkVersionCode, 10), "language": c.language, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.apklistings.delete" call. func (c *EditsApklistingsDeleteCall) Do(opts ...googleapi.CallOption) error { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if err != nil { return err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return err } return nil // { // "description": "Deletes the APK-specific localized listing for a specified APK and language code.", // "httpMethod": "DELETE", // "id": "androidpublisher.edits.apklistings.delete", // "parameterOrder": [ // "packageName", // "editId", // "apkVersionCode", // "language" // ], // "parameters": { // "apkVersionCode": { // "description": "The APK version code whose APK-specific listings should be read or modified.", // "format": "int32", // "location": "path", // "required": true, // "type": "integer" // }, // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "language": { // "description": "The language code (a BCP-47 language tag) of the APK-specific localized listing to read or modify. For example, to select Austrian German, pass \"de-AT\".", // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}/apks/{apkVersionCode}/listings/{language}", // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.edits.apklistings.deleteall": type EditsApklistingsDeleteallCall struct { s *Service packageNameid string editId string apkVersionCode int64 urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Deleteall: Deletes all the APK-specific localized listings for a // specified APK. func (r *EditsApklistingsService) Deleteall(packageNameid string, editId string, apkVersionCode int64) *EditsApklistingsDeleteallCall { c := &EditsApklistingsDeleteallCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId c.apkVersionCode = apkVersionCode return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsApklistingsDeleteallCall) Fields(s ...googleapi.Field) *EditsApklistingsDeleteallCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *EditsApklistingsDeleteallCall) Context(ctx context.Context) *EditsApklistingsDeleteallCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsApklistingsDeleteallCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsApklistingsDeleteallCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}/apks/{apkVersionCode}/listings") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("DELETE", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, "apkVersionCode": strconv.FormatInt(c.apkVersionCode, 10), }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.apklistings.deleteall" call. func (c *EditsApklistingsDeleteallCall) Do(opts ...googleapi.CallOption) error { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if err != nil { return err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return err } return nil // { // "description": "Deletes all the APK-specific localized listings for a specified APK.", // "httpMethod": "DELETE", // "id": "androidpublisher.edits.apklistings.deleteall", // "parameterOrder": [ // "packageName", // "editId", // "apkVersionCode" // ], // "parameters": { // "apkVersionCode": { // "description": "The APK version code whose APK-specific listings should be read or modified.", // "format": "int32", // "location": "path", // "required": true, // "type": "integer" // }, // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}/apks/{apkVersionCode}/listings", // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.edits.apklistings.get": type EditsApklistingsGetCall struct { s *Service packageNameid string editId string apkVersionCode int64 language string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // Get: Fetches the APK-specific localized listing for a specified APK // and language code. func (r *EditsApklistingsService) Get(packageNameid string, editId string, apkVersionCode int64, language string) *EditsApklistingsGetCall { c := &EditsApklistingsGetCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId c.apkVersionCode = apkVersionCode c.language = language return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsApklistingsGetCall) Fields(s ...googleapi.Field) *EditsApklistingsGetCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // IfNoneMatch sets the optional parameter which makes the operation // fail if the object's ETag matches the given value. This is useful for // getting updates only after the object has changed since the last // request. Use googleapi.IsNotModified to check whether the response // error from Do is the result of In-None-Match. func (c *EditsApklistingsGetCall) IfNoneMatch(entityTag string) *EditsApklistingsGetCall { c.ifNoneMatch_ = entityTag return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *EditsApklistingsGetCall) Context(ctx context.Context) *EditsApklistingsGetCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsApklistingsGetCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsApklistingsGetCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) if c.ifNoneMatch_ != "" { reqHeaders.Set("If-None-Match", c.ifNoneMatch_) } var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}/apks/{apkVersionCode}/listings/{language}") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("GET", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, "apkVersionCode": strconv.FormatInt(c.apkVersionCode, 10), "language": c.language, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.apklistings.get" call. // Exactly one of *ApkListing or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *ApkListing.ServerResponse.Header or (if a response was returned at // all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified // to check whether the returned error was because // http.StatusNotModified was returned. func (c *EditsApklistingsGetCall) Do(opts ...googleapi.CallOption) (*ApkListing, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &ApkListing{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Fetches the APK-specific localized listing for a specified APK and language code.", // "httpMethod": "GET", // "id": "androidpublisher.edits.apklistings.get", // "parameterOrder": [ // "packageName", // "editId", // "apkVersionCode", // "language" // ], // "parameters": { // "apkVersionCode": { // "description": "The APK version code whose APK-specific listings should be read or modified.", // "format": "int32", // "location": "path", // "required": true, // "type": "integer" // }, // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "language": { // "description": "The language code (a BCP-47 language tag) of the APK-specific localized listing to read or modify. For example, to select Austrian German, pass \"de-AT\".", // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}/apks/{apkVersionCode}/listings/{language}", // "response": { // "$ref": "ApkListing" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.edits.apklistings.list": type EditsApklistingsListCall struct { s *Service packageNameid string editId string apkVersionCode int64 urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // List: Lists all the APK-specific localized listings for a specified // APK. func (r *EditsApklistingsService) List(packageNameid string, editId string, apkVersionCode int64) *EditsApklistingsListCall { c := &EditsApklistingsListCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId c.apkVersionCode = apkVersionCode return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsApklistingsListCall) Fields(s ...googleapi.Field) *EditsApklistingsListCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // IfNoneMatch sets the optional parameter which makes the operation // fail if the object's ETag matches the given value. This is useful for // getting updates only after the object has changed since the last // request. Use googleapi.IsNotModified to check whether the response // error from Do is the result of In-None-Match. func (c *EditsApklistingsListCall) IfNoneMatch(entityTag string) *EditsApklistingsListCall { c.ifNoneMatch_ = entityTag return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *EditsApklistingsListCall) Context(ctx context.Context) *EditsApklistingsListCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsApklistingsListCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsApklistingsListCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) if c.ifNoneMatch_ != "" { reqHeaders.Set("If-None-Match", c.ifNoneMatch_) } var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}/apks/{apkVersionCode}/listings") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("GET", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, "apkVersionCode": strconv.FormatInt(c.apkVersionCode, 10), }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.apklistings.list" call. // Exactly one of *ApkListingsListResponse or error will be non-nil. Any // non-2xx status code is an error. Response headers are in either // *ApkListingsListResponse.ServerResponse.Header or (if a response was // returned at all) in error.(*googleapi.Error).Header. Use // googleapi.IsNotModified to check whether the returned error was // because http.StatusNotModified was returned. func (c *EditsApklistingsListCall) Do(opts ...googleapi.CallOption) (*ApkListingsListResponse, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &ApkListingsListResponse{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Lists all the APK-specific localized listings for a specified APK.", // "httpMethod": "GET", // "id": "androidpublisher.edits.apklistings.list", // "parameterOrder": [ // "packageName", // "editId", // "apkVersionCode" // ], // "parameters": { // "apkVersionCode": { // "description": "The APK version code whose APK-specific listings should be read or modified.", // "format": "int32", // "location": "path", // "required": true, // "type": "integer" // }, // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}/apks/{apkVersionCode}/listings", // "response": { // "$ref": "ApkListingsListResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.edits.apklistings.patch": type EditsApklistingsPatchCall struct { s *Service packageNameid string editId string apkVersionCode int64 language string apklisting *ApkListing urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Patch: Updates or creates the APK-specific localized listing for a // specified APK and language code. This method supports patch // semantics. func (r *EditsApklistingsService) Patch(packageNameid string, editId string, apkVersionCode int64, language string, apklisting *ApkListing) *EditsApklistingsPatchCall { c := &EditsApklistingsPatchCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId c.apkVersionCode = apkVersionCode c.language = language c.apklisting = apklisting return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsApklistingsPatchCall) Fields(s ...googleapi.Field) *EditsApklistingsPatchCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *EditsApklistingsPatchCall) Context(ctx context.Context) *EditsApklistingsPatchCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsApklistingsPatchCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsApklistingsPatchCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil body, err := googleapi.WithoutDataWrapper.JSONReader(c.apklisting) if err != nil { return nil, err } reqHeaders.Set("Content-Type", "application/json") c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}/apks/{apkVersionCode}/listings/{language}") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("PATCH", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, "apkVersionCode": strconv.FormatInt(c.apkVersionCode, 10), "language": c.language, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.apklistings.patch" call. // Exactly one of *ApkListing or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *ApkListing.ServerResponse.Header or (if a response was returned at // all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified // to check whether the returned error was because // http.StatusNotModified was returned. func (c *EditsApklistingsPatchCall) Do(opts ...googleapi.CallOption) (*ApkListing, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &ApkListing{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Updates or creates the APK-specific localized listing for a specified APK and language code. This method supports patch semantics.", // "httpMethod": "PATCH", // "id": "androidpublisher.edits.apklistings.patch", // "parameterOrder": [ // "packageName", // "editId", // "apkVersionCode", // "language" // ], // "parameters": { // "apkVersionCode": { // "description": "The APK version code whose APK-specific listings should be read or modified.", // "format": "int32", // "location": "path", // "required": true, // "type": "integer" // }, // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "language": { // "description": "The language code (a BCP-47 language tag) of the APK-specific localized listing to read or modify. For example, to select Austrian German, pass \"de-AT\".", // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}/apks/{apkVersionCode}/listings/{language}", // "request": { // "$ref": "ApkListing" // }, // "response": { // "$ref": "ApkListing" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.edits.apklistings.update": type EditsApklistingsUpdateCall struct { s *Service packageNameid string editId string apkVersionCode int64 language string apklisting *ApkListing urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Update: Updates or creates the APK-specific localized listing for a // specified APK and language code. func (r *EditsApklistingsService) Update(packageNameid string, editId string, apkVersionCode int64, language string, apklisting *ApkListing) *EditsApklistingsUpdateCall { c := &EditsApklistingsUpdateCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId c.apkVersionCode = apkVersionCode c.language = language c.apklisting = apklisting return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsApklistingsUpdateCall) Fields(s ...googleapi.Field) *EditsApklistingsUpdateCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *EditsApklistingsUpdateCall) Context(ctx context.Context) *EditsApklistingsUpdateCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsApklistingsUpdateCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsApklistingsUpdateCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil body, err := googleapi.WithoutDataWrapper.JSONReader(c.apklisting) if err != nil { return nil, err } reqHeaders.Set("Content-Type", "application/json") c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}/apks/{apkVersionCode}/listings/{language}") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("PUT", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, "apkVersionCode": strconv.FormatInt(c.apkVersionCode, 10), "language": c.language, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.apklistings.update" call. // Exactly one of *ApkListing or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *ApkListing.ServerResponse.Header or (if a response was returned at // all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified // to check whether the returned error was because // http.StatusNotModified was returned. func (c *EditsApklistingsUpdateCall) Do(opts ...googleapi.CallOption) (*ApkListing, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &ApkListing{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Updates or creates the APK-specific localized listing for a specified APK and language code.", // "httpMethod": "PUT", // "id": "androidpublisher.edits.apklistings.update", // "parameterOrder": [ // "packageName", // "editId", // "apkVersionCode", // "language" // ], // "parameters": { // "apkVersionCode": { // "description": "The APK version code whose APK-specific listings should be read or modified.", // "format": "int32", // "location": "path", // "required": true, // "type": "integer" // }, // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "language": { // "description": "The language code (a BCP-47 language tag) of the APK-specific localized listing to read or modify. For example, to select Austrian German, pass \"de-AT\".", // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}/apks/{apkVersionCode}/listings/{language}", // "request": { // "$ref": "ApkListing" // }, // "response": { // "$ref": "ApkListing" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.edits.apks.addexternallyhosted": type EditsApksAddexternallyhostedCall struct { s *Service packageNameid string editId string apksaddexternallyhostedrequest *ApksAddExternallyHostedRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Addexternallyhosted: Creates a new APK without uploading the APK // itself to Google Play, instead hosting the APK at a specified URL. // This function is only available to enterprises using Google Play for // Work whose application is configured to restrict distribution to the // enterprise domain. func (r *EditsApksService) Addexternallyhosted(packageNameid string, editId string, apksaddexternallyhostedrequest *ApksAddExternallyHostedRequest) *EditsApksAddexternallyhostedCall { c := &EditsApksAddexternallyhostedCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId c.apksaddexternallyhostedrequest = apksaddexternallyhostedrequest return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsApksAddexternallyhostedCall) Fields(s ...googleapi.Field) *EditsApksAddexternallyhostedCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *EditsApksAddexternallyhostedCall) Context(ctx context.Context) *EditsApksAddexternallyhostedCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsApksAddexternallyhostedCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsApksAddexternallyhostedCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil body, err := googleapi.WithoutDataWrapper.JSONReader(c.apksaddexternallyhostedrequest) if err != nil { return nil, err } reqHeaders.Set("Content-Type", "application/json") c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}/apks/externallyHosted") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.apks.addexternallyhosted" call. // Exactly one of *ApksAddExternallyHostedResponse or error will be // non-nil. Any non-2xx status code is an error. Response headers are in // either *ApksAddExternallyHostedResponse.ServerResponse.Header or (if // a response was returned at all) in error.(*googleapi.Error).Header. // Use googleapi.IsNotModified to check whether the returned error was // because http.StatusNotModified was returned. func (c *EditsApksAddexternallyhostedCall) Do(opts ...googleapi.CallOption) (*ApksAddExternallyHostedResponse, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &ApksAddExternallyHostedResponse{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Creates a new APK without uploading the APK itself to Google Play, instead hosting the APK at a specified URL. This function is only available to enterprises using Google Play for Work whose application is configured to restrict distribution to the enterprise domain.", // "httpMethod": "POST", // "id": "androidpublisher.edits.apks.addexternallyhosted", // "parameterOrder": [ // "packageName", // "editId" // ], // "parameters": { // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}/apks/externallyHosted", // "request": { // "$ref": "ApksAddExternallyHostedRequest" // }, // "response": { // "$ref": "ApksAddExternallyHostedResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.edits.apks.list": type EditsApksListCall struct { s *Service packageNameid string editId string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // List: func (r *EditsApksService) List(packageNameid string, editId string) *EditsApksListCall { c := &EditsApksListCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsApksListCall) Fields(s ...googleapi.Field) *EditsApksListCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // IfNoneMatch sets the optional parameter which makes the operation // fail if the object's ETag matches the given value. This is useful for // getting updates only after the object has changed since the last // request. Use googleapi.IsNotModified to check whether the response // error from Do is the result of In-None-Match. func (c *EditsApksListCall) IfNoneMatch(entityTag string) *EditsApksListCall { c.ifNoneMatch_ = entityTag return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *EditsApksListCall) Context(ctx context.Context) *EditsApksListCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsApksListCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsApksListCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) if c.ifNoneMatch_ != "" { reqHeaders.Set("If-None-Match", c.ifNoneMatch_) } var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}/apks") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("GET", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.apks.list" call. // Exactly one of *ApksListResponse or error will be non-nil. Any // non-2xx status code is an error. Response headers are in either // *ApksListResponse.ServerResponse.Header or (if a response was // returned at all) in error.(*googleapi.Error).Header. Use // googleapi.IsNotModified to check whether the returned error was // because http.StatusNotModified was returned. func (c *EditsApksListCall) Do(opts ...googleapi.CallOption) (*ApksListResponse, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &ApksListResponse{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "httpMethod": "GET", // "id": "androidpublisher.edits.apks.list", // "parameterOrder": [ // "packageName", // "editId" // ], // "parameters": { // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}/apks", // "response": { // "$ref": "ApksListResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.edits.apks.upload": type EditsApksUploadCall struct { s *Service packageNameid string editId string urlParams_ gensupport.URLParams mediaInfo_ *gensupport.MediaInfo ctx_ context.Context header_ http.Header } // Upload: func (r *EditsApksService) Upload(packageNameid string, editId string) *EditsApksUploadCall { c := &EditsApksUploadCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId return c } // Media specifies the media to upload in one or more chunks. The chunk // size may be controlled by supplying a MediaOption generated by // googleapi.ChunkSize. The chunk size defaults to // googleapi.DefaultUploadChunkSize.The Content-Type header used in the // upload request will be determined by sniffing the contents of r, // unless a MediaOption generated by googleapi.ContentType is // supplied. // At most one of Media and ResumableMedia may be set. func (c *EditsApksUploadCall) Media(r io.Reader, options ...googleapi.MediaOption) *EditsApksUploadCall { c.mediaInfo_ = gensupport.NewInfoFromMedia(r, options) return c } // ResumableMedia specifies the media to upload in chunks and can be // canceled with ctx. // // Deprecated: use Media instead. // // At most one of Media and ResumableMedia may be set. mediaType // identifies the MIME media type of the upload, such as "image/png". If // mediaType is "", it will be auto-detected. The provided ctx will // supersede any context previously provided to the Context method. func (c *EditsApksUploadCall) ResumableMedia(ctx context.Context, r io.ReaderAt, size int64, mediaType string) *EditsApksUploadCall { c.ctx_ = ctx c.mediaInfo_ = gensupport.NewInfoFromResumableMedia(r, size, mediaType) return c } // ProgressUpdater provides a callback function that will be called // after every chunk. It should be a low-latency function in order to // not slow down the upload operation. This should only be called when // using ResumableMedia (as opposed to Media). func (c *EditsApksUploadCall) ProgressUpdater(pu googleapi.ProgressUpdater) *EditsApksUploadCall { c.mediaInfo_.SetProgressUpdater(pu) return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsApksUploadCall) Fields(s ...googleapi.Field) *EditsApksUploadCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. // This context will supersede any context previously provided to the // ResumableMedia method. func (c *EditsApksUploadCall) Context(ctx context.Context) *EditsApksUploadCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsApksUploadCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsApksUploadCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}/apks") if c.mediaInfo_ != nil { urls = strings.Replace(urls, "https://www.googleapis.com/", "https://www.googleapis.com/upload/", 1) c.urlParams_.Set("uploadType", c.mediaInfo_.UploadType()) } if body == nil { body = new(bytes.Buffer) reqHeaders.Set("Content-Type", "application/json") } body, getBody, cleanup := c.mediaInfo_.UploadRequest(reqHeaders, body) defer cleanup() urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders req.GetBody = getBody googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.apks.upload" call. // Exactly one of *Apk or error will be non-nil. Any non-2xx status code // is an error. Response headers are in either // *Apk.ServerResponse.Header or (if a response was returned at all) in // error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check // whether the returned error was because http.StatusNotModified was // returned. func (c *EditsApksUploadCall) Do(opts ...googleapi.CallOption) (*Apk, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } rx := c.mediaInfo_.ResumableUpload(res.Header.Get("Location")) if rx != nil { rx.Client = c.s.client rx.UserAgent = c.s.userAgent() ctx := c.ctx_ if ctx == nil { ctx = context.TODO() } res, err = rx.Upload(ctx) if err != nil { return nil, err } defer res.Body.Close() if err := googleapi.CheckResponse(res); err != nil { return nil, err } } ret := &Apk{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "httpMethod": "POST", // "id": "androidpublisher.edits.apks.upload", // "mediaUpload": { // "accept": [ // "application/octet-stream", // "application/vnd.android.package-archive" // ], // "maxSize": "1GB", // "protocols": { // "resumable": { // "multipart": true, // "path": "/resumable/upload/androidpublisher/v2/applications/{packageName}/edits/{editId}/apks" // }, // "simple": { // "multipart": true, // "path": "/upload/androidpublisher/v2/applications/{packageName}/edits/{editId}/apks" // } // } // }, // "parameterOrder": [ // "packageName", // "editId" // ], // "parameters": { // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}/apks", // "response": { // "$ref": "Apk" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ], // "supportsMediaUpload": true // } } // method id "androidpublisher.edits.bundles.list": type EditsBundlesListCall struct { s *Service packageNameid string editId string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // List: func (r *EditsBundlesService) List(packageNameid string, editId string) *EditsBundlesListCall { c := &EditsBundlesListCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsBundlesListCall) Fields(s ...googleapi.Field) *EditsBundlesListCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // IfNoneMatch sets the optional parameter which makes the operation // fail if the object's ETag matches the given value. This is useful for // getting updates only after the object has changed since the last // request. Use googleapi.IsNotModified to check whether the response // error from Do is the result of In-None-Match. func (c *EditsBundlesListCall) IfNoneMatch(entityTag string) *EditsBundlesListCall { c.ifNoneMatch_ = entityTag return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *EditsBundlesListCall) Context(ctx context.Context) *EditsBundlesListCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsBundlesListCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsBundlesListCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) if c.ifNoneMatch_ != "" { reqHeaders.Set("If-None-Match", c.ifNoneMatch_) } var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}/bundles") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("GET", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.bundles.list" call. // Exactly one of *BundlesListResponse or error will be non-nil. Any // non-2xx status code is an error. Response headers are in either // *BundlesListResponse.ServerResponse.Header or (if a response was // returned at all) in error.(*googleapi.Error).Header. Use // googleapi.IsNotModified to check whether the returned error was // because http.StatusNotModified was returned. func (c *EditsBundlesListCall) Do(opts ...googleapi.CallOption) (*BundlesListResponse, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &BundlesListResponse{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "httpMethod": "GET", // "id": "androidpublisher.edits.bundles.list", // "parameterOrder": [ // "packageName", // "editId" // ], // "parameters": { // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}/bundles", // "response": { // "$ref": "BundlesListResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.edits.bundles.upload": type EditsBundlesUploadCall struct { s *Service packageNameid string editId string urlParams_ gensupport.URLParams mediaInfo_ *gensupport.MediaInfo ctx_ context.Context header_ http.Header } // Upload: Uploads a new Android App Bundle to this edit. If you are // using the Google API client libraries, please increase the timeout of // the http request before calling this endpoint (a timeout of 2 minutes // is recommended). See: // https://developers.google.com/api-client-library/java/google-api-java-client/errors for an example in // java. func (r *EditsBundlesService) Upload(packageNameid string, editId string) *EditsBundlesUploadCall { c := &EditsBundlesUploadCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId return c } // AckBundleInstallationWarning sets the optional parameter // "ackBundleInstallationWarning": Must be set to true if the bundle // installation may trigger a warning on user devices (for example, if // installation size may be over a threshold, typically 100 MB). func (c *EditsBundlesUploadCall) AckBundleInstallationWarning(ackBundleInstallationWarning bool) *EditsBundlesUploadCall { c.urlParams_.Set("ackBundleInstallationWarning", fmt.Sprint(ackBundleInstallationWarning)) return c } // Media specifies the media to upload in one or more chunks. The chunk // size may be controlled by supplying a MediaOption generated by // googleapi.ChunkSize. The chunk size defaults to // googleapi.DefaultUploadChunkSize.The Content-Type header used in the // upload request will be determined by sniffing the contents of r, // unless a MediaOption generated by googleapi.ContentType is // supplied. // At most one of Media and ResumableMedia may be set. func (c *EditsBundlesUploadCall) Media(r io.Reader, options ...googleapi.MediaOption) *EditsBundlesUploadCall { c.mediaInfo_ = gensupport.NewInfoFromMedia(r, options) return c } // ResumableMedia specifies the media to upload in chunks and can be // canceled with ctx. // // Deprecated: use Media instead. // // At most one of Media and ResumableMedia may be set. mediaType // identifies the MIME media type of the upload, such as "image/png". If // mediaType is "", it will be auto-detected. The provided ctx will // supersede any context previously provided to the Context method. func (c *EditsBundlesUploadCall) ResumableMedia(ctx context.Context, r io.ReaderAt, size int64, mediaType string) *EditsBundlesUploadCall { c.ctx_ = ctx c.mediaInfo_ = gensupport.NewInfoFromResumableMedia(r, size, mediaType) return c } // ProgressUpdater provides a callback function that will be called // after every chunk. It should be a low-latency function in order to // not slow down the upload operation. This should only be called when // using ResumableMedia (as opposed to Media). func (c *EditsBundlesUploadCall) ProgressUpdater(pu googleapi.ProgressUpdater) *EditsBundlesUploadCall { c.mediaInfo_.SetProgressUpdater(pu) return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsBundlesUploadCall) Fields(s ...googleapi.Field) *EditsBundlesUploadCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. // This context will supersede any context previously provided to the // ResumableMedia method. func (c *EditsBundlesUploadCall) Context(ctx context.Context) *EditsBundlesUploadCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsBundlesUploadCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsBundlesUploadCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}/bundles") if c.mediaInfo_ != nil { urls = strings.Replace(urls, "https://www.googleapis.com/", "https://www.googleapis.com/upload/", 1) c.urlParams_.Set("uploadType", c.mediaInfo_.UploadType()) } if body == nil { body = new(bytes.Buffer) reqHeaders.Set("Content-Type", "application/json") } body, getBody, cleanup := c.mediaInfo_.UploadRequest(reqHeaders, body) defer cleanup() urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders req.GetBody = getBody googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.bundles.upload" call. // Exactly one of *Bundle or error will be non-nil. Any non-2xx status // code is an error. Response headers are in either // *Bundle.ServerResponse.Header or (if a response was returned at all) // in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to // check whether the returned error was because http.StatusNotModified // was returned. func (c *EditsBundlesUploadCall) Do(opts ...googleapi.CallOption) (*Bundle, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } rx := c.mediaInfo_.ResumableUpload(res.Header.Get("Location")) if rx != nil { rx.Client = c.s.client rx.UserAgent = c.s.userAgent() ctx := c.ctx_ if ctx == nil { ctx = context.TODO() } res, err = rx.Upload(ctx) if err != nil { return nil, err } defer res.Body.Close() if err := googleapi.CheckResponse(res); err != nil { return nil, err } } ret := &Bundle{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Uploads a new Android App Bundle to this edit. If you are using the Google API client libraries, please increase the timeout of the http request before calling this endpoint (a timeout of 2 minutes is recommended). See: https://developers.google.com/api-client-library/java/google-api-java-client/errors for an example in java.", // "httpMethod": "POST", // "id": "androidpublisher.edits.bundles.upload", // "mediaUpload": { // "accept": [ // "application/octet-stream" // ], // "maxSize": "2GB", // "protocols": { // "resumable": { // "multipart": true, // "path": "/resumable/upload/androidpublisher/v2/applications/{packageName}/edits/{editId}/bundles" // }, // "simple": { // "multipart": true, // "path": "/upload/androidpublisher/v2/applications/{packageName}/edits/{editId}/bundles" // } // } // }, // "parameterOrder": [ // "packageName", // "editId" // ], // "parameters": { // "ackBundleInstallationWarning": { // "description": "Must be set to true if the bundle installation may trigger a warning on user devices (for example, if installation size may be over a threshold, typically 100 MB).", // "location": "query", // "type": "boolean" // }, // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}/bundles", // "response": { // "$ref": "Bundle" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ], // "supportsMediaUpload": true // } } // method id "androidpublisher.edits.deobfuscationfiles.upload": type EditsDeobfuscationfilesUploadCall struct { s *Service packageNameid string editId string apkVersionCode int64 deobfuscationFileType string urlParams_ gensupport.URLParams mediaInfo_ *gensupport.MediaInfo ctx_ context.Context header_ http.Header } // Upload: Uploads the deobfuscation file of the specified APK. If a // deobfuscation file already exists, it will be replaced. func (r *EditsDeobfuscationfilesService) Upload(packageNameid string, editId string, apkVersionCode int64, deobfuscationFileType string) *EditsDeobfuscationfilesUploadCall { c := &EditsDeobfuscationfilesUploadCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId c.apkVersionCode = apkVersionCode c.deobfuscationFileType = deobfuscationFileType return c } // Media specifies the media to upload in one or more chunks. The chunk // size may be controlled by supplying a MediaOption generated by // googleapi.ChunkSize. The chunk size defaults to // googleapi.DefaultUploadChunkSize.The Content-Type header used in the // upload request will be determined by sniffing the contents of r, // unless a MediaOption generated by googleapi.ContentType is // supplied. // At most one of Media and ResumableMedia may be set. func (c *EditsDeobfuscationfilesUploadCall) Media(r io.Reader, options ...googleapi.MediaOption) *EditsDeobfuscationfilesUploadCall { c.mediaInfo_ = gensupport.NewInfoFromMedia(r, options) return c } // ResumableMedia specifies the media to upload in chunks and can be // canceled with ctx. // // Deprecated: use Media instead. // // At most one of Media and ResumableMedia may be set. mediaType // identifies the MIME media type of the upload, such as "image/png". If // mediaType is "", it will be auto-detected. The provided ctx will // supersede any context previously provided to the Context method. func (c *EditsDeobfuscationfilesUploadCall) ResumableMedia(ctx context.Context, r io.ReaderAt, size int64, mediaType string) *EditsDeobfuscationfilesUploadCall { c.ctx_ = ctx c.mediaInfo_ = gensupport.NewInfoFromResumableMedia(r, size, mediaType) return c } // ProgressUpdater provides a callback function that will be called // after every chunk. It should be a low-latency function in order to // not slow down the upload operation. This should only be called when // using ResumableMedia (as opposed to Media). func (c *EditsDeobfuscationfilesUploadCall) ProgressUpdater(pu googleapi.ProgressUpdater) *EditsDeobfuscationfilesUploadCall { c.mediaInfo_.SetProgressUpdater(pu) return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsDeobfuscationfilesUploadCall) Fields(s ...googleapi.Field) *EditsDeobfuscationfilesUploadCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. // This context will supersede any context previously provided to the // ResumableMedia method. func (c *EditsDeobfuscationfilesUploadCall) Context(ctx context.Context) *EditsDeobfuscationfilesUploadCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsDeobfuscationfilesUploadCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsDeobfuscationfilesUploadCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}/apks/{apkVersionCode}/deobfuscationFiles/{deobfuscationFileType}") if c.mediaInfo_ != nil { urls = strings.Replace(urls, "https://www.googleapis.com/", "https://www.googleapis.com/upload/", 1) c.urlParams_.Set("uploadType", c.mediaInfo_.UploadType()) } if body == nil { body = new(bytes.Buffer) reqHeaders.Set("Content-Type", "application/json") } body, getBody, cleanup := c.mediaInfo_.UploadRequest(reqHeaders, body) defer cleanup() urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders req.GetBody = getBody googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, "apkVersionCode": strconv.FormatInt(c.apkVersionCode, 10), "deobfuscationFileType": c.deobfuscationFileType, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.deobfuscationfiles.upload" call. // Exactly one of *DeobfuscationFilesUploadResponse or error will be // non-nil. Any non-2xx status code is an error. Response headers are in // either *DeobfuscationFilesUploadResponse.ServerResponse.Header or (if // a response was returned at all) in error.(*googleapi.Error).Header. // Use googleapi.IsNotModified to check whether the returned error was // because http.StatusNotModified was returned. func (c *EditsDeobfuscationfilesUploadCall) Do(opts ...googleapi.CallOption) (*DeobfuscationFilesUploadResponse, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } rx := c.mediaInfo_.ResumableUpload(res.Header.Get("Location")) if rx != nil { rx.Client = c.s.client rx.UserAgent = c.s.userAgent() ctx := c.ctx_ if ctx == nil { ctx = context.TODO() } res, err = rx.Upload(ctx) if err != nil { return nil, err } defer res.Body.Close() if err := googleapi.CheckResponse(res); err != nil { return nil, err } } ret := &DeobfuscationFilesUploadResponse{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Uploads the deobfuscation file of the specified APK. If a deobfuscation file already exists, it will be replaced.", // "httpMethod": "POST", // "id": "androidpublisher.edits.deobfuscationfiles.upload", // "mediaUpload": { // "accept": [ // "application/octet-stream" // ], // "maxSize": "300MB", // "protocols": { // "resumable": { // "multipart": true, // "path": "/resumable/upload/androidpublisher/v2/applications/{packageName}/edits/{editId}/apks/{apkVersionCode}/deobfuscationFiles/{deobfuscationFileType}" // }, // "simple": { // "multipart": true, // "path": "/upload/androidpublisher/v2/applications/{packageName}/edits/{editId}/apks/{apkVersionCode}/deobfuscationFiles/{deobfuscationFileType}" // } // } // }, // "parameterOrder": [ // "packageName", // "editId", // "apkVersionCode", // "deobfuscationFileType" // ], // "parameters": { // "apkVersionCode": { // "description": "The version code of the APK whose deobfuscation file is being uploaded.", // "format": "int32", // "location": "path", // "required": true, // "type": "integer" // }, // "deobfuscationFileType": { // "enum": [ // "proguard" // ], // "enumDescriptions": [ // "" // ], // "location": "path", // "required": true, // "type": "string" // }, // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier of the Android app for which the deobfuscatiuon files are being uploaded; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}/apks/{apkVersionCode}/deobfuscationFiles/{deobfuscationFileType}", // "response": { // "$ref": "DeobfuscationFilesUploadResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ], // "supportsMediaUpload": true // } } // method id "androidpublisher.edits.details.get": type EditsDetailsGetCall struct { s *Service packageNameid string editId string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // Get: Fetches app details for this edit. This includes the default // language and developer support contact information. func (r *EditsDetailsService) Get(packageNameid string, editId string) *EditsDetailsGetCall { c := &EditsDetailsGetCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsDetailsGetCall) Fields(s ...googleapi.Field) *EditsDetailsGetCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // IfNoneMatch sets the optional parameter which makes the operation // fail if the object's ETag matches the given value. This is useful for // getting updates only after the object has changed since the last // request. Use googleapi.IsNotModified to check whether the response // error from Do is the result of In-None-Match. func (c *EditsDetailsGetCall) IfNoneMatch(entityTag string) *EditsDetailsGetCall { c.ifNoneMatch_ = entityTag return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *EditsDetailsGetCall) Context(ctx context.Context) *EditsDetailsGetCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsDetailsGetCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsDetailsGetCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) if c.ifNoneMatch_ != "" { reqHeaders.Set("If-None-Match", c.ifNoneMatch_) } var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}/details") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("GET", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.details.get" call. // Exactly one of *AppDetails or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *AppDetails.ServerResponse.Header or (if a response was returned at // all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified // to check whether the returned error was because // http.StatusNotModified was returned. func (c *EditsDetailsGetCall) Do(opts ...googleapi.CallOption) (*AppDetails, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &AppDetails{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Fetches app details for this edit. This includes the default language and developer support contact information.", // "httpMethod": "GET", // "id": "androidpublisher.edits.details.get", // "parameterOrder": [ // "packageName", // "editId" // ], // "parameters": { // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}/details", // "response": { // "$ref": "AppDetails" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.edits.details.patch": type EditsDetailsPatchCall struct { s *Service packageNameid string editId string appdetails *AppDetails urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Patch: Updates app details for this edit. This method supports patch // semantics. func (r *EditsDetailsService) Patch(packageNameid string, editId string, appdetails *AppDetails) *EditsDetailsPatchCall { c := &EditsDetailsPatchCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId c.appdetails = appdetails return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsDetailsPatchCall) Fields(s ...googleapi.Field) *EditsDetailsPatchCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *EditsDetailsPatchCall) Context(ctx context.Context) *EditsDetailsPatchCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsDetailsPatchCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsDetailsPatchCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil body, err := googleapi.WithoutDataWrapper.JSONReader(c.appdetails) if err != nil { return nil, err } reqHeaders.Set("Content-Type", "application/json") c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}/details") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("PATCH", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.details.patch" call. // Exactly one of *AppDetails or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *AppDetails.ServerResponse.Header or (if a response was returned at // all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified // to check whether the returned error was because // http.StatusNotModified was returned. func (c *EditsDetailsPatchCall) Do(opts ...googleapi.CallOption) (*AppDetails, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &AppDetails{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Updates app details for this edit. This method supports patch semantics.", // "httpMethod": "PATCH", // "id": "androidpublisher.edits.details.patch", // "parameterOrder": [ // "packageName", // "editId" // ], // "parameters": { // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}/details", // "request": { // "$ref": "AppDetails" // }, // "response": { // "$ref": "AppDetails" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.edits.details.update": type EditsDetailsUpdateCall struct { s *Service packageNameid string editId string appdetails *AppDetails urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Update: Updates app details for this edit. func (r *EditsDetailsService) Update(packageNameid string, editId string, appdetails *AppDetails) *EditsDetailsUpdateCall { c := &EditsDetailsUpdateCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId c.appdetails = appdetails return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsDetailsUpdateCall) Fields(s ...googleapi.Field) *EditsDetailsUpdateCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *EditsDetailsUpdateCall) Context(ctx context.Context) *EditsDetailsUpdateCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsDetailsUpdateCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsDetailsUpdateCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil body, err := googleapi.WithoutDataWrapper.JSONReader(c.appdetails) if err != nil { return nil, err } reqHeaders.Set("Content-Type", "application/json") c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}/details") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("PUT", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.details.update" call. // Exactly one of *AppDetails or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *AppDetails.ServerResponse.Header or (if a response was returned at // all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified // to check whether the returned error was because // http.StatusNotModified was returned. func (c *EditsDetailsUpdateCall) Do(opts ...googleapi.CallOption) (*AppDetails, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &AppDetails{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Updates app details for this edit.", // "httpMethod": "PUT", // "id": "androidpublisher.edits.details.update", // "parameterOrder": [ // "packageName", // "editId" // ], // "parameters": { // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}/details", // "request": { // "$ref": "AppDetails" // }, // "response": { // "$ref": "AppDetails" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.edits.expansionfiles.get": type EditsExpansionfilesGetCall struct { s *Service packageNameid string editId string apkVersionCode int64 expansionFileType string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // Get: Fetches the Expansion File configuration for the APK specified. func (r *EditsExpansionfilesService) Get(packageNameid string, editId string, apkVersionCode int64, expansionFileType string) *EditsExpansionfilesGetCall { c := &EditsExpansionfilesGetCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId c.apkVersionCode = apkVersionCode c.expansionFileType = expansionFileType return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsExpansionfilesGetCall) Fields(s ...googleapi.Field) *EditsExpansionfilesGetCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // IfNoneMatch sets the optional parameter which makes the operation // fail if the object's ETag matches the given value. This is useful for // getting updates only after the object has changed since the last // request. Use googleapi.IsNotModified to check whether the response // error from Do is the result of In-None-Match. func (c *EditsExpansionfilesGetCall) IfNoneMatch(entityTag string) *EditsExpansionfilesGetCall { c.ifNoneMatch_ = entityTag return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *EditsExpansionfilesGetCall) Context(ctx context.Context) *EditsExpansionfilesGetCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsExpansionfilesGetCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsExpansionfilesGetCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) if c.ifNoneMatch_ != "" { reqHeaders.Set("If-None-Match", c.ifNoneMatch_) } var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}/apks/{apkVersionCode}/expansionFiles/{expansionFileType}") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("GET", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, "apkVersionCode": strconv.FormatInt(c.apkVersionCode, 10), "expansionFileType": c.expansionFileType, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.expansionfiles.get" call. // Exactly one of *ExpansionFile or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *ExpansionFile.ServerResponse.Header or (if a response was returned // at all) in error.(*googleapi.Error).Header. Use // googleapi.IsNotModified to check whether the returned error was // because http.StatusNotModified was returned. func (c *EditsExpansionfilesGetCall) Do(opts ...googleapi.CallOption) (*ExpansionFile, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &ExpansionFile{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Fetches the Expansion File configuration for the APK specified.", // "httpMethod": "GET", // "id": "androidpublisher.edits.expansionfiles.get", // "parameterOrder": [ // "packageName", // "editId", // "apkVersionCode", // "expansionFileType" // ], // "parameters": { // "apkVersionCode": { // "description": "The version code of the APK whose Expansion File configuration is being read or modified.", // "format": "int32", // "location": "path", // "required": true, // "type": "integer" // }, // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "expansionFileType": { // "enum": [ // "main", // "patch" // ], // "enumDescriptions": [ // "", // "" // ], // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}/apks/{apkVersionCode}/expansionFiles/{expansionFileType}", // "response": { // "$ref": "ExpansionFile" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.edits.expansionfiles.patch": type EditsExpansionfilesPatchCall struct { s *Service packageNameid string editId string apkVersionCode int64 expansionFileType string expansionfile *ExpansionFile urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Patch: Updates the APK's Expansion File configuration to reference // another APK's Expansion Files. To add a new Expansion File use the // Upload method. This method supports patch semantics. func (r *EditsExpansionfilesService) Patch(packageNameid string, editId string, apkVersionCode int64, expansionFileType string, expansionfile *ExpansionFile) *EditsExpansionfilesPatchCall { c := &EditsExpansionfilesPatchCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId c.apkVersionCode = apkVersionCode c.expansionFileType = expansionFileType c.expansionfile = expansionfile return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsExpansionfilesPatchCall) Fields(s ...googleapi.Field) *EditsExpansionfilesPatchCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *EditsExpansionfilesPatchCall) Context(ctx context.Context) *EditsExpansionfilesPatchCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsExpansionfilesPatchCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsExpansionfilesPatchCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil body, err := googleapi.WithoutDataWrapper.JSONReader(c.expansionfile) if err != nil { return nil, err } reqHeaders.Set("Content-Type", "application/json") c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}/apks/{apkVersionCode}/expansionFiles/{expansionFileType}") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("PATCH", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, "apkVersionCode": strconv.FormatInt(c.apkVersionCode, 10), "expansionFileType": c.expansionFileType, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.expansionfiles.patch" call. // Exactly one of *ExpansionFile or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *ExpansionFile.ServerResponse.Header or (if a response was returned // at all) in error.(*googleapi.Error).Header. Use // googleapi.IsNotModified to check whether the returned error was // because http.StatusNotModified was returned. func (c *EditsExpansionfilesPatchCall) Do(opts ...googleapi.CallOption) (*ExpansionFile, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &ExpansionFile{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Updates the APK's Expansion File configuration to reference another APK's Expansion Files. To add a new Expansion File use the Upload method. This method supports patch semantics.", // "httpMethod": "PATCH", // "id": "androidpublisher.edits.expansionfiles.patch", // "parameterOrder": [ // "packageName", // "editId", // "apkVersionCode", // "expansionFileType" // ], // "parameters": { // "apkVersionCode": { // "description": "The version code of the APK whose Expansion File configuration is being read or modified.", // "format": "int32", // "location": "path", // "required": true, // "type": "integer" // }, // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "expansionFileType": { // "enum": [ // "main", // "patch" // ], // "enumDescriptions": [ // "", // "" // ], // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}/apks/{apkVersionCode}/expansionFiles/{expansionFileType}", // "request": { // "$ref": "ExpansionFile" // }, // "response": { // "$ref": "ExpansionFile" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.edits.expansionfiles.update": type EditsExpansionfilesUpdateCall struct { s *Service packageNameid string editId string apkVersionCode int64 expansionFileType string expansionfile *ExpansionFile urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Update: Updates the APK's Expansion File configuration to reference // another APK's Expansion Files. To add a new Expansion File use the // Upload method. func (r *EditsExpansionfilesService) Update(packageNameid string, editId string, apkVersionCode int64, expansionFileType string, expansionfile *ExpansionFile) *EditsExpansionfilesUpdateCall { c := &EditsExpansionfilesUpdateCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId c.apkVersionCode = apkVersionCode c.expansionFileType = expansionFileType c.expansionfile = expansionfile return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsExpansionfilesUpdateCall) Fields(s ...googleapi.Field) *EditsExpansionfilesUpdateCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *EditsExpansionfilesUpdateCall) Context(ctx context.Context) *EditsExpansionfilesUpdateCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsExpansionfilesUpdateCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsExpansionfilesUpdateCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil body, err := googleapi.WithoutDataWrapper.JSONReader(c.expansionfile) if err != nil { return nil, err } reqHeaders.Set("Content-Type", "application/json") c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}/apks/{apkVersionCode}/expansionFiles/{expansionFileType}") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("PUT", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, "apkVersionCode": strconv.FormatInt(c.apkVersionCode, 10), "expansionFileType": c.expansionFileType, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.expansionfiles.update" call. // Exactly one of *ExpansionFile or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *ExpansionFile.ServerResponse.Header or (if a response was returned // at all) in error.(*googleapi.Error).Header. Use // googleapi.IsNotModified to check whether the returned error was // because http.StatusNotModified was returned. func (c *EditsExpansionfilesUpdateCall) Do(opts ...googleapi.CallOption) (*ExpansionFile, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &ExpansionFile{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Updates the APK's Expansion File configuration to reference another APK's Expansion Files. To add a new Expansion File use the Upload method.", // "httpMethod": "PUT", // "id": "androidpublisher.edits.expansionfiles.update", // "parameterOrder": [ // "packageName", // "editId", // "apkVersionCode", // "expansionFileType" // ], // "parameters": { // "apkVersionCode": { // "description": "The version code of the APK whose Expansion File configuration is being read or modified.", // "format": "int32", // "location": "path", // "required": true, // "type": "integer" // }, // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "expansionFileType": { // "enum": [ // "main", // "patch" // ], // "enumDescriptions": [ // "", // "" // ], // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}/apks/{apkVersionCode}/expansionFiles/{expansionFileType}", // "request": { // "$ref": "ExpansionFile" // }, // "response": { // "$ref": "ExpansionFile" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.edits.expansionfiles.upload": type EditsExpansionfilesUploadCall struct { s *Service packageNameid string editId string apkVersionCode int64 expansionFileType string urlParams_ gensupport.URLParams mediaInfo_ *gensupport.MediaInfo ctx_ context.Context header_ http.Header } // Upload: Uploads and attaches a new Expansion File to the APK // specified. func (r *EditsExpansionfilesService) Upload(packageNameid string, editId string, apkVersionCode int64, expansionFileType string) *EditsExpansionfilesUploadCall { c := &EditsExpansionfilesUploadCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId c.apkVersionCode = apkVersionCode c.expansionFileType = expansionFileType return c } // Media specifies the media to upload in one or more chunks. The chunk // size may be controlled by supplying a MediaOption generated by // googleapi.ChunkSize. The chunk size defaults to // googleapi.DefaultUploadChunkSize.The Content-Type header used in the // upload request will be determined by sniffing the contents of r, // unless a MediaOption generated by googleapi.ContentType is // supplied. // At most one of Media and ResumableMedia may be set. func (c *EditsExpansionfilesUploadCall) Media(r io.Reader, options ...googleapi.MediaOption) *EditsExpansionfilesUploadCall { c.mediaInfo_ = gensupport.NewInfoFromMedia(r, options) return c } // ResumableMedia specifies the media to upload in chunks and can be // canceled with ctx. // // Deprecated: use Media instead. // // At most one of Media and ResumableMedia may be set. mediaType // identifies the MIME media type of the upload, such as "image/png". If // mediaType is "", it will be auto-detected. The provided ctx will // supersede any context previously provided to the Context method. func (c *EditsExpansionfilesUploadCall) ResumableMedia(ctx context.Context, r io.ReaderAt, size int64, mediaType string) *EditsExpansionfilesUploadCall { c.ctx_ = ctx c.mediaInfo_ = gensupport.NewInfoFromResumableMedia(r, size, mediaType) return c } // ProgressUpdater provides a callback function that will be called // after every chunk. It should be a low-latency function in order to // not slow down the upload operation. This should only be called when // using ResumableMedia (as opposed to Media). func (c *EditsExpansionfilesUploadCall) ProgressUpdater(pu googleapi.ProgressUpdater) *EditsExpansionfilesUploadCall { c.mediaInfo_.SetProgressUpdater(pu) return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsExpansionfilesUploadCall) Fields(s ...googleapi.Field) *EditsExpansionfilesUploadCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. // This context will supersede any context previously provided to the // ResumableMedia method. func (c *EditsExpansionfilesUploadCall) Context(ctx context.Context) *EditsExpansionfilesUploadCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsExpansionfilesUploadCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsExpansionfilesUploadCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}/apks/{apkVersionCode}/expansionFiles/{expansionFileType}") if c.mediaInfo_ != nil { urls = strings.Replace(urls, "https://www.googleapis.com/", "https://www.googleapis.com/upload/", 1) c.urlParams_.Set("uploadType", c.mediaInfo_.UploadType()) } if body == nil { body = new(bytes.Buffer) reqHeaders.Set("Content-Type", "application/json") } body, getBody, cleanup := c.mediaInfo_.UploadRequest(reqHeaders, body) defer cleanup() urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders req.GetBody = getBody googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, "apkVersionCode": strconv.FormatInt(c.apkVersionCode, 10), "expansionFileType": c.expansionFileType, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.expansionfiles.upload" call. // Exactly one of *ExpansionFilesUploadResponse or error will be // non-nil. Any non-2xx status code is an error. Response headers are in // either *ExpansionFilesUploadResponse.ServerResponse.Header or (if a // response was returned at all) in error.(*googleapi.Error).Header. Use // googleapi.IsNotModified to check whether the returned error was // because http.StatusNotModified was returned. func (c *EditsExpansionfilesUploadCall) Do(opts ...googleapi.CallOption) (*ExpansionFilesUploadResponse, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } rx := c.mediaInfo_.ResumableUpload(res.Header.Get("Location")) if rx != nil { rx.Client = c.s.client rx.UserAgent = c.s.userAgent() ctx := c.ctx_ if ctx == nil { ctx = context.TODO() } res, err = rx.Upload(ctx) if err != nil { return nil, err } defer res.Body.Close() if err := googleapi.CheckResponse(res); err != nil { return nil, err } } ret := &ExpansionFilesUploadResponse{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Uploads and attaches a new Expansion File to the APK specified.", // "httpMethod": "POST", // "id": "androidpublisher.edits.expansionfiles.upload", // "mediaUpload": { // "accept": [ // "application/octet-stream" // ], // "maxSize": "2048MB", // "protocols": { // "resumable": { // "multipart": true, // "path": "/resumable/upload/androidpublisher/v2/applications/{packageName}/edits/{editId}/apks/{apkVersionCode}/expansionFiles/{expansionFileType}" // }, // "simple": { // "multipart": true, // "path": "/upload/androidpublisher/v2/applications/{packageName}/edits/{editId}/apks/{apkVersionCode}/expansionFiles/{expansionFileType}" // } // } // }, // "parameterOrder": [ // "packageName", // "editId", // "apkVersionCode", // "expansionFileType" // ], // "parameters": { // "apkVersionCode": { // "description": "The version code of the APK whose Expansion File configuration is being read or modified.", // "format": "int32", // "location": "path", // "required": true, // "type": "integer" // }, // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "expansionFileType": { // "enum": [ // "main", // "patch" // ], // "enumDescriptions": [ // "", // "" // ], // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}/apks/{apkVersionCode}/expansionFiles/{expansionFileType}", // "response": { // "$ref": "ExpansionFilesUploadResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ], // "supportsMediaUpload": true // } } // method id "androidpublisher.edits.images.delete": type EditsImagesDeleteCall struct { s *Service packageNameid string editId string language string imageType string imageId string urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Delete: Deletes the image (specified by id) from the edit. func (r *EditsImagesService) Delete(packageNameid string, editId string, language string, imageType string, imageId string) *EditsImagesDeleteCall { c := &EditsImagesDeleteCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId c.language = language c.imageType = imageType c.imageId = imageId return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsImagesDeleteCall) Fields(s ...googleapi.Field) *EditsImagesDeleteCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *EditsImagesDeleteCall) Context(ctx context.Context) *EditsImagesDeleteCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsImagesDeleteCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsImagesDeleteCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}/listings/{language}/{imageType}/{imageId}") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("DELETE", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, "language": c.language, "imageType": c.imageType, "imageId": c.imageId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.images.delete" call. func (c *EditsImagesDeleteCall) Do(opts ...googleapi.CallOption) error { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if err != nil { return err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return err } return nil // { // "description": "Deletes the image (specified by id) from the edit.", // "httpMethod": "DELETE", // "id": "androidpublisher.edits.images.delete", // "parameterOrder": [ // "packageName", // "editId", // "language", // "imageType", // "imageId" // ], // "parameters": { // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "imageId": { // "description": "Unique identifier an image within the set of images attached to this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "imageType": { // "enum": [ // "featureGraphic", // "icon", // "phoneScreenshots", // "promoGraphic", // "sevenInchScreenshots", // "tenInchScreenshots", // "tvBanner", // "tvScreenshots", // "wearScreenshots" // ], // "enumDescriptions": [ // "", // "", // "", // "", // "", // "", // "", // "", // "" // ], // "location": "path", // "required": true, // "type": "string" // }, // "language": { // "description": "The language code (a BCP-47 language tag) of the localized listing whose images are to read or modified. For example, to select Austrian German, pass \"de-AT\".", // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}/listings/{language}/{imageType}/{imageId}", // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.edits.images.deleteall": type EditsImagesDeleteallCall struct { s *Service packageNameid string editId string language string imageType string urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Deleteall: Deletes all images for the specified language and image // type. func (r *EditsImagesService) Deleteall(packageNameid string, editId string, language string, imageType string) *EditsImagesDeleteallCall { c := &EditsImagesDeleteallCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId c.language = language c.imageType = imageType return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsImagesDeleteallCall) Fields(s ...googleapi.Field) *EditsImagesDeleteallCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *EditsImagesDeleteallCall) Context(ctx context.Context) *EditsImagesDeleteallCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsImagesDeleteallCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsImagesDeleteallCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}/listings/{language}/{imageType}") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("DELETE", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, "language": c.language, "imageType": c.imageType, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.images.deleteall" call. // Exactly one of *ImagesDeleteAllResponse or error will be non-nil. Any // non-2xx status code is an error. Response headers are in either // *ImagesDeleteAllResponse.ServerResponse.Header or (if a response was // returned at all) in error.(*googleapi.Error).Header. Use // googleapi.IsNotModified to check whether the returned error was // because http.StatusNotModified was returned. func (c *EditsImagesDeleteallCall) Do(opts ...googleapi.CallOption) (*ImagesDeleteAllResponse, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &ImagesDeleteAllResponse{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Deletes all images for the specified language and image type.", // "httpMethod": "DELETE", // "id": "androidpublisher.edits.images.deleteall", // "parameterOrder": [ // "packageName", // "editId", // "language", // "imageType" // ], // "parameters": { // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "imageType": { // "enum": [ // "featureGraphic", // "icon", // "phoneScreenshots", // "promoGraphic", // "sevenInchScreenshots", // "tenInchScreenshots", // "tvBanner", // "tvScreenshots", // "wearScreenshots" // ], // "enumDescriptions": [ // "", // "", // "", // "", // "", // "", // "", // "", // "" // ], // "location": "path", // "required": true, // "type": "string" // }, // "language": { // "description": "The language code (a BCP-47 language tag) of the localized listing whose images are to read or modified. For example, to select Austrian German, pass \"de-AT\".", // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}/listings/{language}/{imageType}", // "response": { // "$ref": "ImagesDeleteAllResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.edits.images.list": type EditsImagesListCall struct { s *Service packageNameid string editId string language string imageType string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // List: Lists all images for the specified language and image type. func (r *EditsImagesService) List(packageNameid string, editId string, language string, imageType string) *EditsImagesListCall { c := &EditsImagesListCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId c.language = language c.imageType = imageType return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsImagesListCall) Fields(s ...googleapi.Field) *EditsImagesListCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // IfNoneMatch sets the optional parameter which makes the operation // fail if the object's ETag matches the given value. This is useful for // getting updates only after the object has changed since the last // request. Use googleapi.IsNotModified to check whether the response // error from Do is the result of In-None-Match. func (c *EditsImagesListCall) IfNoneMatch(entityTag string) *EditsImagesListCall { c.ifNoneMatch_ = entityTag return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *EditsImagesListCall) Context(ctx context.Context) *EditsImagesListCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsImagesListCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsImagesListCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) if c.ifNoneMatch_ != "" { reqHeaders.Set("If-None-Match", c.ifNoneMatch_) } var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}/listings/{language}/{imageType}") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("GET", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, "language": c.language, "imageType": c.imageType, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.images.list" call. // Exactly one of *ImagesListResponse or error will be non-nil. Any // non-2xx status code is an error. Response headers are in either // *ImagesListResponse.ServerResponse.Header or (if a response was // returned at all) in error.(*googleapi.Error).Header. Use // googleapi.IsNotModified to check whether the returned error was // because http.StatusNotModified was returned. func (c *EditsImagesListCall) Do(opts ...googleapi.CallOption) (*ImagesListResponse, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &ImagesListResponse{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Lists all images for the specified language and image type.", // "httpMethod": "GET", // "id": "androidpublisher.edits.images.list", // "parameterOrder": [ // "packageName", // "editId", // "language", // "imageType" // ], // "parameters": { // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "imageType": { // "enum": [ // "featureGraphic", // "icon", // "phoneScreenshots", // "promoGraphic", // "sevenInchScreenshots", // "tenInchScreenshots", // "tvBanner", // "tvScreenshots", // "wearScreenshots" // ], // "enumDescriptions": [ // "", // "", // "", // "", // "", // "", // "", // "", // "" // ], // "location": "path", // "required": true, // "type": "string" // }, // "language": { // "description": "The language code (a BCP-47 language tag) of the localized listing whose images are to read or modified. For example, to select Austrian German, pass \"de-AT\".", // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}/listings/{language}/{imageType}", // "response": { // "$ref": "ImagesListResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.edits.images.upload": type EditsImagesUploadCall struct { s *Service packageNameid string editId string language string imageType string urlParams_ gensupport.URLParams mediaInfo_ *gensupport.MediaInfo ctx_ context.Context header_ http.Header } // Upload: Uploads a new image and adds it to the list of images for the // specified language and image type. func (r *EditsImagesService) Upload(packageNameid string, editId string, language string, imageType string) *EditsImagesUploadCall { c := &EditsImagesUploadCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId c.language = language c.imageType = imageType return c } // Media specifies the media to upload in one or more chunks. The chunk // size may be controlled by supplying a MediaOption generated by // googleapi.ChunkSize. The chunk size defaults to // googleapi.DefaultUploadChunkSize.The Content-Type header used in the // upload request will be determined by sniffing the contents of r, // unless a MediaOption generated by googleapi.ContentType is // supplied. // At most one of Media and ResumableMedia may be set. func (c *EditsImagesUploadCall) Media(r io.Reader, options ...googleapi.MediaOption) *EditsImagesUploadCall { c.mediaInfo_ = gensupport.NewInfoFromMedia(r, options) return c } // ResumableMedia specifies the media to upload in chunks and can be // canceled with ctx. // // Deprecated: use Media instead. // // At most one of Media and ResumableMedia may be set. mediaType // identifies the MIME media type of the upload, such as "image/png". If // mediaType is "", it will be auto-detected. The provided ctx will // supersede any context previously provided to the Context method. func (c *EditsImagesUploadCall) ResumableMedia(ctx context.Context, r io.ReaderAt, size int64, mediaType string) *EditsImagesUploadCall { c.ctx_ = ctx c.mediaInfo_ = gensupport.NewInfoFromResumableMedia(r, size, mediaType) return c } // ProgressUpdater provides a callback function that will be called // after every chunk. It should be a low-latency function in order to // not slow down the upload operation. This should only be called when // using ResumableMedia (as opposed to Media). func (c *EditsImagesUploadCall) ProgressUpdater(pu googleapi.ProgressUpdater) *EditsImagesUploadCall { c.mediaInfo_.SetProgressUpdater(pu) return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsImagesUploadCall) Fields(s ...googleapi.Field) *EditsImagesUploadCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. // This context will supersede any context previously provided to the // ResumableMedia method. func (c *EditsImagesUploadCall) Context(ctx context.Context) *EditsImagesUploadCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsImagesUploadCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsImagesUploadCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}/listings/{language}/{imageType}") if c.mediaInfo_ != nil { urls = strings.Replace(urls, "https://www.googleapis.com/", "https://www.googleapis.com/upload/", 1) c.urlParams_.Set("uploadType", c.mediaInfo_.UploadType()) } if body == nil { body = new(bytes.Buffer) reqHeaders.Set("Content-Type", "application/json") } body, getBody, cleanup := c.mediaInfo_.UploadRequest(reqHeaders, body) defer cleanup() urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders req.GetBody = getBody googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, "language": c.language, "imageType": c.imageType, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.images.upload" call. // Exactly one of *ImagesUploadResponse or error will be non-nil. Any // non-2xx status code is an error. Response headers are in either // *ImagesUploadResponse.ServerResponse.Header or (if a response was // returned at all) in error.(*googleapi.Error).Header. Use // googleapi.IsNotModified to check whether the returned error was // because http.StatusNotModified was returned. func (c *EditsImagesUploadCall) Do(opts ...googleapi.CallOption) (*ImagesUploadResponse, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } rx := c.mediaInfo_.ResumableUpload(res.Header.Get("Location")) if rx != nil { rx.Client = c.s.client rx.UserAgent = c.s.userAgent() ctx := c.ctx_ if ctx == nil { ctx = context.TODO() } res, err = rx.Upload(ctx) if err != nil { return nil, err } defer res.Body.Close() if err := googleapi.CheckResponse(res); err != nil { return nil, err } } ret := &ImagesUploadResponse{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Uploads a new image and adds it to the list of images for the specified language and image type.", // "httpMethod": "POST", // "id": "androidpublisher.edits.images.upload", // "mediaUpload": { // "accept": [ // "image/*" // ], // "maxSize": "15MB", // "protocols": { // "resumable": { // "multipart": true, // "path": "/resumable/upload/androidpublisher/v2/applications/{packageName}/edits/{editId}/listings/{language}/{imageType}" // }, // "simple": { // "multipart": true, // "path": "/upload/androidpublisher/v2/applications/{packageName}/edits/{editId}/listings/{language}/{imageType}" // } // } // }, // "parameterOrder": [ // "packageName", // "editId", // "language", // "imageType" // ], // "parameters": { // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "imageType": { // "enum": [ // "featureGraphic", // "icon", // "phoneScreenshots", // "promoGraphic", // "sevenInchScreenshots", // "tenInchScreenshots", // "tvBanner", // "tvScreenshots", // "wearScreenshots" // ], // "enumDescriptions": [ // "", // "", // "", // "", // "", // "", // "", // "", // "" // ], // "location": "path", // "required": true, // "type": "string" // }, // "language": { // "description": "The language code (a BCP-47 language tag) of the localized listing whose images are to read or modified. For example, to select Austrian German, pass \"de-AT\".", // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}/listings/{language}/{imageType}", // "response": { // "$ref": "ImagesUploadResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ], // "supportsMediaUpload": true // } } // method id "androidpublisher.edits.listings.delete": type EditsListingsDeleteCall struct { s *Service packageNameid string editId string language string urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Delete: Deletes the specified localized store listing from an edit. func (r *EditsListingsService) Delete(packageNameid string, editId string, language string) *EditsListingsDeleteCall { c := &EditsListingsDeleteCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId c.language = language return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsListingsDeleteCall) Fields(s ...googleapi.Field) *EditsListingsDeleteCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *EditsListingsDeleteCall) Context(ctx context.Context) *EditsListingsDeleteCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsListingsDeleteCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsListingsDeleteCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}/listings/{language}") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("DELETE", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, "language": c.language, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.listings.delete" call. func (c *EditsListingsDeleteCall) Do(opts ...googleapi.CallOption) error { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if err != nil { return err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return err } return nil // { // "description": "Deletes the specified localized store listing from an edit.", // "httpMethod": "DELETE", // "id": "androidpublisher.edits.listings.delete", // "parameterOrder": [ // "packageName", // "editId", // "language" // ], // "parameters": { // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "language": { // "description": "The language code (a BCP-47 language tag) of the localized listing to read or modify. For example, to select Austrian German, pass \"de-AT\".", // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}/listings/{language}", // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.edits.listings.deleteall": type EditsListingsDeleteallCall struct { s *Service packageNameid string editId string urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Deleteall: Deletes all localized listings from an edit. func (r *EditsListingsService) Deleteall(packageNameid string, editId string) *EditsListingsDeleteallCall { c := &EditsListingsDeleteallCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsListingsDeleteallCall) Fields(s ...googleapi.Field) *EditsListingsDeleteallCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *EditsListingsDeleteallCall) Context(ctx context.Context) *EditsListingsDeleteallCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsListingsDeleteallCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsListingsDeleteallCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}/listings") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("DELETE", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.listings.deleteall" call. func (c *EditsListingsDeleteallCall) Do(opts ...googleapi.CallOption) error { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if err != nil { return err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return err } return nil // { // "description": "Deletes all localized listings from an edit.", // "httpMethod": "DELETE", // "id": "androidpublisher.edits.listings.deleteall", // "parameterOrder": [ // "packageName", // "editId" // ], // "parameters": { // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}/listings", // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.edits.listings.get": type EditsListingsGetCall struct { s *Service packageNameid string editId string language string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // Get: Fetches information about a localized store listing. func (r *EditsListingsService) Get(packageNameid string, editId string, language string) *EditsListingsGetCall { c := &EditsListingsGetCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId c.language = language return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsListingsGetCall) Fields(s ...googleapi.Field) *EditsListingsGetCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // IfNoneMatch sets the optional parameter which makes the operation // fail if the object's ETag matches the given value. This is useful for // getting updates only after the object has changed since the last // request. Use googleapi.IsNotModified to check whether the response // error from Do is the result of In-None-Match. func (c *EditsListingsGetCall) IfNoneMatch(entityTag string) *EditsListingsGetCall { c.ifNoneMatch_ = entityTag return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *EditsListingsGetCall) Context(ctx context.Context) *EditsListingsGetCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsListingsGetCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsListingsGetCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) if c.ifNoneMatch_ != "" { reqHeaders.Set("If-None-Match", c.ifNoneMatch_) } var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}/listings/{language}") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("GET", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, "language": c.language, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.listings.get" call. // Exactly one of *Listing or error will be non-nil. Any non-2xx status // code is an error. Response headers are in either // *Listing.ServerResponse.Header or (if a response was returned at all) // in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to // check whether the returned error was because http.StatusNotModified // was returned. func (c *EditsListingsGetCall) Do(opts ...googleapi.CallOption) (*Listing, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &Listing{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Fetches information about a localized store listing.", // "httpMethod": "GET", // "id": "androidpublisher.edits.listings.get", // "parameterOrder": [ // "packageName", // "editId", // "language" // ], // "parameters": { // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "language": { // "description": "The language code (a BCP-47 language tag) of the localized listing to read or modify. For example, to select Austrian German, pass \"de-AT\".", // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}/listings/{language}", // "response": { // "$ref": "Listing" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.edits.listings.list": type EditsListingsListCall struct { s *Service packageNameid string editId string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // List: Returns all of the localized store listings attached to this // edit. func (r *EditsListingsService) List(packageNameid string, editId string) *EditsListingsListCall { c := &EditsListingsListCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsListingsListCall) Fields(s ...googleapi.Field) *EditsListingsListCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // IfNoneMatch sets the optional parameter which makes the operation // fail if the object's ETag matches the given value. This is useful for // getting updates only after the object has changed since the last // request. Use googleapi.IsNotModified to check whether the response // error from Do is the result of In-None-Match. func (c *EditsListingsListCall) IfNoneMatch(entityTag string) *EditsListingsListCall { c.ifNoneMatch_ = entityTag return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *EditsListingsListCall) Context(ctx context.Context) *EditsListingsListCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsListingsListCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsListingsListCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) if c.ifNoneMatch_ != "" { reqHeaders.Set("If-None-Match", c.ifNoneMatch_) } var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}/listings") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("GET", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.listings.list" call. // Exactly one of *ListingsListResponse or error will be non-nil. Any // non-2xx status code is an error. Response headers are in either // *ListingsListResponse.ServerResponse.Header or (if a response was // returned at all) in error.(*googleapi.Error).Header. Use // googleapi.IsNotModified to check whether the returned error was // because http.StatusNotModified was returned. func (c *EditsListingsListCall) Do(opts ...googleapi.CallOption) (*ListingsListResponse, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &ListingsListResponse{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Returns all of the localized store listings attached to this edit.", // "httpMethod": "GET", // "id": "androidpublisher.edits.listings.list", // "parameterOrder": [ // "packageName", // "editId" // ], // "parameters": { // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}/listings", // "response": { // "$ref": "ListingsListResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.edits.listings.patch": type EditsListingsPatchCall struct { s *Service packageNameid string editId string language string listing *Listing urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Patch: Creates or updates a localized store listing. This method // supports patch semantics. func (r *EditsListingsService) Patch(packageNameid string, editId string, language string, listing *Listing) *EditsListingsPatchCall { c := &EditsListingsPatchCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId c.language = language c.listing = listing return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsListingsPatchCall) Fields(s ...googleapi.Field) *EditsListingsPatchCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *EditsListingsPatchCall) Context(ctx context.Context) *EditsListingsPatchCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsListingsPatchCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsListingsPatchCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil body, err := googleapi.WithoutDataWrapper.JSONReader(c.listing) if err != nil { return nil, err } reqHeaders.Set("Content-Type", "application/json") c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}/listings/{language}") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("PATCH", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, "language": c.language, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.listings.patch" call. // Exactly one of *Listing or error will be non-nil. Any non-2xx status // code is an error. Response headers are in either // *Listing.ServerResponse.Header or (if a response was returned at all) // in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to // check whether the returned error was because http.StatusNotModified // was returned. func (c *EditsListingsPatchCall) Do(opts ...googleapi.CallOption) (*Listing, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &Listing{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Creates or updates a localized store listing. This method supports patch semantics.", // "httpMethod": "PATCH", // "id": "androidpublisher.edits.listings.patch", // "parameterOrder": [ // "packageName", // "editId", // "language" // ], // "parameters": { // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "language": { // "description": "The language code (a BCP-47 language tag) of the localized listing to read or modify. For example, to select Austrian German, pass \"de-AT\".", // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}/listings/{language}", // "request": { // "$ref": "Listing" // }, // "response": { // "$ref": "Listing" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.edits.listings.update": type EditsListingsUpdateCall struct { s *Service packageNameid string editId string language string listing *Listing urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Update: Creates or updates a localized store listing. func (r *EditsListingsService) Update(packageNameid string, editId string, language string, listing *Listing) *EditsListingsUpdateCall { c := &EditsListingsUpdateCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId c.language = language c.listing = listing return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsListingsUpdateCall) Fields(s ...googleapi.Field) *EditsListingsUpdateCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *EditsListingsUpdateCall) Context(ctx context.Context) *EditsListingsUpdateCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsListingsUpdateCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsListingsUpdateCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil body, err := googleapi.WithoutDataWrapper.JSONReader(c.listing) if err != nil { return nil, err } reqHeaders.Set("Content-Type", "application/json") c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}/listings/{language}") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("PUT", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, "language": c.language, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.listings.update" call. // Exactly one of *Listing or error will be non-nil. Any non-2xx status // code is an error. Response headers are in either // *Listing.ServerResponse.Header or (if a response was returned at all) // in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to // check whether the returned error was because http.StatusNotModified // was returned. func (c *EditsListingsUpdateCall) Do(opts ...googleapi.CallOption) (*Listing, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &Listing{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Creates or updates a localized store listing.", // "httpMethod": "PUT", // "id": "androidpublisher.edits.listings.update", // "parameterOrder": [ // "packageName", // "editId", // "language" // ], // "parameters": { // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "language": { // "description": "The language code (a BCP-47 language tag) of the localized listing to read or modify. For example, to select Austrian German, pass \"de-AT\".", // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}/listings/{language}", // "request": { // "$ref": "Listing" // }, // "response": { // "$ref": "Listing" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.edits.testers.get": type EditsTestersGetCall struct { s *Service packageNameid string editId string track string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // Get: func (r *EditsTestersService) Get(packageNameid string, editId string, track string) *EditsTestersGetCall { c := &EditsTestersGetCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId c.track = track return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsTestersGetCall) Fields(s ...googleapi.Field) *EditsTestersGetCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // IfNoneMatch sets the optional parameter which makes the operation // fail if the object's ETag matches the given value. This is useful for // getting updates only after the object has changed since the last // request. Use googleapi.IsNotModified to check whether the response // error from Do is the result of In-None-Match. func (c *EditsTestersGetCall) IfNoneMatch(entityTag string) *EditsTestersGetCall { c.ifNoneMatch_ = entityTag return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *EditsTestersGetCall) Context(ctx context.Context) *EditsTestersGetCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsTestersGetCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsTestersGetCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) if c.ifNoneMatch_ != "" { reqHeaders.Set("If-None-Match", c.ifNoneMatch_) } var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}/testers/{track}") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("GET", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, "track": c.track, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.testers.get" call. // Exactly one of *Testers or error will be non-nil. Any non-2xx status // code is an error. Response headers are in either // *Testers.ServerResponse.Header or (if a response was returned at all) // in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to // check whether the returned error was because http.StatusNotModified // was returned. func (c *EditsTestersGetCall) Do(opts ...googleapi.CallOption) (*Testers, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &Testers{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "httpMethod": "GET", // "id": "androidpublisher.edits.testers.get", // "parameterOrder": [ // "packageName", // "editId", // "track" // ], // "parameters": { // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // }, // "track": { // "description": "The track to read or modify. Acceptable values are: \"alpha\", \"beta\", \"production\", \"rollout\" or \"internal\".", // "location": "path", // "pattern": "(alpha|beta|production|rollout|internal)", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}/testers/{track}", // "response": { // "$ref": "Testers" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.edits.testers.patch": type EditsTestersPatchCall struct { s *Service packageNameid string editId string track string testers *Testers urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Patch: func (r *EditsTestersService) Patch(packageNameid string, editId string, track string, testers *Testers) *EditsTestersPatchCall { c := &EditsTestersPatchCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId c.track = track c.testers = testers return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsTestersPatchCall) Fields(s ...googleapi.Field) *EditsTestersPatchCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *EditsTestersPatchCall) Context(ctx context.Context) *EditsTestersPatchCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsTestersPatchCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsTestersPatchCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil body, err := googleapi.WithoutDataWrapper.JSONReader(c.testers) if err != nil { return nil, err } reqHeaders.Set("Content-Type", "application/json") c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}/testers/{track}") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("PATCH", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, "track": c.track, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.testers.patch" call. // Exactly one of *Testers or error will be non-nil. Any non-2xx status // code is an error. Response headers are in either // *Testers.ServerResponse.Header or (if a response was returned at all) // in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to // check whether the returned error was because http.StatusNotModified // was returned. func (c *EditsTestersPatchCall) Do(opts ...googleapi.CallOption) (*Testers, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &Testers{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "httpMethod": "PATCH", // "id": "androidpublisher.edits.testers.patch", // "parameterOrder": [ // "packageName", // "editId", // "track" // ], // "parameters": { // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // }, // "track": { // "description": "The track to read or modify. Acceptable values are: \"alpha\", \"beta\", \"production\", \"rollout\" or \"internal\".", // "location": "path", // "pattern": "(alpha|beta|production|rollout|internal)", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}/testers/{track}", // "request": { // "$ref": "Testers" // }, // "response": { // "$ref": "Testers" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.edits.testers.update": type EditsTestersUpdateCall struct { s *Service packageNameid string editId string track string testers *Testers urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Update: func (r *EditsTestersService) Update(packageNameid string, editId string, track string, testers *Testers) *EditsTestersUpdateCall { c := &EditsTestersUpdateCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId c.track = track c.testers = testers return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsTestersUpdateCall) Fields(s ...googleapi.Field) *EditsTestersUpdateCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *EditsTestersUpdateCall) Context(ctx context.Context) *EditsTestersUpdateCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsTestersUpdateCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsTestersUpdateCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil body, err := googleapi.WithoutDataWrapper.JSONReader(c.testers) if err != nil { return nil, err } reqHeaders.Set("Content-Type", "application/json") c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}/testers/{track}") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("PUT", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, "track": c.track, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.testers.update" call. // Exactly one of *Testers or error will be non-nil. Any non-2xx status // code is an error. Response headers are in either // *Testers.ServerResponse.Header or (if a response was returned at all) // in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to // check whether the returned error was because http.StatusNotModified // was returned. func (c *EditsTestersUpdateCall) Do(opts ...googleapi.CallOption) (*Testers, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &Testers{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "httpMethod": "PUT", // "id": "androidpublisher.edits.testers.update", // "parameterOrder": [ // "packageName", // "editId", // "track" // ], // "parameters": { // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // }, // "track": { // "description": "The track to read or modify. Acceptable values are: \"alpha\", \"beta\", \"production\", \"rollout\" or \"internal\".", // "location": "path", // "pattern": "(alpha|beta|production|rollout|internal)", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}/testers/{track}", // "request": { // "$ref": "Testers" // }, // "response": { // "$ref": "Testers" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.edits.tracks.get": type EditsTracksGetCall struct { s *Service packageNameid string editId string track string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // Get: Fetches the track configuration for the specified track type. // Includes the APK version codes that are in this track. func (r *EditsTracksService) Get(packageNameid string, editId string, track string) *EditsTracksGetCall { c := &EditsTracksGetCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId c.track = track return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsTracksGetCall) Fields(s ...googleapi.Field) *EditsTracksGetCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // IfNoneMatch sets the optional parameter which makes the operation // fail if the object's ETag matches the given value. This is useful for // getting updates only after the object has changed since the last // request. Use googleapi.IsNotModified to check whether the response // error from Do is the result of In-None-Match. func (c *EditsTracksGetCall) IfNoneMatch(entityTag string) *EditsTracksGetCall { c.ifNoneMatch_ = entityTag return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *EditsTracksGetCall) Context(ctx context.Context) *EditsTracksGetCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsTracksGetCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsTracksGetCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) if c.ifNoneMatch_ != "" { reqHeaders.Set("If-None-Match", c.ifNoneMatch_) } var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}/tracks/{track}") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("GET", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, "track": c.track, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.tracks.get" call. // Exactly one of *Track or error will be non-nil. Any non-2xx status // code is an error. Response headers are in either // *Track.ServerResponse.Header or (if a response was returned at all) // in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to // check whether the returned error was because http.StatusNotModified // was returned. func (c *EditsTracksGetCall) Do(opts ...googleapi.CallOption) (*Track, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &Track{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Fetches the track configuration for the specified track type. Includes the APK version codes that are in this track.", // "httpMethod": "GET", // "id": "androidpublisher.edits.tracks.get", // "parameterOrder": [ // "packageName", // "editId", // "track" // ], // "parameters": { // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // }, // "track": { // "description": "The track to read or modify.", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}/tracks/{track}", // "response": { // "$ref": "Track" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.edits.tracks.list": type EditsTracksListCall struct { s *Service packageNameid string editId string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // List: Lists all the track configurations for this edit. func (r *EditsTracksService) List(packageNameid string, editId string) *EditsTracksListCall { c := &EditsTracksListCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsTracksListCall) Fields(s ...googleapi.Field) *EditsTracksListCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // IfNoneMatch sets the optional parameter which makes the operation // fail if the object's ETag matches the given value. This is useful for // getting updates only after the object has changed since the last // request. Use googleapi.IsNotModified to check whether the response // error from Do is the result of In-None-Match. func (c *EditsTracksListCall) IfNoneMatch(entityTag string) *EditsTracksListCall { c.ifNoneMatch_ = entityTag return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *EditsTracksListCall) Context(ctx context.Context) *EditsTracksListCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsTracksListCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsTracksListCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) if c.ifNoneMatch_ != "" { reqHeaders.Set("If-None-Match", c.ifNoneMatch_) } var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}/tracks") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("GET", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.tracks.list" call. // Exactly one of *TracksListResponse or error will be non-nil. Any // non-2xx status code is an error. Response headers are in either // *TracksListResponse.ServerResponse.Header or (if a response was // returned at all) in error.(*googleapi.Error).Header. Use // googleapi.IsNotModified to check whether the returned error was // because http.StatusNotModified was returned. func (c *EditsTracksListCall) Do(opts ...googleapi.CallOption) (*TracksListResponse, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &TracksListResponse{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Lists all the track configurations for this edit.", // "httpMethod": "GET", // "id": "androidpublisher.edits.tracks.list", // "parameterOrder": [ // "packageName", // "editId" // ], // "parameters": { // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}/tracks", // "response": { // "$ref": "TracksListResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.edits.tracks.patch": type EditsTracksPatchCall struct { s *Service packageNameid string editId string track string track2 *Track urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Patch: Updates the track configuration for the specified track type. // When halted, the rollout track cannot be updated without adding new // APKs, and adding new APKs will cause it to resume. This method // supports patch semantics. func (r *EditsTracksService) Patch(packageNameid string, editId string, track string, track2 *Track) *EditsTracksPatchCall { c := &EditsTracksPatchCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId c.track = track c.track2 = track2 return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsTracksPatchCall) Fields(s ...googleapi.Field) *EditsTracksPatchCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *EditsTracksPatchCall) Context(ctx context.Context) *EditsTracksPatchCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsTracksPatchCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsTracksPatchCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil body, err := googleapi.WithoutDataWrapper.JSONReader(c.track2) if err != nil { return nil, err } reqHeaders.Set("Content-Type", "application/json") c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}/tracks/{track}") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("PATCH", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, "track": c.track, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.tracks.patch" call. // Exactly one of *Track or error will be non-nil. Any non-2xx status // code is an error. Response headers are in either // *Track.ServerResponse.Header or (if a response was returned at all) // in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to // check whether the returned error was because http.StatusNotModified // was returned. func (c *EditsTracksPatchCall) Do(opts ...googleapi.CallOption) (*Track, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &Track{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Updates the track configuration for the specified track type. When halted, the rollout track cannot be updated without adding new APKs, and adding new APKs will cause it to resume. This method supports patch semantics.", // "httpMethod": "PATCH", // "id": "androidpublisher.edits.tracks.patch", // "parameterOrder": [ // "packageName", // "editId", // "track" // ], // "parameters": { // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // }, // "track": { // "description": "The track to read or modify.", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}/tracks/{track}", // "request": { // "$ref": "Track" // }, // "response": { // "$ref": "Track" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.edits.tracks.update": type EditsTracksUpdateCall struct { s *Service packageNameid string editId string track string track2 *Track urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Update: Updates the track configuration for the specified track type. // When halted, the rollout track cannot be updated without adding new // APKs, and adding new APKs will cause it to resume. func (r *EditsTracksService) Update(packageNameid string, editId string, track string, track2 *Track) *EditsTracksUpdateCall { c := &EditsTracksUpdateCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.editId = editId c.track = track c.track2 = track2 return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *EditsTracksUpdateCall) Fields(s ...googleapi.Field) *EditsTracksUpdateCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *EditsTracksUpdateCall) Context(ctx context.Context) *EditsTracksUpdateCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *EditsTracksUpdateCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *EditsTracksUpdateCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil body, err := googleapi.WithoutDataWrapper.JSONReader(c.track2) if err != nil { return nil, err } reqHeaders.Set("Content-Type", "application/json") c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/edits/{editId}/tracks/{track}") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("PUT", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "editId": c.editId, "track": c.track, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.edits.tracks.update" call. // Exactly one of *Track or error will be non-nil. Any non-2xx status // code is an error. Response headers are in either // *Track.ServerResponse.Header or (if a response was returned at all) // in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to // check whether the returned error was because http.StatusNotModified // was returned. func (c *EditsTracksUpdateCall) Do(opts ...googleapi.CallOption) (*Track, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &Track{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Updates the track configuration for the specified track type. When halted, the rollout track cannot be updated without adding new APKs, and adding new APKs will cause it to resume.", // "httpMethod": "PUT", // "id": "androidpublisher.edits.tracks.update", // "parameterOrder": [ // "packageName", // "editId", // "track" // ], // "parameters": { // "editId": { // "description": "Unique identifier for this edit.", // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "Unique identifier for the Android app that is being updated; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // }, // "track": { // "description": "The track to read or modify.", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/edits/{editId}/tracks/{track}", // "request": { // "$ref": "Track" // }, // "response": { // "$ref": "Track" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.inappproducts.delete": type InappproductsDeleteCall struct { s *Service packageNameid string skuid string urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Delete: Delete an in-app product for an app. func (r *InappproductsService) Delete(packageNameid string, skuid string) *InappproductsDeleteCall { c := &InappproductsDeleteCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.skuid = skuid return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *InappproductsDeleteCall) Fields(s ...googleapi.Field) *InappproductsDeleteCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *InappproductsDeleteCall) Context(ctx context.Context) *InappproductsDeleteCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *InappproductsDeleteCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *InappproductsDeleteCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/inappproducts/{sku}") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("DELETE", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "sku": c.skuid, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.inappproducts.delete" call. func (c *InappproductsDeleteCall) Do(opts ...googleapi.CallOption) error { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if err != nil { return err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return err } return nil // { // "description": "Delete an in-app product for an app.", // "httpMethod": "DELETE", // "id": "androidpublisher.inappproducts.delete", // "parameterOrder": [ // "packageName", // "sku" // ], // "parameters": { // "packageName": { // "description": "Unique identifier for the Android app with the in-app product; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // }, // "sku": { // "description": "Unique identifier for the in-app product.", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/inappproducts/{sku}", // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.inappproducts.get": type InappproductsGetCall struct { s *Service packageName string skuid string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // Get: Returns information about the in-app product specified. func (r *InappproductsService) Get(packageName string, skuid string) *InappproductsGetCall { c := &InappproductsGetCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageName = packageName c.skuid = skuid return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *InappproductsGetCall) Fields(s ...googleapi.Field) *InappproductsGetCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // IfNoneMatch sets the optional parameter which makes the operation // fail if the object's ETag matches the given value. This is useful for // getting updates only after the object has changed since the last // request. Use googleapi.IsNotModified to check whether the response // error from Do is the result of In-None-Match. func (c *InappproductsGetCall) IfNoneMatch(entityTag string) *InappproductsGetCall { c.ifNoneMatch_ = entityTag return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *InappproductsGetCall) Context(ctx context.Context) *InappproductsGetCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *InappproductsGetCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *InappproductsGetCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) if c.ifNoneMatch_ != "" { reqHeaders.Set("If-None-Match", c.ifNoneMatch_) } var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/inappproducts/{sku}") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("GET", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageName, "sku": c.skuid, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.inappproducts.get" call. // Exactly one of *InAppProduct or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *InAppProduct.ServerResponse.Header or (if a response was returned at // all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified // to check whether the returned error was because // http.StatusNotModified was returned. func (c *InappproductsGetCall) Do(opts ...googleapi.CallOption) (*InAppProduct, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &InAppProduct{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Returns information about the in-app product specified.", // "httpMethod": "GET", // "id": "androidpublisher.inappproducts.get", // "parameterOrder": [ // "packageName", // "sku" // ], // "parameters": { // "packageName": { // "location": "path", // "required": true, // "type": "string" // }, // "sku": { // "description": "Unique identifier for the in-app product.", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/inappproducts/{sku}", // "response": { // "$ref": "InAppProduct" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.inappproducts.insert": type InappproductsInsertCall struct { s *Service packageNameid string inappproduct *InAppProduct urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Insert: Creates a new in-app product for an app. func (r *InappproductsService) Insert(packageNameid string, inappproduct *InAppProduct) *InappproductsInsertCall { c := &InappproductsInsertCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.inappproduct = inappproduct return c } // AutoConvertMissingPrices sets the optional parameter // "autoConvertMissingPrices": If true the prices for all regions // targeted by the parent app that don't have a price specified for this // in-app product will be auto converted to the target currency based on // the default price. Defaults to false. func (c *InappproductsInsertCall) AutoConvertMissingPrices(autoConvertMissingPrices bool) *InappproductsInsertCall { c.urlParams_.Set("autoConvertMissingPrices", fmt.Sprint(autoConvertMissingPrices)) return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *InappproductsInsertCall) Fields(s ...googleapi.Field) *InappproductsInsertCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *InappproductsInsertCall) Context(ctx context.Context) *InappproductsInsertCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *InappproductsInsertCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *InappproductsInsertCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil body, err := googleapi.WithoutDataWrapper.JSONReader(c.inappproduct) if err != nil { return nil, err } reqHeaders.Set("Content-Type", "application/json") c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/inappproducts") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.inappproducts.insert" call. // Exactly one of *InAppProduct or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *InAppProduct.ServerResponse.Header or (if a response was returned at // all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified // to check whether the returned error was because // http.StatusNotModified was returned. func (c *InappproductsInsertCall) Do(opts ...googleapi.CallOption) (*InAppProduct, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &InAppProduct{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Creates a new in-app product for an app.", // "httpMethod": "POST", // "id": "androidpublisher.inappproducts.insert", // "parameterOrder": [ // "packageName" // ], // "parameters": { // "autoConvertMissingPrices": { // "description": "If true the prices for all regions targeted by the parent app that don't have a price specified for this in-app product will be auto converted to the target currency based on the default price. Defaults to false.", // "location": "query", // "type": "boolean" // }, // "packageName": { // "description": "Unique identifier for the Android app; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/inappproducts", // "request": { // "$ref": "InAppProduct" // }, // "response": { // "$ref": "InAppProduct" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.inappproducts.list": type InappproductsListCall struct { s *Service packageNameid string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // List: List all the in-app products for an Android app, both // subscriptions and managed in-app products.. func (r *InappproductsService) List(packageNameid string) *InappproductsListCall { c := &InappproductsListCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid return c } // MaxResults sets the optional parameter "maxResults": func (c *InappproductsListCall) MaxResults(maxResults int64) *InappproductsListCall { c.urlParams_.Set("maxResults", fmt.Sprint(maxResults)) return c } // StartIndex sets the optional parameter "startIndex": func (c *InappproductsListCall) StartIndex(startIndex int64) *InappproductsListCall { c.urlParams_.Set("startIndex", fmt.Sprint(startIndex)) return c } // Token sets the optional parameter "token": func (c *InappproductsListCall) Token(token string) *InappproductsListCall { c.urlParams_.Set("token", token) return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *InappproductsListCall) Fields(s ...googleapi.Field) *InappproductsListCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // IfNoneMatch sets the optional parameter which makes the operation // fail if the object's ETag matches the given value. This is useful for // getting updates only after the object has changed since the last // request. Use googleapi.IsNotModified to check whether the response // error from Do is the result of In-None-Match. func (c *InappproductsListCall) IfNoneMatch(entityTag string) *InappproductsListCall { c.ifNoneMatch_ = entityTag return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *InappproductsListCall) Context(ctx context.Context) *InappproductsListCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *InappproductsListCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *InappproductsListCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) if c.ifNoneMatch_ != "" { reqHeaders.Set("If-None-Match", c.ifNoneMatch_) } var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/inappproducts") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("GET", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.inappproducts.list" call. // Exactly one of *InappproductsListResponse or error will be non-nil. // Any non-2xx status code is an error. Response headers are in either // *InappproductsListResponse.ServerResponse.Header or (if a response // was returned at all) in error.(*googleapi.Error).Header. Use // googleapi.IsNotModified to check whether the returned error was // because http.StatusNotModified was returned. func (c *InappproductsListCall) Do(opts ...googleapi.CallOption) (*InappproductsListResponse, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &InappproductsListResponse{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "List all the in-app products for an Android app, both subscriptions and managed in-app products..", // "httpMethod": "GET", // "id": "androidpublisher.inappproducts.list", // "parameterOrder": [ // "packageName" // ], // "parameters": { // "maxResults": { // "format": "uint32", // "location": "query", // "type": "integer" // }, // "packageName": { // "description": "Unique identifier for the Android app with in-app products; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // }, // "startIndex": { // "format": "uint32", // "location": "query", // "type": "integer" // }, // "token": { // "location": "query", // "type": "string" // } // }, // "path": "{packageName}/inappproducts", // "response": { // "$ref": "InappproductsListResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.inappproducts.patch": type InappproductsPatchCall struct { s *Service packageNameid string skuid string inappproduct *InAppProduct urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Patch: Updates the details of an in-app product. This method supports // patch semantics. func (r *InappproductsService) Patch(packageNameid string, skuid string, inappproduct *InAppProduct) *InappproductsPatchCall { c := &InappproductsPatchCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.skuid = skuid c.inappproduct = inappproduct return c } // AutoConvertMissingPrices sets the optional parameter // "autoConvertMissingPrices": If true the prices for all regions // targeted by the parent app that don't have a price specified for this // in-app product will be auto converted to the target currency based on // the default price. Defaults to false. func (c *InappproductsPatchCall) AutoConvertMissingPrices(autoConvertMissingPrices bool) *InappproductsPatchCall { c.urlParams_.Set("autoConvertMissingPrices", fmt.Sprint(autoConvertMissingPrices)) return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *InappproductsPatchCall) Fields(s ...googleapi.Field) *InappproductsPatchCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *InappproductsPatchCall) Context(ctx context.Context) *InappproductsPatchCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *InappproductsPatchCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *InappproductsPatchCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil body, err := googleapi.WithoutDataWrapper.JSONReader(c.inappproduct) if err != nil { return nil, err } reqHeaders.Set("Content-Type", "application/json") c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/inappproducts/{sku}") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("PATCH", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "sku": c.skuid, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.inappproducts.patch" call. // Exactly one of *InAppProduct or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *InAppProduct.ServerResponse.Header or (if a response was returned at // all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified // to check whether the returned error was because // http.StatusNotModified was returned. func (c *InappproductsPatchCall) Do(opts ...googleapi.CallOption) (*InAppProduct, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &InAppProduct{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Updates the details of an in-app product. This method supports patch semantics.", // "httpMethod": "PATCH", // "id": "androidpublisher.inappproducts.patch", // "parameterOrder": [ // "packageName", // "sku" // ], // "parameters": { // "autoConvertMissingPrices": { // "description": "If true the prices for all regions targeted by the parent app that don't have a price specified for this in-app product will be auto converted to the target currency based on the default price. Defaults to false.", // "location": "query", // "type": "boolean" // }, // "packageName": { // "description": "Unique identifier for the Android app with the in-app product; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // }, // "sku": { // "description": "Unique identifier for the in-app product.", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/inappproducts/{sku}", // "request": { // "$ref": "InAppProduct" // }, // "response": { // "$ref": "InAppProduct" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.inappproducts.update": type InappproductsUpdateCall struct { s *Service packageNameid string skuid string inappproduct *InAppProduct urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Update: Updates the details of an in-app product. func (r *InappproductsService) Update(packageNameid string, skuid string, inappproduct *InAppProduct) *InappproductsUpdateCall { c := &InappproductsUpdateCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.skuid = skuid c.inappproduct = inappproduct return c } // AutoConvertMissingPrices sets the optional parameter // "autoConvertMissingPrices": If true the prices for all regions // targeted by the parent app that don't have a price specified for this // in-app product will be auto converted to the target currency based on // the default price. Defaults to false. func (c *InappproductsUpdateCall) AutoConvertMissingPrices(autoConvertMissingPrices bool) *InappproductsUpdateCall { c.urlParams_.Set("autoConvertMissingPrices", fmt.Sprint(autoConvertMissingPrices)) return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *InappproductsUpdateCall) Fields(s ...googleapi.Field) *InappproductsUpdateCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *InappproductsUpdateCall) Context(ctx context.Context) *InappproductsUpdateCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *InappproductsUpdateCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *InappproductsUpdateCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil body, err := googleapi.WithoutDataWrapper.JSONReader(c.inappproduct) if err != nil { return nil, err } reqHeaders.Set("Content-Type", "application/json") c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/inappproducts/{sku}") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("PUT", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "sku": c.skuid, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.inappproducts.update" call. // Exactly one of *InAppProduct or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *InAppProduct.ServerResponse.Header or (if a response was returned at // all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified // to check whether the returned error was because // http.StatusNotModified was returned. func (c *InappproductsUpdateCall) Do(opts ...googleapi.CallOption) (*InAppProduct, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &InAppProduct{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Updates the details of an in-app product.", // "httpMethod": "PUT", // "id": "androidpublisher.inappproducts.update", // "parameterOrder": [ // "packageName", // "sku" // ], // "parameters": { // "autoConvertMissingPrices": { // "description": "If true the prices for all regions targeted by the parent app that don't have a price specified for this in-app product will be auto converted to the target currency based on the default price. Defaults to false.", // "location": "query", // "type": "boolean" // }, // "packageName": { // "description": "Unique identifier for the Android app with the in-app product; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // }, // "sku": { // "description": "Unique identifier for the in-app product.", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/inappproducts/{sku}", // "request": { // "$ref": "InAppProduct" // }, // "response": { // "$ref": "InAppProduct" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.orders.refund": type OrdersRefundCall struct { s *Service packageName string orderId string urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Refund: Refund a user's subscription or in-app purchase order. func (r *OrdersService) Refund(packageName string, orderId string) *OrdersRefundCall { c := &OrdersRefundCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageName = packageName c.orderId = orderId return c } // Revoke sets the optional parameter "revoke": Whether to revoke the // purchased item. If set to true, access to the subscription or in-app // item will be terminated immediately. If the item is a recurring // subscription, all future payments will also be terminated. Consumed // in-app items need to be handled by developer's app. (optional) func (c *OrdersRefundCall) Revoke(revoke bool) *OrdersRefundCall { c.urlParams_.Set("revoke", fmt.Sprint(revoke)) return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *OrdersRefundCall) Fields(s ...googleapi.Field) *OrdersRefundCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *OrdersRefundCall) Context(ctx context.Context) *OrdersRefundCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *OrdersRefundCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *OrdersRefundCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/orders/{orderId}:refund") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageName, "orderId": c.orderId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.orders.refund" call. func (c *OrdersRefundCall) Do(opts ...googleapi.CallOption) error { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if err != nil { return err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return err } return nil // { // "description": "Refund a user's subscription or in-app purchase order.", // "httpMethod": "POST", // "id": "androidpublisher.orders.refund", // "parameterOrder": [ // "packageName", // "orderId" // ], // "parameters": { // "orderId": { // "description": "The order ID provided to the user when the subscription or in-app order was purchased.", // "location": "path", // "required": true, // "type": "string" // }, // "packageName": { // "description": "The package name of the application for which this subscription or in-app item was purchased (for example, 'com.some.thing').", // "location": "path", // "required": true, // "type": "string" // }, // "revoke": { // "description": "Whether to revoke the purchased item. If set to true, access to the subscription or in-app item will be terminated immediately. If the item is a recurring subscription, all future payments will also be terminated. Consumed in-app items need to be handled by developer's app. (optional)", // "location": "query", // "type": "boolean" // } // }, // "path": "{packageName}/orders/{orderId}:refund", // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.purchases.products.get": type PurchasesProductsGetCall struct { s *Service packageName string productId string token string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // Get: Checks the purchase and consumption status of an inapp item. func (r *PurchasesProductsService) Get(packageName string, productId string, token string) *PurchasesProductsGetCall { c := &PurchasesProductsGetCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageName = packageName c.productId = productId c.token = token return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *PurchasesProductsGetCall) Fields(s ...googleapi.Field) *PurchasesProductsGetCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // IfNoneMatch sets the optional parameter which makes the operation // fail if the object's ETag matches the given value. This is useful for // getting updates only after the object has changed since the last // request. Use googleapi.IsNotModified to check whether the response // error from Do is the result of In-None-Match. func (c *PurchasesProductsGetCall) IfNoneMatch(entityTag string) *PurchasesProductsGetCall { c.ifNoneMatch_ = entityTag return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *PurchasesProductsGetCall) Context(ctx context.Context) *PurchasesProductsGetCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *PurchasesProductsGetCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *PurchasesProductsGetCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) if c.ifNoneMatch_ != "" { reqHeaders.Set("If-None-Match", c.ifNoneMatch_) } var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/purchases/products/{productId}/tokens/{token}") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("GET", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageName, "productId": c.productId, "token": c.token, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.purchases.products.get" call. // Exactly one of *ProductPurchase or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *ProductPurchase.ServerResponse.Header or (if a response was returned // at all) in error.(*googleapi.Error).Header. Use // googleapi.IsNotModified to check whether the returned error was // because http.StatusNotModified was returned. func (c *PurchasesProductsGetCall) Do(opts ...googleapi.CallOption) (*ProductPurchase, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &ProductPurchase{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Checks the purchase and consumption status of an inapp item.", // "httpMethod": "GET", // "id": "androidpublisher.purchases.products.get", // "parameterOrder": [ // "packageName", // "productId", // "token" // ], // "parameters": { // "packageName": { // "description": "The package name of the application the inapp product was sold in (for example, 'com.some.thing').", // "location": "path", // "required": true, // "type": "string" // }, // "productId": { // "description": "The inapp product SKU (for example, 'com.some.thing.inapp1').", // "location": "path", // "required": true, // "type": "string" // }, // "token": { // "description": "The token provided to the user's device when the inapp product was purchased.", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/purchases/products/{productId}/tokens/{token}", // "response": { // "$ref": "ProductPurchase" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.purchases.subscriptions.cancel": type PurchasesSubscriptionsCancelCall struct { s *Service packageName string subscriptionId string token string urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Cancel: Cancels a user's subscription purchase. The subscription // remains valid until its expiration time. func (r *PurchasesSubscriptionsService) Cancel(packageName string, subscriptionId string, token string) *PurchasesSubscriptionsCancelCall { c := &PurchasesSubscriptionsCancelCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageName = packageName c.subscriptionId = subscriptionId c.token = token return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *PurchasesSubscriptionsCancelCall) Fields(s ...googleapi.Field) *PurchasesSubscriptionsCancelCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *PurchasesSubscriptionsCancelCall) Context(ctx context.Context) *PurchasesSubscriptionsCancelCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *PurchasesSubscriptionsCancelCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *PurchasesSubscriptionsCancelCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/purchases/subscriptions/{subscriptionId}/tokens/{token}:cancel") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageName, "subscriptionId": c.subscriptionId, "token": c.token, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.purchases.subscriptions.cancel" call. func (c *PurchasesSubscriptionsCancelCall) Do(opts ...googleapi.CallOption) error { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if err != nil { return err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return err } return nil // { // "description": "Cancels a user's subscription purchase. The subscription remains valid until its expiration time.", // "httpMethod": "POST", // "id": "androidpublisher.purchases.subscriptions.cancel", // "parameterOrder": [ // "packageName", // "subscriptionId", // "token" // ], // "parameters": { // "packageName": { // "description": "The package name of the application for which this subscription was purchased (for example, 'com.some.thing').", // "location": "path", // "required": true, // "type": "string" // }, // "subscriptionId": { // "description": "The purchased subscription ID (for example, 'monthly001').", // "location": "path", // "required": true, // "type": "string" // }, // "token": { // "description": "The token provided to the user's device when the subscription was purchased.", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/purchases/subscriptions/{subscriptionId}/tokens/{token}:cancel", // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.purchases.subscriptions.defer": type PurchasesSubscriptionsDeferCall struct { s *Service packageName string subscriptionId string token string subscriptionpurchasesdeferrequest *SubscriptionPurchasesDeferRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Defer: Defers a user's subscription purchase until a specified future // expiration time. func (r *PurchasesSubscriptionsService) Defer(packageName string, subscriptionId string, token string, subscriptionpurchasesdeferrequest *SubscriptionPurchasesDeferRequest) *PurchasesSubscriptionsDeferCall { c := &PurchasesSubscriptionsDeferCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageName = packageName c.subscriptionId = subscriptionId c.token = token c.subscriptionpurchasesdeferrequest = subscriptionpurchasesdeferrequest return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *PurchasesSubscriptionsDeferCall) Fields(s ...googleapi.Field) *PurchasesSubscriptionsDeferCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *PurchasesSubscriptionsDeferCall) Context(ctx context.Context) *PurchasesSubscriptionsDeferCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *PurchasesSubscriptionsDeferCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *PurchasesSubscriptionsDeferCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil body, err := googleapi.WithoutDataWrapper.JSONReader(c.subscriptionpurchasesdeferrequest) if err != nil { return nil, err } reqHeaders.Set("Content-Type", "application/json") c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/purchases/subscriptions/{subscriptionId}/tokens/{token}:defer") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageName, "subscriptionId": c.subscriptionId, "token": c.token, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.purchases.subscriptions.defer" call. // Exactly one of *SubscriptionPurchasesDeferResponse or error will be // non-nil. Any non-2xx status code is an error. Response headers are in // either *SubscriptionPurchasesDeferResponse.ServerResponse.Header or // (if a response was returned at all) in // error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check // whether the returned error was because http.StatusNotModified was // returned. func (c *PurchasesSubscriptionsDeferCall) Do(opts ...googleapi.CallOption) (*SubscriptionPurchasesDeferResponse, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &SubscriptionPurchasesDeferResponse{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Defers a user's subscription purchase until a specified future expiration time.", // "httpMethod": "POST", // "id": "androidpublisher.purchases.subscriptions.defer", // "parameterOrder": [ // "packageName", // "subscriptionId", // "token" // ], // "parameters": { // "packageName": { // "description": "The package name of the application for which this subscription was purchased (for example, 'com.some.thing').", // "location": "path", // "required": true, // "type": "string" // }, // "subscriptionId": { // "description": "The purchased subscription ID (for example, 'monthly001').", // "location": "path", // "required": true, // "type": "string" // }, // "token": { // "description": "The token provided to the user's device when the subscription was purchased.", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/purchases/subscriptions/{subscriptionId}/tokens/{token}:defer", // "request": { // "$ref": "SubscriptionPurchasesDeferRequest" // }, // "response": { // "$ref": "SubscriptionPurchasesDeferResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.purchases.subscriptions.get": type PurchasesSubscriptionsGetCall struct { s *Service packageName string subscriptionId string token string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // Get: Checks whether a user's subscription purchase is valid and // returns its expiry time. func (r *PurchasesSubscriptionsService) Get(packageName string, subscriptionId string, token string) *PurchasesSubscriptionsGetCall { c := &PurchasesSubscriptionsGetCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageName = packageName c.subscriptionId = subscriptionId c.token = token return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *PurchasesSubscriptionsGetCall) Fields(s ...googleapi.Field) *PurchasesSubscriptionsGetCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // IfNoneMatch sets the optional parameter which makes the operation // fail if the object's ETag matches the given value. This is useful for // getting updates only after the object has changed since the last // request. Use googleapi.IsNotModified to check whether the response // error from Do is the result of In-None-Match. func (c *PurchasesSubscriptionsGetCall) IfNoneMatch(entityTag string) *PurchasesSubscriptionsGetCall { c.ifNoneMatch_ = entityTag return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *PurchasesSubscriptionsGetCall) Context(ctx context.Context) *PurchasesSubscriptionsGetCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *PurchasesSubscriptionsGetCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *PurchasesSubscriptionsGetCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) if c.ifNoneMatch_ != "" { reqHeaders.Set("If-None-Match", c.ifNoneMatch_) } var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/purchases/subscriptions/{subscriptionId}/tokens/{token}") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("GET", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageName, "subscriptionId": c.subscriptionId, "token": c.token, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.purchases.subscriptions.get" call. // Exactly one of *SubscriptionPurchase or error will be non-nil. Any // non-2xx status code is an error. Response headers are in either // *SubscriptionPurchase.ServerResponse.Header or (if a response was // returned at all) in error.(*googleapi.Error).Header. Use // googleapi.IsNotModified to check whether the returned error was // because http.StatusNotModified was returned. func (c *PurchasesSubscriptionsGetCall) Do(opts ...googleapi.CallOption) (*SubscriptionPurchase, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &SubscriptionPurchase{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Checks whether a user's subscription purchase is valid and returns its expiry time.", // "httpMethod": "GET", // "id": "androidpublisher.purchases.subscriptions.get", // "parameterOrder": [ // "packageName", // "subscriptionId", // "token" // ], // "parameters": { // "packageName": { // "description": "The package name of the application for which this subscription was purchased (for example, 'com.some.thing').", // "location": "path", // "required": true, // "type": "string" // }, // "subscriptionId": { // "description": "The purchased subscription ID (for example, 'monthly001').", // "location": "path", // "required": true, // "type": "string" // }, // "token": { // "description": "The token provided to the user's device when the subscription was purchased.", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/purchases/subscriptions/{subscriptionId}/tokens/{token}", // "response": { // "$ref": "SubscriptionPurchase" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.purchases.subscriptions.refund": type PurchasesSubscriptionsRefundCall struct { s *Service packageName string subscriptionId string token string urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Refund: Refunds a user's subscription purchase, but the subscription // remains valid until its expiration time and it will continue to // recur. func (r *PurchasesSubscriptionsService) Refund(packageName string, subscriptionId string, token string) *PurchasesSubscriptionsRefundCall { c := &PurchasesSubscriptionsRefundCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageName = packageName c.subscriptionId = subscriptionId c.token = token return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *PurchasesSubscriptionsRefundCall) Fields(s ...googleapi.Field) *PurchasesSubscriptionsRefundCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *PurchasesSubscriptionsRefundCall) Context(ctx context.Context) *PurchasesSubscriptionsRefundCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *PurchasesSubscriptionsRefundCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *PurchasesSubscriptionsRefundCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/purchases/subscriptions/{subscriptionId}/tokens/{token}:refund") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageName, "subscriptionId": c.subscriptionId, "token": c.token, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.purchases.subscriptions.refund" call. func (c *PurchasesSubscriptionsRefundCall) Do(opts ...googleapi.CallOption) error { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if err != nil { return err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return err } return nil // { // "description": "Refunds a user's subscription purchase, but the subscription remains valid until its expiration time and it will continue to recur.", // "httpMethod": "POST", // "id": "androidpublisher.purchases.subscriptions.refund", // "parameterOrder": [ // "packageName", // "subscriptionId", // "token" // ], // "parameters": { // "packageName": { // "description": "The package name of the application for which this subscription was purchased (for example, 'com.some.thing').", // "location": "path", // "required": true, // "type": "string" // }, // "subscriptionId": { // "description": "The purchased subscription ID (for example, 'monthly001').", // "location": "path", // "required": true, // "type": "string" // }, // "token": { // "description": "The token provided to the user's device when the subscription was purchased.", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/purchases/subscriptions/{subscriptionId}/tokens/{token}:refund", // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.purchases.subscriptions.revoke": type PurchasesSubscriptionsRevokeCall struct { s *Service packageName string subscriptionId string token string urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Revoke: Refunds and immediately revokes a user's subscription // purchase. Access to the subscription will be terminated immediately // and it will stop recurring. func (r *PurchasesSubscriptionsService) Revoke(packageName string, subscriptionId string, token string) *PurchasesSubscriptionsRevokeCall { c := &PurchasesSubscriptionsRevokeCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageName = packageName c.subscriptionId = subscriptionId c.token = token return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *PurchasesSubscriptionsRevokeCall) Fields(s ...googleapi.Field) *PurchasesSubscriptionsRevokeCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *PurchasesSubscriptionsRevokeCall) Context(ctx context.Context) *PurchasesSubscriptionsRevokeCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *PurchasesSubscriptionsRevokeCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *PurchasesSubscriptionsRevokeCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/purchases/subscriptions/{subscriptionId}/tokens/{token}:revoke") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageName, "subscriptionId": c.subscriptionId, "token": c.token, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.purchases.subscriptions.revoke" call. func (c *PurchasesSubscriptionsRevokeCall) Do(opts ...googleapi.CallOption) error { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if err != nil { return err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return err } return nil // { // "description": "Refunds and immediately revokes a user's subscription purchase. Access to the subscription will be terminated immediately and it will stop recurring.", // "httpMethod": "POST", // "id": "androidpublisher.purchases.subscriptions.revoke", // "parameterOrder": [ // "packageName", // "subscriptionId", // "token" // ], // "parameters": { // "packageName": { // "description": "The package name of the application for which this subscription was purchased (for example, 'com.some.thing').", // "location": "path", // "required": true, // "type": "string" // }, // "subscriptionId": { // "description": "The purchased subscription ID (for example, 'monthly001').", // "location": "path", // "required": true, // "type": "string" // }, // "token": { // "description": "The token provided to the user's device when the subscription was purchased.", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/purchases/subscriptions/{subscriptionId}/tokens/{token}:revoke", // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.purchases.voidedpurchases.list": type PurchasesVoidedpurchasesListCall struct { s *Service packageName string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // List: Lists the purchases that were canceled, refunded or // charged-back. func (r *PurchasesVoidedpurchasesService) List(packageName string) *PurchasesVoidedpurchasesListCall { c := &PurchasesVoidedpurchasesListCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageName = packageName return c } // EndTime sets the optional parameter "endTime": The time, in // milliseconds since the Epoch, of the newest voided in-app product // purchase that you want to see in the response. The value of this // parameter cannot be greater than the current time and is ignored if a // pagination token is set. Default value is current time. Note: This // filter is applied on the time at which the record is seen as voided // by our systems and not the actual voided time returned in the // response. func (c *PurchasesVoidedpurchasesListCall) EndTime(endTime int64) *PurchasesVoidedpurchasesListCall { c.urlParams_.Set("endTime", fmt.Sprint(endTime)) return c } // MaxResults sets the optional parameter "maxResults": func (c *PurchasesVoidedpurchasesListCall) MaxResults(maxResults int64) *PurchasesVoidedpurchasesListCall { c.urlParams_.Set("maxResults", fmt.Sprint(maxResults)) return c } // StartIndex sets the optional parameter "startIndex": func (c *PurchasesVoidedpurchasesListCall) StartIndex(startIndex int64) *PurchasesVoidedpurchasesListCall { c.urlParams_.Set("startIndex", fmt.Sprint(startIndex)) return c } // StartTime sets the optional parameter "startTime": The time, in // milliseconds since the Epoch, of the oldest voided in-app product // purchase that you want to see in the response. The value of this // parameter cannot be older than 30 days and is ignored if a pagination // token is set. Default value is current time minus 30 days. Note: This // filter is applied on the time at which the record is seen as voided // by our systems and not the actual voided time returned in the // response. func (c *PurchasesVoidedpurchasesListCall) StartTime(startTime int64) *PurchasesVoidedpurchasesListCall { c.urlParams_.Set("startTime", fmt.Sprint(startTime)) return c } // Token sets the optional parameter "token": func (c *PurchasesVoidedpurchasesListCall) Token(token string) *PurchasesVoidedpurchasesListCall { c.urlParams_.Set("token", token) return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *PurchasesVoidedpurchasesListCall) Fields(s ...googleapi.Field) *PurchasesVoidedpurchasesListCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // IfNoneMatch sets the optional parameter which makes the operation // fail if the object's ETag matches the given value. This is useful for // getting updates only after the object has changed since the last // request. Use googleapi.IsNotModified to check whether the response // error from Do is the result of In-None-Match. func (c *PurchasesVoidedpurchasesListCall) IfNoneMatch(entityTag string) *PurchasesVoidedpurchasesListCall { c.ifNoneMatch_ = entityTag return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *PurchasesVoidedpurchasesListCall) Context(ctx context.Context) *PurchasesVoidedpurchasesListCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *PurchasesVoidedpurchasesListCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *PurchasesVoidedpurchasesListCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) if c.ifNoneMatch_ != "" { reqHeaders.Set("If-None-Match", c.ifNoneMatch_) } var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/purchases/voidedpurchases") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("GET", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageName, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.purchases.voidedpurchases.list" call. // Exactly one of *VoidedPurchasesListResponse or error will be non-nil. // Any non-2xx status code is an error. Response headers are in either // *VoidedPurchasesListResponse.ServerResponse.Header or (if a response // was returned at all) in error.(*googleapi.Error).Header. Use // googleapi.IsNotModified to check whether the returned error was // because http.StatusNotModified was returned. func (c *PurchasesVoidedpurchasesListCall) Do(opts ...googleapi.CallOption) (*VoidedPurchasesListResponse, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &VoidedPurchasesListResponse{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Lists the purchases that were canceled, refunded or charged-back.", // "httpMethod": "GET", // "id": "androidpublisher.purchases.voidedpurchases.list", // "parameterOrder": [ // "packageName" // ], // "parameters": { // "endTime": { // "description": "The time, in milliseconds since the Epoch, of the newest voided in-app product purchase that you want to see in the response. The value of this parameter cannot be greater than the current time and is ignored if a pagination token is set. Default value is current time. Note: This filter is applied on the time at which the record is seen as voided by our systems and not the actual voided time returned in the response.", // "format": "int64", // "location": "query", // "type": "string" // }, // "maxResults": { // "format": "uint32", // "location": "query", // "type": "integer" // }, // "packageName": { // "description": "The package name of the application for which voided purchases need to be returned (for example, 'com.some.thing').", // "location": "path", // "required": true, // "type": "string" // }, // "startIndex": { // "format": "uint32", // "location": "query", // "type": "integer" // }, // "startTime": { // "description": "The time, in milliseconds since the Epoch, of the oldest voided in-app product purchase that you want to see in the response. The value of this parameter cannot be older than 30 days and is ignored if a pagination token is set. Default value is current time minus 30 days. Note: This filter is applied on the time at which the record is seen as voided by our systems and not the actual voided time returned in the response.", // "format": "int64", // "location": "query", // "type": "string" // }, // "token": { // "location": "query", // "type": "string" // } // }, // "path": "{packageName}/purchases/voidedpurchases", // "response": { // "$ref": "VoidedPurchasesListResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.reviews.get": type ReviewsGetCall struct { s *Service packageNameid string reviewId string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // Get: Returns a single review. func (r *ReviewsService) Get(packageNameid string, reviewId string) *ReviewsGetCall { c := &ReviewsGetCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.reviewId = reviewId return c } // TranslationLanguage sets the optional parameter // "translationLanguage": func (c *ReviewsGetCall) TranslationLanguage(translationLanguage string) *ReviewsGetCall { c.urlParams_.Set("translationLanguage", translationLanguage) return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *ReviewsGetCall) Fields(s ...googleapi.Field) *ReviewsGetCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // IfNoneMatch sets the optional parameter which makes the operation // fail if the object's ETag matches the given value. This is useful for // getting updates only after the object has changed since the last // request. Use googleapi.IsNotModified to check whether the response // error from Do is the result of In-None-Match. func (c *ReviewsGetCall) IfNoneMatch(entityTag string) *ReviewsGetCall { c.ifNoneMatch_ = entityTag return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *ReviewsGetCall) Context(ctx context.Context) *ReviewsGetCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *ReviewsGetCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *ReviewsGetCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) if c.ifNoneMatch_ != "" { reqHeaders.Set("If-None-Match", c.ifNoneMatch_) } var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/reviews/{reviewId}") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("GET", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "reviewId": c.reviewId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.reviews.get" call. // Exactly one of *Review or error will be non-nil. Any non-2xx status // code is an error. Response headers are in either // *Review.ServerResponse.Header or (if a response was returned at all) // in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to // check whether the returned error was because http.StatusNotModified // was returned. func (c *ReviewsGetCall) Do(opts ...googleapi.CallOption) (*Review, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &Review{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Returns a single review.", // "httpMethod": "GET", // "id": "androidpublisher.reviews.get", // "parameterOrder": [ // "packageName", // "reviewId" // ], // "parameters": { // "packageName": { // "description": "Unique identifier for the Android app for which we want reviews; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // }, // "reviewId": { // "location": "path", // "required": true, // "type": "string" // }, // "translationLanguage": { // "location": "query", // "type": "string" // } // }, // "path": "{packageName}/reviews/{reviewId}", // "response": { // "$ref": "Review" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.reviews.list": type ReviewsListCall struct { s *Service packageNameid string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // List: Returns a list of reviews. Only reviews from last week will be // returned. func (r *ReviewsService) List(packageNameid string) *ReviewsListCall { c := &ReviewsListCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid return c } // MaxResults sets the optional parameter "maxResults": func (c *ReviewsListCall) MaxResults(maxResults int64) *ReviewsListCall { c.urlParams_.Set("maxResults", fmt.Sprint(maxResults)) return c } // StartIndex sets the optional parameter "startIndex": func (c *ReviewsListCall) StartIndex(startIndex int64) *ReviewsListCall { c.urlParams_.Set("startIndex", fmt.Sprint(startIndex)) return c } // Token sets the optional parameter "token": func (c *ReviewsListCall) Token(token string) *ReviewsListCall { c.urlParams_.Set("token", token) return c } // TranslationLanguage sets the optional parameter // "translationLanguage": func (c *ReviewsListCall) TranslationLanguage(translationLanguage string) *ReviewsListCall { c.urlParams_.Set("translationLanguage", translationLanguage) return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *ReviewsListCall) Fields(s ...googleapi.Field) *ReviewsListCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // IfNoneMatch sets the optional parameter which makes the operation // fail if the object's ETag matches the given value. This is useful for // getting updates only after the object has changed since the last // request. Use googleapi.IsNotModified to check whether the response // error from Do is the result of In-None-Match. func (c *ReviewsListCall) IfNoneMatch(entityTag string) *ReviewsListCall { c.ifNoneMatch_ = entityTag return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *ReviewsListCall) Context(ctx context.Context) *ReviewsListCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *ReviewsListCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *ReviewsListCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) if c.ifNoneMatch_ != "" { reqHeaders.Set("If-None-Match", c.ifNoneMatch_) } var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/reviews") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("GET", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.reviews.list" call. // Exactly one of *ReviewsListResponse or error will be non-nil. Any // non-2xx status code is an error. Response headers are in either // *ReviewsListResponse.ServerResponse.Header or (if a response was // returned at all) in error.(*googleapi.Error).Header. Use // googleapi.IsNotModified to check whether the returned error was // because http.StatusNotModified was returned. func (c *ReviewsListCall) Do(opts ...googleapi.CallOption) (*ReviewsListResponse, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &ReviewsListResponse{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Returns a list of reviews. Only reviews from last week will be returned.", // "httpMethod": "GET", // "id": "androidpublisher.reviews.list", // "parameterOrder": [ // "packageName" // ], // "parameters": { // "maxResults": { // "format": "uint32", // "location": "query", // "type": "integer" // }, // "packageName": { // "description": "Unique identifier for the Android app for which we want reviews; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // }, // "startIndex": { // "format": "uint32", // "location": "query", // "type": "integer" // }, // "token": { // "location": "query", // "type": "string" // }, // "translationLanguage": { // "location": "query", // "type": "string" // } // }, // "path": "{packageName}/reviews", // "response": { // "$ref": "ReviewsListResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } } // method id "androidpublisher.reviews.reply": type ReviewsReplyCall struct { s *Service packageNameid string reviewId string reviewsreplyrequest *ReviewsReplyRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Reply: Reply to a single review, or update an existing reply. func (r *ReviewsService) Reply(packageNameid string, reviewId string, reviewsreplyrequest *ReviewsReplyRequest) *ReviewsReplyCall { c := &ReviewsReplyCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.packageNameid = packageNameid c.reviewId = reviewId c.reviewsreplyrequest = reviewsreplyrequest return c } // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. func (c *ReviewsReplyCall) Fields(s ...googleapi.Field) *ReviewsReplyCall { c.urlParams_.Set("fields", googleapi.CombineFields(s)) return c } // Context sets the context to be used in this call's Do method. Any // pending HTTP request will be aborted if the provided context is // canceled. func (c *ReviewsReplyCall) Context(ctx context.Context) *ReviewsReplyCall { c.ctx_ = ctx return c } // Header returns an http.Header that can be modified by the caller to // add HTTP headers to the request. func (c *ReviewsReplyCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *ReviewsReplyCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil body, err := googleapi.WithoutDataWrapper.JSONReader(c.reviewsreplyrequest) if err != nil { return nil, err } reqHeaders.Set("Content-Type", "application/json") c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "{packageName}/reviews/{reviewId}:reply") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "packageName": c.packageNameid, "reviewId": c.reviewId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "androidpublisher.reviews.reply" call. // Exactly one of *ReviewsReplyResponse or error will be non-nil. Any // non-2xx status code is an error. Response headers are in either // *ReviewsReplyResponse.ServerResponse.Header or (if a response was // returned at all) in error.(*googleapi.Error).Header. Use // googleapi.IsNotModified to check whether the returned error was // because http.StatusNotModified was returned. func (c *ReviewsReplyCall) Do(opts ...googleapi.CallOption) (*ReviewsReplyResponse, error) { gensupport.SetOptions(c.urlParams_, opts...) res, err := c.doRequest("json") if res != nil && res.StatusCode == http.StatusNotModified { if res.Body != nil { res.Body.Close() } return nil, &googleapi.Error{ Code: res.StatusCode, Header: res.Header, } } if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } ret := &ReviewsReplyResponse{ ServerResponse: googleapi.ServerResponse{ Header: res.Header, HTTPStatusCode: res.StatusCode, }, } target := &ret if err := gensupport.DecodeResponse(target, res); err != nil { return nil, err } return ret, nil // { // "description": "Reply to a single review, or update an existing reply.", // "httpMethod": "POST", // "id": "androidpublisher.reviews.reply", // "parameterOrder": [ // "packageName", // "reviewId" // ], // "parameters": { // "packageName": { // "description": "Unique identifier for the Android app for which we want reviews; for example, \"com.spiffygame\".", // "location": "path", // "required": true, // "type": "string" // }, // "reviewId": { // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{packageName}/reviews/{reviewId}:reply", // "request": { // "$ref": "ReviewsReplyRequest" // }, // "response": { // "$ref": "ReviewsReplyResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/androidpublisher" // ] // } }