Documentation ¶
Overview ¶
Package manufacturers provides access to the Manufacturer Center API.
For product documentation, see: https://developers.google.com/manufacturers/
Library status ¶
These client libraries are officially supported by Google. However, this library is considered complete and is in maintenance mode. This means that we will address critical bugs and security issues but will not add any new features.
When possible, we recommend using our newer [Cloud Client Libraries for Go](https://pkg.go.dev/cloud.google.com/go) that are still actively being worked and iterated on.
Creating a client ¶
Usage example:
import "google.golang.org/api/manufacturers/v1" ... ctx := context.Background() manufacturersService, err := manufacturers.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 google.golang.org/api/option.WithAPIKey:
manufacturersService, err := manufacturers.NewService(ctx, option.WithAPIKey("AIza..."))
To use an OAuth token (e.g., a user token obtained via a three-legged OAuth flow, use google.golang.org/api/option.WithTokenSource:
config := &oauth2.Config{...} // ... token, err := config.Exchange(ctx, ...) manufacturersService, err := manufacturers.NewService(ctx, option.WithTokenSource(config.TokenSource(ctx, token)))
See google.golang.org/api/option.ClientOption for details on options.
Index ¶
- Constants
- type AccountsLanguagesProductCertificationsDeleteCall
- func (c *AccountsLanguagesProductCertificationsDeleteCall) Context(ctx context.Context) *AccountsLanguagesProductCertificationsDeleteCall
- func (c *AccountsLanguagesProductCertificationsDeleteCall) Do(opts ...googleapi.CallOption) (*Empty, error)
- func (c *AccountsLanguagesProductCertificationsDeleteCall) Fields(s ...googleapi.Field) *AccountsLanguagesProductCertificationsDeleteCall
- func (c *AccountsLanguagesProductCertificationsDeleteCall) Header() http.Header
- type AccountsLanguagesProductCertificationsGetCall
- func (c *AccountsLanguagesProductCertificationsGetCall) Context(ctx context.Context) *AccountsLanguagesProductCertificationsGetCall
- func (c *AccountsLanguagesProductCertificationsGetCall) Do(opts ...googleapi.CallOption) (*ProductCertification, error)
- func (c *AccountsLanguagesProductCertificationsGetCall) Fields(s ...googleapi.Field) *AccountsLanguagesProductCertificationsGetCall
- func (c *AccountsLanguagesProductCertificationsGetCall) Header() http.Header
- func (c *AccountsLanguagesProductCertificationsGetCall) IfNoneMatch(entityTag string) *AccountsLanguagesProductCertificationsGetCall
- type AccountsLanguagesProductCertificationsListCall
- func (c *AccountsLanguagesProductCertificationsListCall) Context(ctx context.Context) *AccountsLanguagesProductCertificationsListCall
- func (c *AccountsLanguagesProductCertificationsListCall) Do(opts ...googleapi.CallOption) (*ListProductCertificationsResponse, error)
- func (c *AccountsLanguagesProductCertificationsListCall) Fields(s ...googleapi.Field) *AccountsLanguagesProductCertificationsListCall
- func (c *AccountsLanguagesProductCertificationsListCall) Header() http.Header
- func (c *AccountsLanguagesProductCertificationsListCall) IfNoneMatch(entityTag string) *AccountsLanguagesProductCertificationsListCall
- func (c *AccountsLanguagesProductCertificationsListCall) PageSize(pageSize int64) *AccountsLanguagesProductCertificationsListCall
- func (c *AccountsLanguagesProductCertificationsListCall) PageToken(pageToken string) *AccountsLanguagesProductCertificationsListCall
- func (c *AccountsLanguagesProductCertificationsListCall) Pages(ctx context.Context, f func(*ListProductCertificationsResponse) error) error
- type AccountsLanguagesProductCertificationsPatchCall
- func (c *AccountsLanguagesProductCertificationsPatchCall) Context(ctx context.Context) *AccountsLanguagesProductCertificationsPatchCall
- func (c *AccountsLanguagesProductCertificationsPatchCall) Do(opts ...googleapi.CallOption) (*ProductCertification, error)
- func (c *AccountsLanguagesProductCertificationsPatchCall) Fields(s ...googleapi.Field) *AccountsLanguagesProductCertificationsPatchCall
- func (c *AccountsLanguagesProductCertificationsPatchCall) Header() http.Header
- func (c *AccountsLanguagesProductCertificationsPatchCall) UpdateMask(updateMask string) *AccountsLanguagesProductCertificationsPatchCall
- type AccountsLanguagesProductCertificationsService
- func (r *AccountsLanguagesProductCertificationsService) Delete(name string) *AccountsLanguagesProductCertificationsDeleteCall
- func (r *AccountsLanguagesProductCertificationsService) Get(name string) *AccountsLanguagesProductCertificationsGetCall
- func (r *AccountsLanguagesProductCertificationsService) List(parent string) *AccountsLanguagesProductCertificationsListCall
- func (r *AccountsLanguagesProductCertificationsService) Patch(nameid string, productcertification *ProductCertification) *AccountsLanguagesProductCertificationsPatchCall
- type AccountsLanguagesService
- type AccountsProductsDeleteCall
- func (c *AccountsProductsDeleteCall) Context(ctx context.Context) *AccountsProductsDeleteCall
- func (c *AccountsProductsDeleteCall) Do(opts ...googleapi.CallOption) (*Empty, error)
- func (c *AccountsProductsDeleteCall) Fields(s ...googleapi.Field) *AccountsProductsDeleteCall
- func (c *AccountsProductsDeleteCall) Header() http.Header
- type AccountsProductsGetCall
- func (c *AccountsProductsGetCall) Context(ctx context.Context) *AccountsProductsGetCall
- func (c *AccountsProductsGetCall) Do(opts ...googleapi.CallOption) (*Product, error)
- func (c *AccountsProductsGetCall) Fields(s ...googleapi.Field) *AccountsProductsGetCall
- func (c *AccountsProductsGetCall) Header() http.Header
- func (c *AccountsProductsGetCall) IfNoneMatch(entityTag string) *AccountsProductsGetCall
- func (c *AccountsProductsGetCall) Include(include ...string) *AccountsProductsGetCall
- type AccountsProductsListCall
- func (c *AccountsProductsListCall) Context(ctx context.Context) *AccountsProductsListCall
- func (c *AccountsProductsListCall) Do(opts ...googleapi.CallOption) (*ListProductsResponse, error)
- func (c *AccountsProductsListCall) Fields(s ...googleapi.Field) *AccountsProductsListCall
- func (c *AccountsProductsListCall) Header() http.Header
- func (c *AccountsProductsListCall) IfNoneMatch(entityTag string) *AccountsProductsListCall
- func (c *AccountsProductsListCall) Include(include ...string) *AccountsProductsListCall
- func (c *AccountsProductsListCall) PageSize(pageSize int64) *AccountsProductsListCall
- func (c *AccountsProductsListCall) PageToken(pageToken string) *AccountsProductsListCall
- func (c *AccountsProductsListCall) Pages(ctx context.Context, f func(*ListProductsResponse) error) error
- type AccountsProductsService
- func (r *AccountsProductsService) Delete(parent string, name string) *AccountsProductsDeleteCall
- func (r *AccountsProductsService) Get(parent string, name string) *AccountsProductsGetCall
- func (r *AccountsProductsService) List(parent string) *AccountsProductsListCall
- func (r *AccountsProductsService) Update(parent string, name string, attributes *Attributes) *AccountsProductsUpdateCall
- type AccountsProductsUpdateCall
- func (c *AccountsProductsUpdateCall) Context(ctx context.Context) *AccountsProductsUpdateCall
- func (c *AccountsProductsUpdateCall) Do(opts ...googleapi.CallOption) (*Empty, error)
- func (c *AccountsProductsUpdateCall) Fields(s ...googleapi.Field) *AccountsProductsUpdateCall
- func (c *AccountsProductsUpdateCall) Header() http.Header
- type AccountsService
- type Attributes
- type Capacity
- type Certification
- type Count
- type DestinationStatus
- type Empty
- type FeatureDescription
- type FloatUnit
- type GoogleShoppingManufacturersV1ProductCertification
- type Grocery
- type Image
- type Issue
- type ListProductCertificationsResponse
- type ListProductsResponse
- type Nutrition
- type Price
- type Product
- type ProductCertification
- type ProductDetail
- type Service
- type VoluntaryNutritionFact
Constants ¶
const (
// Manage your product listings for Google Manufacturer Center
ManufacturercenterScope = "https://www.googleapis.com/auth/manufacturercenter"
)
OAuth2 scopes used by this API.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AccountsLanguagesProductCertificationsDeleteCall ¶
type AccountsLanguagesProductCertificationsDeleteCall struct {
// contains filtered or unexported fields
}
func (*AccountsLanguagesProductCertificationsDeleteCall) Context ¶
func (c *AccountsLanguagesProductCertificationsDeleteCall) Context(ctx context.Context) *AccountsLanguagesProductCertificationsDeleteCall
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 (*AccountsLanguagesProductCertificationsDeleteCall) Do ¶
func (c *AccountsLanguagesProductCertificationsDeleteCall) Do(opts ...googleapi.CallOption) (*Empty, error)
Do executes the "manufacturers.accounts.languages.productCertifications.delete" call. Exactly one of *Empty or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Empty.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 (*AccountsLanguagesProductCertificationsDeleteCall) Fields ¶
func (c *AccountsLanguagesProductCertificationsDeleteCall) Fields(s ...googleapi.Field) *AccountsLanguagesProductCertificationsDeleteCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*AccountsLanguagesProductCertificationsDeleteCall) Header ¶
func (c *AccountsLanguagesProductCertificationsDeleteCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
type AccountsLanguagesProductCertificationsGetCall ¶
type AccountsLanguagesProductCertificationsGetCall struct {
// contains filtered or unexported fields
}
func (*AccountsLanguagesProductCertificationsGetCall) Context ¶
func (c *AccountsLanguagesProductCertificationsGetCall) Context(ctx context.Context) *AccountsLanguagesProductCertificationsGetCall
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 (*AccountsLanguagesProductCertificationsGetCall) Do ¶
func (c *AccountsLanguagesProductCertificationsGetCall) Do(opts ...googleapi.CallOption) (*ProductCertification, error)
Do executes the "manufacturers.accounts.languages.productCertifications.get" call. Exactly one of *ProductCertification or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *ProductCertification.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 (*AccountsLanguagesProductCertificationsGetCall) Fields ¶
func (c *AccountsLanguagesProductCertificationsGetCall) Fields(s ...googleapi.Field) *AccountsLanguagesProductCertificationsGetCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*AccountsLanguagesProductCertificationsGetCall) Header ¶
func (c *AccountsLanguagesProductCertificationsGetCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
func (*AccountsLanguagesProductCertificationsGetCall) IfNoneMatch ¶
func (c *AccountsLanguagesProductCertificationsGetCall) IfNoneMatch(entityTag string) *AccountsLanguagesProductCertificationsGetCall
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.
type AccountsLanguagesProductCertificationsListCall ¶
type AccountsLanguagesProductCertificationsListCall struct {
// contains filtered or unexported fields
}
func (*AccountsLanguagesProductCertificationsListCall) Context ¶
func (c *AccountsLanguagesProductCertificationsListCall) Context(ctx context.Context) *AccountsLanguagesProductCertificationsListCall
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 (*AccountsLanguagesProductCertificationsListCall) Do ¶
func (c *AccountsLanguagesProductCertificationsListCall) Do(opts ...googleapi.CallOption) (*ListProductCertificationsResponse, error)
Do executes the "manufacturers.accounts.languages.productCertifications.list" call. Exactly one of *ListProductCertificationsResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *ListProductCertificationsResponse.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 (*AccountsLanguagesProductCertificationsListCall) Fields ¶
func (c *AccountsLanguagesProductCertificationsListCall) Fields(s ...googleapi.Field) *AccountsLanguagesProductCertificationsListCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*AccountsLanguagesProductCertificationsListCall) Header ¶
func (c *AccountsLanguagesProductCertificationsListCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
func (*AccountsLanguagesProductCertificationsListCall) IfNoneMatch ¶
func (c *AccountsLanguagesProductCertificationsListCall) IfNoneMatch(entityTag string) *AccountsLanguagesProductCertificationsListCall
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 (*AccountsLanguagesProductCertificationsListCall) PageSize ¶
func (c *AccountsLanguagesProductCertificationsListCall) PageSize(pageSize int64) *AccountsLanguagesProductCertificationsListCall
PageSize sets the optional parameter "pageSize": The maximum number of product certifications to return. The service may return fewer than this value. If unspecified, at most 50 product certifications will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000.
func (*AccountsLanguagesProductCertificationsListCall) PageToken ¶
func (c *AccountsLanguagesProductCertificationsListCall) PageToken(pageToken string) *AccountsLanguagesProductCertificationsListCall
PageToken sets the optional parameter "pageToken": A page token, received from a previous `ListProductCertifications` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListProductCertifications` must match the call that provided the page token. Required if requesting the second or higher page.
func (*AccountsLanguagesProductCertificationsListCall) Pages ¶
func (c *AccountsLanguagesProductCertificationsListCall) Pages(ctx context.Context, f func(*ListProductCertificationsResponse) error) error
Pages invokes f for each page of results. A non-nil error returned from f will halt the iteration. The provided context supersedes any context provided to the Context method.
type AccountsLanguagesProductCertificationsPatchCall ¶
type AccountsLanguagesProductCertificationsPatchCall struct {
// contains filtered or unexported fields
}
func (*AccountsLanguagesProductCertificationsPatchCall) Context ¶
func (c *AccountsLanguagesProductCertificationsPatchCall) Context(ctx context.Context) *AccountsLanguagesProductCertificationsPatchCall
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 (*AccountsLanguagesProductCertificationsPatchCall) Do ¶
func (c *AccountsLanguagesProductCertificationsPatchCall) Do(opts ...googleapi.CallOption) (*ProductCertification, error)
Do executes the "manufacturers.accounts.languages.productCertifications.patch" call. Exactly one of *ProductCertification or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *ProductCertification.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 (*AccountsLanguagesProductCertificationsPatchCall) Fields ¶
func (c *AccountsLanguagesProductCertificationsPatchCall) Fields(s ...googleapi.Field) *AccountsLanguagesProductCertificationsPatchCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*AccountsLanguagesProductCertificationsPatchCall) Header ¶
func (c *AccountsLanguagesProductCertificationsPatchCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
func (*AccountsLanguagesProductCertificationsPatchCall) UpdateMask ¶
func (c *AccountsLanguagesProductCertificationsPatchCall) UpdateMask(updateMask string) *AccountsLanguagesProductCertificationsPatchCall
UpdateMask sets the optional parameter "updateMask": The list of fields to update according to aip.dev/134. However, only full update is supported as of right now. Therefore, it can be either ignored or set to "*". Setting any other values will returns UNIMPLEMENTED error.
type AccountsLanguagesProductCertificationsService ¶
type AccountsLanguagesProductCertificationsService struct {
// contains filtered or unexported fields
}
func NewAccountsLanguagesProductCertificationsService ¶
func NewAccountsLanguagesProductCertificationsService(s *Service) *AccountsLanguagesProductCertificationsService
func (*AccountsLanguagesProductCertificationsService) Delete ¶
func (r *AccountsLanguagesProductCertificationsService) Delete(name string) *AccountsLanguagesProductCertificationsDeleteCall
Delete: Deletes a product certification by its name. This method can only be called by certification bodies.
- name: The name of the product certification to delete. Format: accounts/{account}/languages/{language_code}/productCertifications/{ id}.
func (*AccountsLanguagesProductCertificationsService) Get ¶
func (r *AccountsLanguagesProductCertificationsService) Get(name string) *AccountsLanguagesProductCertificationsGetCall
Get: Gets a product certification by its name. This method can only be called by certification bodies.
- name: The name of the product certification to get. Format: accounts/{account}/languages/{language_code}/productCertifications/{ id}.
func (*AccountsLanguagesProductCertificationsService) List ¶
func (r *AccountsLanguagesProductCertificationsService) List(parent string) *AccountsLanguagesProductCertificationsListCall
List: Lists product certifications from a specified certification body. This method can only be called by certification bodies.
- parent: The parent, which owns this collection of product certifications. Format: accounts/{account}/languages/{language_code}.
func (*AccountsLanguagesProductCertificationsService) Patch ¶
func (r *AccountsLanguagesProductCertificationsService) Patch(nameid string, productcertification *ProductCertification) *AccountsLanguagesProductCertificationsPatchCall
Patch: Updates (or creates if allow_missing = true) a product certification which links certifications with products. This method can only be called by certification bodies.
- name: The unique name identifier of a product certification Format: accounts/{account}/languages/{language_code}/productCertifications/{ id} Where `id` is a some unique identifier and `language_code` is a 2-letter ISO 639-1 code of a Shopping supported language according to https://support.google.com/merchants/answer/160637.
type AccountsLanguagesService ¶
type AccountsLanguagesService struct { ProductCertifications *AccountsLanguagesProductCertificationsService // contains filtered or unexported fields }
func NewAccountsLanguagesService ¶
func NewAccountsLanguagesService(s *Service) *AccountsLanguagesService
type AccountsProductsDeleteCall ¶
type AccountsProductsDeleteCall struct {
// contains filtered or unexported fields
}
func (*AccountsProductsDeleteCall) Context ¶
func (c *AccountsProductsDeleteCall) Context(ctx context.Context) *AccountsProductsDeleteCall
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 (*AccountsProductsDeleteCall) Do ¶
func (c *AccountsProductsDeleteCall) Do(opts ...googleapi.CallOption) (*Empty, error)
Do executes the "manufacturers.accounts.products.delete" call. Exactly one of *Empty or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Empty.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 (*AccountsProductsDeleteCall) Fields ¶
func (c *AccountsProductsDeleteCall) Fields(s ...googleapi.Field) *AccountsProductsDeleteCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*AccountsProductsDeleteCall) Header ¶
func (c *AccountsProductsDeleteCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
type AccountsProductsGetCall ¶
type AccountsProductsGetCall struct {
// contains filtered or unexported fields
}
func (*AccountsProductsGetCall) Context ¶
func (c *AccountsProductsGetCall) Context(ctx context.Context) *AccountsProductsGetCall
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 (*AccountsProductsGetCall) Do ¶
func (c *AccountsProductsGetCall) Do(opts ...googleapi.CallOption) (*Product, error)
Do executes the "manufacturers.accounts.products.get" call. Exactly one of *Product or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Product.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 (*AccountsProductsGetCall) Fields ¶
func (c *AccountsProductsGetCall) Fields(s ...googleapi.Field) *AccountsProductsGetCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*AccountsProductsGetCall) Header ¶
func (c *AccountsProductsGetCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
func (*AccountsProductsGetCall) IfNoneMatch ¶
func (c *AccountsProductsGetCall) IfNoneMatch(entityTag string) *AccountsProductsGetCall
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 (*AccountsProductsGetCall) Include ¶
func (c *AccountsProductsGetCall) Include(include ...string) *AccountsProductsGetCall
Include sets the optional parameter "include": The information to be included in the response. Only sections listed here will be returned.
Possible values:
"UNKNOWN" - Unknown, never used. "ATTRIBUTES" - Include the attributes of the product. "ISSUES" - Include the issues of the product. "DESTINATION_STATUSES" - Include the destination statuses of the
product.
type AccountsProductsListCall ¶
type AccountsProductsListCall struct {
// contains filtered or unexported fields
}
func (*AccountsProductsListCall) Context ¶
func (c *AccountsProductsListCall) Context(ctx context.Context) *AccountsProductsListCall
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 (*AccountsProductsListCall) Do ¶
func (c *AccountsProductsListCall) Do(opts ...googleapi.CallOption) (*ListProductsResponse, error)
Do executes the "manufacturers.accounts.products.list" call. Exactly one of *ListProductsResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *ListProductsResponse.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 (*AccountsProductsListCall) Fields ¶
func (c *AccountsProductsListCall) Fields(s ...googleapi.Field) *AccountsProductsListCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*AccountsProductsListCall) Header ¶
func (c *AccountsProductsListCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
func (*AccountsProductsListCall) IfNoneMatch ¶
func (c *AccountsProductsListCall) IfNoneMatch(entityTag string) *AccountsProductsListCall
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 (*AccountsProductsListCall) Include ¶
func (c *AccountsProductsListCall) Include(include ...string) *AccountsProductsListCall
Include sets the optional parameter "include": The information to be included in the response. Only sections listed here will be returned.
Possible values:
"UNKNOWN" - Unknown, never used. "ATTRIBUTES" - Include the attributes of the product. "ISSUES" - Include the issues of the product. "DESTINATION_STATUSES" - Include the destination statuses of the
product.
func (*AccountsProductsListCall) PageSize ¶
func (c *AccountsProductsListCall) PageSize(pageSize int64) *AccountsProductsListCall
PageSize sets the optional parameter "pageSize": Maximum number of product statuses to return in the response, used for paging.
func (*AccountsProductsListCall) PageToken ¶
func (c *AccountsProductsListCall) PageToken(pageToken string) *AccountsProductsListCall
PageToken sets the optional parameter "pageToken": The token returned by the previous request.
func (*AccountsProductsListCall) Pages ¶
func (c *AccountsProductsListCall) Pages(ctx context.Context, f func(*ListProductsResponse) error) error
Pages invokes f for each page of results. A non-nil error returned from f will halt the iteration. The provided context supersedes any context provided to the Context method.
type AccountsProductsService ¶
type AccountsProductsService struct {
// contains filtered or unexported fields
}
func NewAccountsProductsService ¶
func NewAccountsProductsService(s *Service) *AccountsProductsService
func (*AccountsProductsService) Delete ¶
func (r *AccountsProductsService) Delete(parent string, name string) *AccountsProductsDeleteCall
Delete: Deletes the product from a Manufacturer Center account.
- name: Name in the format `{target_country}:{content_language}:{product_id}`. `target_country` - The target country of the product as a CLDR territory code (for example, US). `content_language` - The content language of the product as a two-letter ISO 639-1 language code (for example, en). `product_id` - The ID of the product. For more information, see https://support.google.com/manufacturers/answer/6124116#id.
- parent: Parent ID in the format `accounts/{account_id}`. `account_id` - The ID of the Manufacturer Center account.
func (*AccountsProductsService) Get ¶
func (r *AccountsProductsService) Get(parent string, name string) *AccountsProductsGetCall
Get: Gets the product from a Manufacturer Center account, including product issues. A recently updated product takes around 15 minutes to process. Changes are only visible after it has been processed. While some issues may be available once the product has been processed, other issues may take days to appear.
- name: Name in the format `{target_country}:{content_language}:{product_id}`. `target_country` - The target country of the product as a CLDR territory code (for example, US). `content_language` - The content language of the product as a two-letter ISO 639-1 language code (for example, en). `product_id` - The ID of the product. For more information, see https://support.google.com/manufacturers/answer/6124116#id.
- parent: Parent ID in the format `accounts/{account_id}`. `account_id` - The ID of the Manufacturer Center account.
func (*AccountsProductsService) List ¶
func (r *AccountsProductsService) List(parent string) *AccountsProductsListCall
List: Lists all the products in a Manufacturer Center account.
- parent: Parent ID in the format `accounts/{account_id}`. `account_id` - The ID of the Manufacturer Center account.
func (*AccountsProductsService) Update ¶
func (r *AccountsProductsService) Update(parent string, name string, attributes *Attributes) *AccountsProductsUpdateCall
Update: Inserts or updates the attributes of the product in a Manufacturer Center account. Creates a product with the provided attributes. If the product already exists, then all attributes are replaced with the new ones. The checks at upload time are minimal. All required attributes need to be present for a product to be valid. Issues may show up later after the API has accepted a new upload for a product and it is possible to overwrite an existing valid product with an invalid product. To detect this, you should retrieve the product and check it for issues once the new version is available. Uploaded attributes first need to be processed before they can be retrieved. Until then, new products will be unavailable, and retrieval of previously uploaded products will return the original state of the product.
- name: Name in the format `{target_country}:{content_language}:{product_id}`. `target_country` - The target country of the product as a CLDR territory code (for example, US). `content_language` - The content language of the product as a two-letter ISO 639-1 language code (for example, en). `product_id` - The ID of the product. For more information, see https://support.google.com/manufacturers/answer/6124116#id.
- parent: Parent ID in the format `accounts/{account_id}`. `account_id` - The ID of the Manufacturer Center account.
type AccountsProductsUpdateCall ¶
type AccountsProductsUpdateCall struct {
// contains filtered or unexported fields
}
func (*AccountsProductsUpdateCall) Context ¶
func (c *AccountsProductsUpdateCall) Context(ctx context.Context) *AccountsProductsUpdateCall
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 (*AccountsProductsUpdateCall) Do ¶
func (c *AccountsProductsUpdateCall) Do(opts ...googleapi.CallOption) (*Empty, error)
Do executes the "manufacturers.accounts.products.update" call. Exactly one of *Empty or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Empty.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 (*AccountsProductsUpdateCall) Fields ¶
func (c *AccountsProductsUpdateCall) Fields(s ...googleapi.Field) *AccountsProductsUpdateCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*AccountsProductsUpdateCall) Header ¶
func (c *AccountsProductsUpdateCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
type AccountsService ¶
type AccountsService struct { Languages *AccountsLanguagesService Products *AccountsProductsService // contains filtered or unexported fields }
func NewAccountsService ¶
func NewAccountsService(s *Service) *AccountsService
type Attributes ¶
type Attributes struct { // AdditionalImageLink: The additional images of the product. For more // information, see // https://support.google.com/manufacturers/answer/6124116#addlimage. AdditionalImageLink []*Image `json:"additionalImageLink,omitempty"` // AgeGroup: The target age group of the product. For more information, // see https://support.google.com/manufacturers/answer/6124116#agegroup. AgeGroup string `json:"ageGroup,omitempty"` // Brand: The brand name of the product. For more information, see // https://support.google.com/manufacturers/answer/6124116#brand. Brand string `json:"brand,omitempty"` // Capacity: The capacity of the product. For more information, see // https://support.google.com/manufacturers/answer/6124116#capacity. Capacity *Capacity `json:"capacity,omitempty"` // Certification: Optional. List of certifications claimed by this // product. Certification []*GoogleShoppingManufacturersV1ProductCertification `json:"certification,omitempty"` // Color: The color of the product. For more information, see // https://support.google.com/manufacturers/answer/6124116#color. Color string `json:"color,omitempty"` // Count: The count of the product. For more information, see // https://support.google.com/manufacturers/answer/6124116#count. Count *Count `json:"count,omitempty"` // Description: The description of the product. For more information, // see // https://support.google.com/manufacturers/answer/6124116#description. Description string `json:"description,omitempty"` // DisclosureDate: The disclosure date of the product. For more // information, see // https://support.google.com/manufacturers/answer/6124116#disclosure. DisclosureDate string `json:"disclosureDate,omitempty"` // ExcludedDestination: A list of excluded destinations such as // "ClientExport", "ClientShoppingCatalog" or "PartnerShoppingCatalog". // For more information, see // https://support.google.com/manufacturers/answer/7443550 ExcludedDestination []string `json:"excludedDestination,omitempty"` // FeatureDescription: The rich format description of the product. For // more information, see // https://support.google.com/manufacturers/answer/6124116#featuredesc. FeatureDescription []*FeatureDescription `json:"featureDescription,omitempty"` // Flavor: The flavor of the product. For more information, see // https://support.google.com/manufacturers/answer/6124116#flavor. Flavor string `json:"flavor,omitempty"` // Format: The format of the product. For more information, see // https://support.google.com/manufacturers/answer/6124116#format. Format string `json:"format,omitempty"` // Gender: The target gender of the product. For more information, see // https://support.google.com/manufacturers/answer/6124116#gender. Gender string `json:"gender,omitempty"` // Grocery: Grocery Attributes. See more at // https://support.google.com/manufacturers/answer/12098458#grocery. Grocery *Grocery `json:"grocery,omitempty"` // Gtin: The Global Trade Item Number (GTIN) of the product. For more // information, see // https://support.google.com/manufacturers/answer/6124116#gtin. Gtin []string `json:"gtin,omitempty"` // ImageLink: The image of the product. For more information, see // https://support.google.com/manufacturers/answer/6124116#image. ImageLink *Image `json:"imageLink,omitempty"` // IncludedDestination: A list of included destinations such as // "ClientExport", "ClientShoppingCatalog" or "PartnerShoppingCatalog". // For more information, see // https://support.google.com/manufacturers/answer/7443550 IncludedDestination []string `json:"includedDestination,omitempty"` // ItemGroupId: The item group id of the product. For more information, // see // https://support.google.com/manufacturers/answer/6124116#itemgroupid. ItemGroupId string `json:"itemGroupId,omitempty"` // Material: The material of the product. For more information, see // https://support.google.com/manufacturers/answer/6124116#material. Material string `json:"material,omitempty"` // Mpn: The Manufacturer Part Number (MPN) of the product. For more // information, see // https://support.google.com/manufacturers/answer/6124116#mpn. Mpn string `json:"mpn,omitempty"` // Nutrition: Nutrition Attributes. See more at // https://support.google.com/manufacturers/answer/12098458#food-servings. Nutrition *Nutrition `json:"nutrition,omitempty"` // Pattern: The pattern of the product. For more information, see // https://support.google.com/manufacturers/answer/6124116#pattern. Pattern string `json:"pattern,omitempty"` // ProductDetail: The details of the product. For more information, see // https://support.google.com/manufacturers/answer/6124116#productdetail. ProductDetail []*ProductDetail `json:"productDetail,omitempty"` // ProductHighlight: The product highlights. For more information, see // https://support.google.com/manufacturers/answer/10066942 ProductHighlight []string `json:"productHighlight,omitempty"` // ProductLine: The name of the group of products related to the // product. For more information, see // https://support.google.com/manufacturers/answer/6124116#productline. ProductLine string `json:"productLine,omitempty"` // ProductName: The canonical name of the product. For more information, // see // https://support.google.com/manufacturers/answer/6124116#productname. ProductName string `json:"productName,omitempty"` // ProductPageUrl: The URL of the detail page of the product. For more // information, see // https://support.google.com/manufacturers/answer/6124116#productpage. ProductPageUrl string `json:"productPageUrl,omitempty"` // ProductType: The type or category of the product. For more // information, see // https://support.google.com/manufacturers/answer/6124116#producttype. ProductType []string `json:"productType,omitempty"` // ReleaseDate: The release date of the product. For more information, // see https://support.google.com/manufacturers/answer/6124116#release. ReleaseDate string `json:"releaseDate,omitempty"` // RichProductContent: Rich product content. For more information, see // https://support.google.com/manufacturers/answer/9389865 RichProductContent []string `json:"richProductContent,omitempty"` // Scent: The scent of the product. For more information, see // https://support.google.com/manufacturers/answer/6124116#scent. Scent string `json:"scent,omitempty"` // Size: The size of the product. For more information, see // https://support.google.com/manufacturers/answer/6124116#size. Size string `json:"size,omitempty"` // SizeSystem: The size system of the product. For more information, see // https://support.google.com/manufacturers/answer/6124116#sizesystem. SizeSystem string `json:"sizeSystem,omitempty"` // SizeType: The size type of the product. For more information, see // https://support.google.com/manufacturers/answer/6124116#sizetype. SizeType []string `json:"sizeType,omitempty"` // SuggestedRetailPrice: The suggested retail price (MSRP) of the // product. For more information, see // https://support.google.com/manufacturers/answer/6124116#price. SuggestedRetailPrice *Price `json:"suggestedRetailPrice,omitempty"` // TargetClientId: The target client id. Should only be used in the // accounts of the data partners. For more information, see // https://support.google.com/manufacturers/answer/10857344 TargetClientId string `json:"targetClientId,omitempty"` // Theme: The theme of the product. For more information, see // https://support.google.com/manufacturers/answer/6124116#theme. Theme string `json:"theme,omitempty"` // Title: The title of the product. For more information, see // https://support.google.com/manufacturers/answer/6124116#title. Title string `json:"title,omitempty"` // VideoLink: The videos of the product. For more information, see // https://support.google.com/manufacturers/answer/6124116#video. VideoLink []string `json:"videoLink,omitempty"` // VirtualModelLink: Virtual Model (3d) asset link. VirtualModelLink string `json:"virtualModelLink,omitempty"` // ForceSendFields is a list of field names (e.g. "AdditionalImageLink") // to unconditionally include in API requests. By default, fields with // empty or default 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. "AdditionalImageLink") 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:"-"` }
Attributes: Attributes of the product. For more information, see https://support.google.com/manufacturers/answer/6124116.
func (*Attributes) MarshalJSON ¶
func (s *Attributes) MarshalJSON() ([]byte, error)
type Capacity ¶
type Capacity struct { // Unit: The unit of the capacity, i.e., MB, GB, or TB. Unit string `json:"unit,omitempty"` // Value: The numeric value of the capacity. Value int64 `json:"value,omitempty,string"` // ForceSendFields is a list of field names (e.g. "Unit") to // unconditionally include in API requests. By default, fields with // empty or default 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. "Unit") 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:"-"` }
Capacity: The capacity of a product. For more information, see https://support.google.com/manufacturers/answer/6124116#capacity.
func (*Capacity) MarshalJSON ¶
type Certification ¶
type Certification struct { // Authority: Required. Name of the certification body. Authority string `json:"authority,omitempty"` // Code: Required. A unique code to identify the certification. Code string `json:"code,omitempty"` // Link: Optional. A URL link to the certification. Link string `json:"link,omitempty"` // Logo: Optional. A URL link to the certification logo. Logo string `json:"logo,omitempty"` // Name: Required. Name of the certification. Name string `json:"name,omitempty"` // ValidUntil: Optional. The expiration date (UTC). ValidUntil string `json:"validUntil,omitempty"` // Value: Optional. A custom value of the certification. Value string `json:"value,omitempty"` // ForceSendFields is a list of field names (e.g. "Authority") to // unconditionally include in API requests. By default, fields with // empty or default 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. "Authority") 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:"-"` }
Certification: Description of a certification.
func (*Certification) MarshalJSON ¶
func (s *Certification) MarshalJSON() ([]byte, error)
type Count ¶
type Count struct { // Unit: The unit in which these products are counted. Unit string `json:"unit,omitempty"` // Value: The numeric value of the number of products in a package. Value int64 `json:"value,omitempty,string"` // ForceSendFields is a list of field names (e.g. "Unit") to // unconditionally include in API requests. By default, fields with // empty or default 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. "Unit") 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:"-"` }
Count: The number of products in a single package. For more information, see https://support.google.com/manufacturers/answer/6124116#count.
func (*Count) MarshalJSON ¶
type DestinationStatus ¶
type DestinationStatus struct { // Destination: The name of the destination. Destination string `json:"destination,omitempty"` // Status: The status of the destination. // // Possible values: // "UNKNOWN" - Unspecified status, never used. // "ACTIVE" - The product is used for this destination. // "PENDING" - The decision is still pending. // "DISAPPROVED" - The product is disapproved. Please look at the // issues. Status string `json:"status,omitempty"` // ForceSendFields is a list of field names (e.g. "Destination") to // unconditionally include in API requests. By default, fields with // empty or default 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. "Destination") 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:"-"` }
DestinationStatus: The destination status.
func (*DestinationStatus) MarshalJSON ¶
func (s *DestinationStatus) MarshalJSON() ([]byte, error)
type Empty ¶
type Empty struct { // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` }
Empty: A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); }
type FeatureDescription ¶
type FeatureDescription struct { // Headline: A short description of the feature. Headline string `json:"headline,omitempty"` // Image: An optional image describing the feature. Image *Image `json:"image,omitempty"` // Text: A detailed description of the feature. Text string `json:"text,omitempty"` // ForceSendFields is a list of field names (e.g. "Headline") to // unconditionally include in API requests. By default, fields with // empty or default 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. "Headline") 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:"-"` }
FeatureDescription: A feature description of the product. For more information, see https://support.google.com/manufacturers/answer/6124116#featuredesc.
func (*FeatureDescription) MarshalJSON ¶
func (s *FeatureDescription) MarshalJSON() ([]byte, error)
type FloatUnit ¶
type FloatUnit struct { // Amount: amount. Amount float64 `json:"amount,omitempty"` // Unit: unit. Unit string `json:"unit,omitempty"` // ForceSendFields is a list of field names (e.g. "Amount") to // unconditionally include in API requests. By default, fields with // empty or default 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. "Amount") 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:"-"` }
FloatUnit: Combination of float amount and unit.
func (*FloatUnit) MarshalJSON ¶
func (*FloatUnit) UnmarshalJSON ¶
type GoogleShoppingManufacturersV1ProductCertification ¶
type GoogleShoppingManufacturersV1ProductCertification struct { // Authority: Required. Name of the certification body. Authority string `json:"authority,omitempty"` // Code: Required. A unique code to identify the certification. Code string `json:"code,omitempty"` // Name: Required. Name of the certification. Name string `json:"name,omitempty"` // ForceSendFields is a list of field names (e.g. "Authority") to // unconditionally include in API requests. By default, fields with // empty or default 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. "Authority") 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:"-"` }
GoogleShoppingManufacturersV1ProductCertification: Description of a certification.
func (*GoogleShoppingManufacturersV1ProductCertification) MarshalJSON ¶
func (s *GoogleShoppingManufacturersV1ProductCertification) MarshalJSON() ([]byte, error)
type Grocery ¶
type Grocery struct { // ActiveIngredients: Active ingredients. ActiveIngredients string `json:"activeIngredients,omitempty"` // AlcoholByVolume: Alcohol by volume. AlcoholByVolume float64 `json:"alcoholByVolume,omitempty"` // Allergens: Allergens. Allergens string `json:"allergens,omitempty"` // DerivedNutritionClaim: Derived nutrition claim. DerivedNutritionClaim []string `json:"derivedNutritionClaim,omitempty"` // Directions: Directions. Directions string `json:"directions,omitempty"` // Indications: Indications. Indications string `json:"indications,omitempty"` // Ingredients: Ingredients. Ingredients string `json:"ingredients,omitempty"` // NutritionClaim: Nutrition claim. NutritionClaim []string `json:"nutritionClaim,omitempty"` // StorageInstructions: Storage instructions. StorageInstructions string `json:"storageInstructions,omitempty"` // ForceSendFields is a list of field names (e.g. "ActiveIngredients") // to unconditionally include in API requests. By default, fields with // empty or default 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. "ActiveIngredients") 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 (*Grocery) MarshalJSON ¶
func (*Grocery) UnmarshalJSON ¶
type Image ¶
type Image struct { // ImageUrl: The URL of the image. For crawled images, this is the // provided URL. For uploaded images, this is a serving URL from Google // if the image has been processed successfully. ImageUrl string `json:"imageUrl,omitempty"` // Status: The status of the image. @OutputOnly // // Possible values: // "STATUS_UNSPECIFIED" - The image status is unspecified. Should not // be used. // "PENDING_PROCESSING" - The image was uploaded and is being // processed. // "PENDING_CRAWL" - The image crawl is still pending. // "OK" - The image was processed and it meets the requirements. // "ROBOTED" - The image URL is protected by robots.txt file and // cannot be crawled. // "XROBOTED" - The image URL is protected by X-Robots-Tag and cannot // be crawled. // "CRAWL_ERROR" - There was an error while crawling the image. // "PROCESSING_ERROR" - The image cannot be processed. // "DECODING_ERROR" - The image cannot be decoded. // "TOO_BIG" - The image is too big. // "CRAWL_SKIPPED" - The image was manually overridden and will not be // crawled. // "HOSTLOADED" - The image crawl was postponed to avoid overloading // the host. // "HTTP_404" - The image URL returned a "404 Not Found" error. Status string `json:"status,omitempty"` // Type: The type of the image, i.e., crawled or uploaded. @OutputOnly // // Possible values: // "TYPE_UNSPECIFIED" - Type is unspecified. Should not be used. // "CRAWLED" - The image was crawled from a provided URL. // "UPLOADED" - The image was uploaded. Type string `json:"type,omitempty"` // ForceSendFields is a list of field names (e.g. "ImageUrl") to // unconditionally include in API requests. By default, fields with // empty or default 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. "ImageUrl") 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:"-"` }
Image: An image.
func (*Image) MarshalJSON ¶
type Issue ¶
type Issue struct { // Attribute: If present, the attribute that triggered the issue. For // more information about attributes, see // https://support.google.com/manufacturers/answer/6124116. Attribute string `json:"attribute,omitempty"` // Description: Longer description of the issue focused on how to // resolve it. Description string `json:"description,omitempty"` // Destination: The destination this issue applies to. Destination string `json:"destination,omitempty"` // Resolution: What needs to happen to resolve the issue. // // Possible values: // "RESOLUTION_UNSPECIFIED" - Unspecified resolution, never used. // "USER_ACTION" - The user who provided the data must act in order to // resolve the issue (for example by correcting some data). // "PENDING_PROCESSING" - The issue will be resolved automatically // (for example image crawl or Google review). No action is required // now. Resolution might lead to another issue (for example if crawl // fails). Resolution string `json:"resolution,omitempty"` // Severity: The severity of the issue. // // Possible values: // "SEVERITY_UNSPECIFIED" - Unspecified severity, never used. // "ERROR" - Error severity. The issue prevents the usage of the whole // item. // "WARNING" - Warning severity. The issue is either one that prevents // the usage of the attribute that triggered it or one that will soon // prevent the usage of the whole item. // "INFO" - Info severity. The issue is one that doesn't require // immediate attention. It is, for example, used to communicate which // attributes are still pending review. Severity string `json:"severity,omitempty"` // Timestamp: The timestamp when this issue appeared. Timestamp string `json:"timestamp,omitempty"` // Title: Short title describing the nature of the issue. Title string `json:"title,omitempty"` // Type: The server-generated type of the issue, for example, // “INCORRECT_TEXT_FORMATTING”, “IMAGE_NOT_SERVEABLE”, etc. Type string `json:"type,omitempty"` // ForceSendFields is a list of field names (e.g. "Attribute") to // unconditionally include in API requests. By default, fields with // empty or default 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. "Attribute") 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:"-"` }
Issue: Product issue.
func (*Issue) MarshalJSON ¶
type ListProductCertificationsResponse ¶
type ListProductCertificationsResponse struct { // NextPageToken: A token, which can be sent as `page_token` to retrieve // the next page. If this field is omitted, there are no subsequent // pages. NextPageToken string `json:"nextPageToken,omitempty"` // ProductCertifications: The product certifications from the specified // certification body. ProductCertifications []*ProductCertification `json:"productCertifications,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "NextPageToken") to // unconditionally include in API requests. By default, fields with // empty or default 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:"-"` }
ListProductCertificationsResponse: Response for ListProductCertifications method.
func (*ListProductCertificationsResponse) MarshalJSON ¶
func (s *ListProductCertificationsResponse) MarshalJSON() ([]byte, error)
type ListProductsResponse ¶
type ListProductsResponse struct { // NextPageToken: The token for the retrieval of the next page of // product statuses. NextPageToken string `json:"nextPageToken,omitempty"` // Products: List of the products. Products []*Product `json:"products,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "NextPageToken") to // unconditionally include in API requests. By default, fields with // empty or default 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 (*ListProductsResponse) MarshalJSON ¶
func (s *ListProductsResponse) MarshalJSON() ([]byte, error)
type Nutrition ¶
type Nutrition struct { // AddedSugars: Added sugars. AddedSugars *FloatUnit `json:"addedSugars,omitempty"` // AddedSugarsDailyPercentage: Added sugars daily percentage. AddedSugarsDailyPercentage float64 `json:"addedSugarsDailyPercentage,omitempty"` // Calcium: Calcium. Calcium *FloatUnit `json:"calcium,omitempty"` // CalciumDailyPercentage: Calcium daily percentage. CalciumDailyPercentage float64 `json:"calciumDailyPercentage,omitempty"` // Cholesterol: Cholesterol. Cholesterol *FloatUnit `json:"cholesterol,omitempty"` // CholesterolDailyPercentage: Cholesterol daily percentage. CholesterolDailyPercentage float64 `json:"cholesterolDailyPercentage,omitempty"` // DietaryFiber: Dietary fiber. DietaryFiber *FloatUnit `json:"dietaryFiber,omitempty"` // DietaryFiberDailyPercentage: Dietary fiber daily percentage. DietaryFiberDailyPercentage float64 `json:"dietaryFiberDailyPercentage,omitempty"` // Energy: Mandatory Nutrition Facts. Energy. Energy *FloatUnit `json:"energy,omitempty"` // EnergyFromFat: Energy from fat. EnergyFromFat *FloatUnit `json:"energyFromFat,omitempty"` // FolateDailyPercentage: Folate daily percentage. FolateDailyPercentage float64 `json:"folateDailyPercentage,omitempty"` // FolateFolicAcid: Folate folic acid. FolateFolicAcid *FloatUnit `json:"folateFolicAcid,omitempty"` // FolateMcgDfe: Folate mcg DFE. FolateMcgDfe float64 `json:"folateMcgDfe,omitempty"` // Iron: Iron. Iron *FloatUnit `json:"iron,omitempty"` // IronDailyPercentage: Iron daily percentage. IronDailyPercentage float64 `json:"ironDailyPercentage,omitempty"` // MonounsaturatedFat: Monounsaturated fat. MonounsaturatedFat *FloatUnit `json:"monounsaturatedFat,omitempty"` // NutritionFactMeasure: Nutrition fact measure. NutritionFactMeasure string `json:"nutritionFactMeasure,omitempty"` // Polyols: Polyols. Polyols *FloatUnit `json:"polyols,omitempty"` // PolyunsaturatedFat: Polyunsaturated fat. PolyunsaturatedFat *FloatUnit `json:"polyunsaturatedFat,omitempty"` // Potassium: Potassium. Potassium *FloatUnit `json:"potassium,omitempty"` // PotassiumDailyPercentage: Potassium daily percentage. PotassiumDailyPercentage float64 `json:"potassiumDailyPercentage,omitempty"` // PreparedSizeDescription: Prepared size description. PreparedSizeDescription string `json:"preparedSizeDescription,omitempty"` // Protein: Protein. Protein *FloatUnit `json:"protein,omitempty"` // ProteinDailyPercentage: Protein daily percentage. ProteinDailyPercentage float64 `json:"proteinDailyPercentage,omitempty"` // SaturatedFat: Saturated fat. SaturatedFat *FloatUnit `json:"saturatedFat,omitempty"` // SaturatedFatDailyPercentage: Saturated fat daily percentage. SaturatedFatDailyPercentage float64 `json:"saturatedFatDailyPercentage,omitempty"` // ServingSizeDescription: Food Serving Size. Serving size description. ServingSizeDescription string `json:"servingSizeDescription,omitempty"` // ServingSizeMeasure: Serving size measure. ServingSizeMeasure *FloatUnit `json:"servingSizeMeasure,omitempty"` // ServingsPerContainer: Servings per container. ServingsPerContainer string `json:"servingsPerContainer,omitempty"` // Sodium: Sodium. Sodium *FloatUnit `json:"sodium,omitempty"` // SodiumDailyPercentage: Sodium daily percentage. SodiumDailyPercentage float64 `json:"sodiumDailyPercentage,omitempty"` // Starch: Starch. Starch *FloatUnit `json:"starch,omitempty"` // TotalCarbohydrate: Total carbohydrate. TotalCarbohydrate *FloatUnit `json:"totalCarbohydrate,omitempty"` // TotalCarbohydrateDailyPercentage: Total carbohydrate daily // percentage. TotalCarbohydrateDailyPercentage float64 `json:"totalCarbohydrateDailyPercentage,omitempty"` // TotalFat: Total fat. TotalFat *FloatUnit `json:"totalFat,omitempty"` // TotalFatDailyPercentage: Total fat daily percentage. TotalFatDailyPercentage float64 `json:"totalFatDailyPercentage,omitempty"` // TotalSugars: Total sugars. TotalSugars *FloatUnit `json:"totalSugars,omitempty"` // TotalSugarsDailyPercentage: Total sugars daily percentage. TotalSugarsDailyPercentage float64 `json:"totalSugarsDailyPercentage,omitempty"` // TransFat: Trans fat. TransFat *FloatUnit `json:"transFat,omitempty"` // TransFatDailyPercentage: Trans fat daily percentage. TransFatDailyPercentage float64 `json:"transFatDailyPercentage,omitempty"` // VitaminD: Vitamin D. VitaminD *FloatUnit `json:"vitaminD,omitempty"` // VitaminDDailyPercentage: Vitamin D daily percentage. VitaminDDailyPercentage float64 `json:"vitaminDDailyPercentage,omitempty"` // VoluntaryNutritionFact: Voluntary nutrition fact. VoluntaryNutritionFact []*VoluntaryNutritionFact `json:"voluntaryNutritionFact,omitempty"` // ForceSendFields is a list of field names (e.g. "AddedSugars") to // unconditionally include in API requests. By default, fields with // empty or default 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. "AddedSugars") 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 (*Nutrition) MarshalJSON ¶
func (*Nutrition) UnmarshalJSON ¶
type Price ¶
type Price struct { // Amount: The numeric value of the price. Amount string `json:"amount,omitempty"` // Currency: The currency in which the price is denoted. Currency string `json:"currency,omitempty"` // ForceSendFields is a list of field names (e.g. "Amount") to // unconditionally include in API requests. By default, fields with // empty or default 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. "Amount") 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:"-"` }
Price: A price.
func (*Price) MarshalJSON ¶
type Product ¶
type Product struct { // Attributes: Attributes of the product uploaded to the Manufacturer // Center. Manually edited attributes are taken into account. Attributes *Attributes `json:"attributes,omitempty"` // ContentLanguage: The content language of the product as a two-letter // ISO 639-1 language code (for example, en). ContentLanguage string `json:"contentLanguage,omitempty"` // DestinationStatuses: The status of the destinations. DestinationStatuses []*DestinationStatus `json:"destinationStatuses,omitempty"` // Issues: A server-generated list of issues associated with the // product. Issues []*Issue `json:"issues,omitempty"` // Name: Name in the format // `{target_country}:{content_language}:{product_id}`. `target_country` // - The target country of the product as a CLDR territory code (for // example, US). `content_language` - The content language of the // product as a two-letter ISO 639-1 language code (for example, en). // `product_id` - The ID of the product. For more information, see // https://support.google.com/manufacturers/answer/6124116#id. Name string `json:"name,omitempty"` // Parent: Parent ID in the format `accounts/{account_id}`. `account_id` // - The ID of the Manufacturer Center account. Parent string `json:"parent,omitempty"` // ProductId: The ID of the product. For more information, see // https://support.google.com/manufacturers/answer/6124116#id. ProductId string `json:"productId,omitempty"` // TargetCountry: The target country of the product as a CLDR territory // code (for example, US). TargetCountry string `json:"targetCountry,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Attributes") to // unconditionally include in API requests. By default, fields with // empty or default 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. "Attributes") 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:"-"` }
Product: Product data.
func (*Product) MarshalJSON ¶
type ProductCertification ¶
type ProductCertification struct { // Brand: Required. This is the product's brand name. The brand is used // to help identify your product. Brand string `json:"brand,omitempty"` // Certification: Required. A list of certifications to link to the // described product. Certification []*Certification `json:"certification,omitempty"` // CountryCode: Optional. A 2-letter country code (ISO 3166-1 Alpha 2). CountryCode []string `json:"countryCode,omitempty"` // DestinationStatuses: Output only. The statuses of the destinations. DestinationStatuses []*DestinationStatus `json:"destinationStatuses,omitempty"` // Issues: Output only. A server-generated list of issues associated // with the product. Issues []*Issue `json:"issues,omitempty"` // Mpn: Optional. These are the Manufacturer Part Numbers (MPN). MPNs // are used to uniquely identify a specific product among all products // from the same manufacturer Mpn []string `json:"mpn,omitempty"` // Name: Required. The unique name identifier of a product certification // Format: // accounts/{account}/languages/{language_code}/productCertifications/{id // } Where `id` is a some unique identifier and `language_code` is a // 2-letter ISO 639-1 code of a Shopping supported language according to // https://support.google.com/merchants/answer/160637. Name string `json:"name,omitempty"` // ProductCode: Optional. Another name for GTIN. ProductCode []string `json:"productCode,omitempty"` // ProductType: Optional. These are your own product categorization // system in your product data. ProductType []string `json:"productType,omitempty"` // Title: Required. This is to clearly identify the product you are // certifying. Title string `json:"title,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Brand") to // unconditionally include in API requests. By default, fields with // empty or default 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. "Brand") 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:"-"` }
ProductCertification: Product certification data.
func (*ProductCertification) MarshalJSON ¶
func (s *ProductCertification) MarshalJSON() ([]byte, error)
type ProductDetail ¶
type ProductDetail struct { // AttributeName: The name of the attribute. AttributeName string `json:"attributeName,omitempty"` // AttributeValue: The value of the attribute. AttributeValue string `json:"attributeValue,omitempty"` // SectionName: A short section name that can be reused between multiple // product details. SectionName string `json:"sectionName,omitempty"` // ForceSendFields is a list of field names (e.g. "AttributeName") to // unconditionally include in API requests. By default, fields with // empty or default 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. "AttributeName") 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:"-"` }
ProductDetail: A product detail of the product. For more information, see https://support.google.com/manufacturers/answer/6124116#productdetail.
func (*ProductDetail) MarshalJSON ¶
func (s *ProductDetail) MarshalJSON() ([]byte, error)
type Service ¶
type Service struct { BasePath string // API endpoint base URL UserAgent string // optional additional User-Agent fragment Accounts *AccountsService // contains filtered or unexported fields }
func New
deprecated
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 NewService ¶
NewService creates a new Service.
type VoluntaryNutritionFact ¶
type VoluntaryNutritionFact struct { // DailyPercentage: Daily percentage. DailyPercentage float64 `json:"dailyPercentage,omitempty"` // Name: Name. Name string `json:"name,omitempty"` // Value: Value. Value *FloatUnit `json:"value,omitempty"` // ForceSendFields is a list of field names (e.g. "DailyPercentage") to // unconditionally include in API requests. By default, fields with // empty or default 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. "DailyPercentage") 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:"-"` }
VoluntaryNutritionFact: Voluntary Nutrition Facts.
func (*VoluntaryNutritionFact) MarshalJSON ¶
func (s *VoluntaryNutritionFact) MarshalJSON() ([]byte, error)
func (*VoluntaryNutritionFact) UnmarshalJSON ¶
func (s *VoluntaryNutritionFact) UnmarshalJSON(data []byte) error