// Copyright 2020 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 content provides access to the Content API for Shopping. // // For product documentation, see: https://developers.google.com/shopping-content // // Creating a client // // Usage example: // // import "google.golang.org/api/content/v2sandbox" // ... // ctx := context.Background() // contentService, err := content.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: // // contentService, err := content.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, ...) // contentService, err := content.NewService(ctx, option.WithTokenSource(config.TokenSource(ctx, token))) // // See https://godoc.org/google.golang.org/api/option/ for details on options. package content // import "google.golang.org/api/content/v2sandbox" import ( "bytes" "context" "encoding/json" "errors" "fmt" "io" "net/http" "net/url" "strconv" "strings" googleapi "google.golang.org/api/googleapi" gensupport "google.golang.org/api/internal/gensupport" 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 = "content:v2sandbox" const apiName = "content" const apiVersion = "v2sandbox" const basePath = "https://www.googleapis.com/content/v2sandbox/" // OAuth2 scopes used by this API. const ( // Manage your product listings and accounts for Google Shopping ContentScope = "https://www.googleapis.com/auth/content" ) // NewService creates a new APIService. func NewService(ctx context.Context, opts ...option.ClientOption) (*APIService, error) { scopesOption := option.WithScopes( "https://www.googleapis.com/auth/content", ) // 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 APIService. 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) (*APIService, error) { if client == nil { return nil, errors.New("client is nil") } s := &APIService{client: client, BasePath: basePath} s.Orderinvoices = NewOrderinvoicesService(s) s.Orderpayments = NewOrderpaymentsService(s) s.Orderreturns = NewOrderreturnsService(s) s.Orders = NewOrdersService(s) return s, nil } type APIService struct { client *http.Client BasePath string // API endpoint base URL UserAgent string // optional additional User-Agent fragment Orderinvoices *OrderinvoicesService Orderpayments *OrderpaymentsService Orderreturns *OrderreturnsService Orders *OrdersService } func (s *APIService) userAgent() string { if s.UserAgent == "" { return googleapi.UserAgent } return googleapi.UserAgent + " " + s.UserAgent } func NewOrderinvoicesService(s *APIService) *OrderinvoicesService { rs := &OrderinvoicesService{s: s} return rs } type OrderinvoicesService struct { s *APIService } func NewOrderpaymentsService(s *APIService) *OrderpaymentsService { rs := &OrderpaymentsService{s: s} return rs } type OrderpaymentsService struct { s *APIService } func NewOrderreturnsService(s *APIService) *OrderreturnsService { rs := &OrderreturnsService{s: s} return rs } type OrderreturnsService struct { s *APIService } func NewOrdersService(s *APIService) *OrdersService { rs := &OrdersService{s: s} return rs } type OrdersService struct { s *APIService } type Amount struct { // Pretax: [required] Value before taxes. Pretax *Price `json:"pretax,omitempty"` // Tax: [required] Tax value. Tax *Price `json:"tax,omitempty"` // ForceSendFields is a list of field names (e.g. "Pretax") 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. "Pretax") 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 *Amount) MarshalJSON() ([]byte, error) { type NoMethod Amount raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type CustomerReturnReason struct { Description string `json:"description,omitempty"` ReasonCode string `json:"reasonCode,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 *CustomerReturnReason) MarshalJSON() ([]byte, error) { type NoMethod CustomerReturnReason raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // Error: An error returned by the API. type Error struct { // Domain: The domain of the error. Domain string `json:"domain,omitempty"` // Message: A description of the error. Message string `json:"message,omitempty"` // Reason: The error code. Reason string `json:"reason,omitempty"` // ForceSendFields is a list of field names (e.g. "Domain") 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. "Domain") 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 *Error) MarshalJSON() ([]byte, error) { type NoMethod Error raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // Errors: A list of errors returned by a failed batch entry. type Errors struct { // Code: The HTTP status of the first error in errors. Code int64 `json:"code,omitempty"` // Errors: A list of errors. Errors []*Error `json:"errors,omitempty"` // Message: The message of the first error in errors. Message string `json:"message,omitempty"` // ForceSendFields is a list of field names (e.g. "Code") 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. "Code") 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 *Errors) MarshalJSON() ([]byte, error) { type NoMethod Errors raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type InvoiceSummary struct { // AdditionalChargeSummaries: Summary of the total amounts of the // additional charges. AdditionalChargeSummaries []*InvoiceSummaryAdditionalChargeSummary `json:"additionalChargeSummaries,omitempty"` // CustomerBalance: [required] Customer balance on this invoice. A // negative amount means the customer is paying, a positive one means // the customer is receiving money. Note: the sum of merchant_balance, // customer_balance and google_balance must always be zero. // // Furthermore the absolute value of this amount is expected to be equal // to the sum of product amount and additional charges, minus // promotions. CustomerBalance *Amount `json:"customerBalance,omitempty"` // GoogleBalance: [required] Google balance on this invoice. A negative // amount means Google is paying, a positive one means Google is // receiving money. Note: the sum of merchant_balance, customer_balance // and google_balance must always be zero. GoogleBalance *Amount `json:"googleBalance,omitempty"` // MerchantBalance: [required] Merchant balance on this invoice. A // negative amount means the merchant is paying, a positive one means // the merchant is receiving money. Note: the sum of merchant_balance, // customer_balance and google_balance must always be zero. MerchantBalance *Amount `json:"merchantBalance,omitempty"` // ProductTotal: [required] Total price for the product. ProductTotal *Amount `json:"productTotal,omitempty"` // PromotionSummaries: Summary for each promotion. PromotionSummaries []*Promotion `json:"promotionSummaries,omitempty"` // ForceSendFields is a list of field names (e.g. // "AdditionalChargeSummaries") 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. // "AdditionalChargeSummaries") 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 *InvoiceSummary) MarshalJSON() ([]byte, error) { type NoMethod InvoiceSummary raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type InvoiceSummaryAdditionalChargeSummary struct { // TotalAmount: [required] Total additional charge for this type. TotalAmount *Amount `json:"totalAmount,omitempty"` // Type: [required] Type of the additional charge. Type string `json:"type,omitempty"` // ForceSendFields is a list of field names (e.g. "TotalAmount") 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. "TotalAmount") 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 *InvoiceSummaryAdditionalChargeSummary) MarshalJSON() ([]byte, error) { type NoMethod InvoiceSummaryAdditionalChargeSummary raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type MerchantOrderReturn struct { CreationDate string `json:"creationDate,omitempty"` MerchantOrderId string `json:"merchantOrderId,omitempty"` OrderId string `json:"orderId,omitempty"` OrderReturnId string `json:"orderReturnId,omitempty"` ReturnItems []*MerchantOrderReturnItem `json:"returnItems,omitempty"` ReturnShipments []*ReturnShipment `json:"returnShipments,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "CreationDate") 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. "CreationDate") 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 *MerchantOrderReturn) MarshalJSON() ([]byte, error) { type NoMethod MerchantOrderReturn raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type MerchantOrderReturnItem struct { CustomerReturnReason *CustomerReturnReason `json:"customerReturnReason,omitempty"` ItemId string `json:"itemId,omitempty"` MerchantReturnReason *RefundReason `json:"merchantReturnReason,omitempty"` Product *OrderLineItemProduct `json:"product,omitempty"` ReturnShipmentIds []string `json:"returnShipmentIds,omitempty"` State string `json:"state,omitempty"` // ForceSendFields is a list of field names (e.g. // "CustomerReturnReason") 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. "CustomerReturnReason") 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 *MerchantOrderReturnItem) MarshalJSON() ([]byte, error) { type NoMethod MerchantOrderReturnItem raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type Order struct { // Acknowledged: Whether the order was acknowledged. Acknowledged bool `json:"acknowledged,omitempty"` // ChannelType: The channel type of the order: "purchaseOnGoogle" or // "googleExpress". ChannelType string `json:"channelType,omitempty"` // Customer: The details of the customer who placed the order. Customer *OrderCustomer `json:"customer,omitempty"` // DeliveryDetails: The details for the delivery. DeliveryDetails *OrderDeliveryDetails `json:"deliveryDetails,omitempty"` // Id: The REST id of the order. Globally unique. Id string `json:"id,omitempty"` // Kind: Identifies what kind of resource this is. Value: the fixed // string "content#order". Kind string `json:"kind,omitempty"` // LineItems: Line items that are ordered. LineItems []*OrderLineItem `json:"lineItems,omitempty"` MerchantId uint64 `json:"merchantId,omitempty,string"` // MerchantOrderId: Merchant-provided id of the order. MerchantOrderId string `json:"merchantOrderId,omitempty"` // NetAmount: The net amount for the order. For example, if an order was // originally for a grand total of $100 and a refund was issued for $20, // the net amount will be $80. NetAmount *Price `json:"netAmount,omitempty"` // PaymentMethod: The details of the payment method. PaymentMethod *OrderPaymentMethod `json:"paymentMethod,omitempty"` // PaymentStatus: The status of the payment. PaymentStatus string `json:"paymentStatus,omitempty"` // PlacedDate: The date when the order was placed, in ISO 8601 format. PlacedDate string `json:"placedDate,omitempty"` // Promotions: Deprecated. The details of the merchant provided // promotions applied to the order. More details about the program are // here. Promotions []*OrderLegacyPromotion `json:"promotions,omitempty"` // Refunds: Refunds for the order. Refunds []*OrderRefund `json:"refunds,omitempty"` // Shipments: Shipments of the order. Shipments []*OrderShipment `json:"shipments,omitempty"` // ShippingCost: The total cost of shipping for all items. ShippingCost *Price `json:"shippingCost,omitempty"` // ShippingCostTax: The tax for the total shipping cost. ShippingCostTax *Price `json:"shippingCostTax,omitempty"` // ShippingOption: The requested shipping option. ShippingOption string `json:"shippingOption,omitempty"` // Status: The status of the order. Status string `json:"status,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Acknowledged") 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. "Acknowledged") 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 *Order) MarshalJSON() ([]byte, error) { type NoMethod Order raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrderAddress struct { // Country: CLDR country code (e.g. "US"). Country string `json:"country,omitempty"` // FullAddress: Strings representing the lines of the printed label for // mailing the order, for example: // John Smith // 1600 Amphitheatre Parkway // Mountain View, CA, 94043 // United States FullAddress []string `json:"fullAddress,omitempty"` // IsPostOfficeBox: Whether the address is a post office box. IsPostOfficeBox bool `json:"isPostOfficeBox,omitempty"` // Locality: City, town or commune. May also include dependent // localities or sublocalities (e.g. neighborhoods or suburbs). Locality string `json:"locality,omitempty"` // PostalCode: Postal Code or ZIP (e.g. "94043"). PostalCode string `json:"postalCode,omitempty"` // RecipientName: Name of the recipient. RecipientName string `json:"recipientName,omitempty"` // Region: Top-level administrative subdivision of the country. For // example, a state like California ("CA") or a province like Quebec // ("QC"). Region string `json:"region,omitempty"` // StreetAddress: Street-level part of the address. StreetAddress []string `json:"streetAddress,omitempty"` // ForceSendFields is a list of field names (e.g. "Country") 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. "Country") 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 *OrderAddress) MarshalJSON() ([]byte, error) { type NoMethod OrderAddress raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrderCancellation struct { // Actor: The actor that created the cancellation. Actor string `json:"actor,omitempty"` // CreationDate: Date on which the cancellation has been created, in ISO // 8601 format. CreationDate string `json:"creationDate,omitempty"` // Quantity: The quantity that was canceled. Quantity int64 `json:"quantity,omitempty"` // Reason: The reason for the cancellation. Orders that are cancelled // with a noInventory reason will lead to the removal of the product // from Shopping Actions until you make an update to that product. This // will not affect your Shopping ads. Reason string `json:"reason,omitempty"` // ReasonText: The explanation of the reason. ReasonText string `json:"reasonText,omitempty"` // ForceSendFields is a list of field names (e.g. "Actor") 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. "Actor") 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 *OrderCancellation) MarshalJSON() ([]byte, error) { type NoMethod OrderCancellation raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrderCustomer struct { // Email: Deprecated. Email string `json:"email,omitempty"` // ExplicitMarketingPreference: Deprecated. Please use // marketingRightsInfo instead. ExplicitMarketingPreference bool `json:"explicitMarketingPreference,omitempty"` // FullName: Full name of the customer. FullName string `json:"fullName,omitempty"` // MarketingRightsInfo: Customer's marketing preferences. MarketingRightsInfo *OrderCustomerMarketingRightsInfo `json:"marketingRightsInfo,omitempty"` // ForceSendFields is a list of field names (e.g. "Email") 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. "Email") 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 *OrderCustomer) MarshalJSON() ([]byte, error) { type NoMethod OrderCustomer raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrderCustomerMarketingRightsInfo struct { // ExplicitMarketingPreference: Last known user selection regarding // marketing preferences. In certain cases this selection might not be // known, so this field would be empty. ExplicitMarketingPreference string `json:"explicitMarketingPreference,omitempty"` // LastUpdatedTimestamp: Timestamp when last time marketing preference // was updated. Could be empty, if user wasn't offered a selection yet. LastUpdatedTimestamp string `json:"lastUpdatedTimestamp,omitempty"` // MarketingEmailAddress: Email address that can be used for marketing // purposes. This field is only filled when explicitMarketingPreference // is equal to 'granted'. MarketingEmailAddress string `json:"marketingEmailAddress,omitempty"` // ForceSendFields is a list of field names (e.g. // "ExplicitMarketingPreference") 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. // "ExplicitMarketingPreference") 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 *OrderCustomerMarketingRightsInfo) MarshalJSON() ([]byte, error) { type NoMethod OrderCustomerMarketingRightsInfo raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrderDeliveryDetails struct { // Address: The delivery address Address *OrderAddress `json:"address,omitempty"` // PhoneNumber: The phone number of the person receiving the delivery. PhoneNumber string `json:"phoneNumber,omitempty"` // ForceSendFields is a list of field names (e.g. "Address") 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. "Address") 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 *OrderDeliveryDetails) MarshalJSON() ([]byte, error) { type NoMethod OrderDeliveryDetails raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrderLegacyPromotion struct { Benefits []*OrderLegacyPromotionBenefit `json:"benefits,omitempty"` // EffectiveDates: The date and time frame when the promotion is active // and ready for validation review. Note that the promotion live time // may be delayed for a few hours due to the validation review. // Start date and end date are separated by a forward slash (/). The // start date is specified by the format (YYYY-MM-DD), followed by the // letter ?T?, the time of the day when the sale starts (in Greenwich // Mean Time, GMT), followed by an expression of the time zone for the // sale. The end date is in the same format. EffectiveDates string `json:"effectiveDates,omitempty"` // GenericRedemptionCode: Optional. The text code that corresponds to // the promotion when applied on the retailer?s website. GenericRedemptionCode string `json:"genericRedemptionCode,omitempty"` // Id: The unique ID of the promotion. Id string `json:"id,omitempty"` // LongTitle: The full title of the promotion. LongTitle string `json:"longTitle,omitempty"` // ProductApplicability: Whether the promotion is applicable to all // products or only specific products. ProductApplicability string `json:"productApplicability,omitempty"` // RedemptionChannel: Indicates that the promotion is valid online. RedemptionChannel string `json:"redemptionChannel,omitempty"` // ForceSendFields is a list of field names (e.g. "Benefits") 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. "Benefits") 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 *OrderLegacyPromotion) MarshalJSON() ([]byte, error) { type NoMethod OrderLegacyPromotion raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrderLegacyPromotionBenefit struct { // Discount: The discount in the order price when the promotion is // applied. Discount *Price `json:"discount,omitempty"` // OfferIds: The OfferId(s) that were purchased in this order and map to // this specific benefit of the promotion. OfferIds []string `json:"offerIds,omitempty"` // SubType: Further describes the benefit of the promotion. Note that we // will expand on this enumeration as we support new promotion // sub-types. SubType string `json:"subType,omitempty"` // TaxImpact: The impact on tax when the promotion is applied. TaxImpact *Price `json:"taxImpact,omitempty"` // Type: Describes whether the promotion applies to products (e.g. 20% // off) or to shipping (e.g. Free Shipping). Type string `json:"type,omitempty"` // ForceSendFields is a list of field names (e.g. "Discount") 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. "Discount") 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 *OrderLegacyPromotionBenefit) MarshalJSON() ([]byte, error) { type NoMethod OrderLegacyPromotionBenefit raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrderLineItem struct { // Annotations: Annotations that are attached to the line item. Annotations []*OrderMerchantProvidedAnnotation `json:"annotations,omitempty"` // Cancellations: Cancellations of the line item. Cancellations []*OrderCancellation `json:"cancellations,omitempty"` // Id: The id of the line item. Id string `json:"id,omitempty"` // Price: Total price for the line item. For example, if two items for // $10 are purchased, the total price will be $20. Price *Price `json:"price,omitempty"` // Product: Product data from the time of the order placement. Product *OrderLineItemProduct `json:"product,omitempty"` // QuantityCanceled: Number of items canceled. QuantityCanceled int64 `json:"quantityCanceled,omitempty"` // QuantityDelivered: Number of items delivered. QuantityDelivered int64 `json:"quantityDelivered,omitempty"` // QuantityOrdered: Number of items ordered. QuantityOrdered int64 `json:"quantityOrdered,omitempty"` // QuantityPending: Number of items pending. QuantityPending int64 `json:"quantityPending,omitempty"` // QuantityReturned: Number of items returned. QuantityReturned int64 `json:"quantityReturned,omitempty"` // QuantityShipped: Number of items shipped. QuantityShipped int64 `json:"quantityShipped,omitempty"` // ReturnInfo: Details of the return policy for the line item. ReturnInfo *OrderLineItemReturnInfo `json:"returnInfo,omitempty"` // Returns: Returns of the line item. Returns []*OrderReturn `json:"returns,omitempty"` // ShippingDetails: Details of the requested shipping for the line item. ShippingDetails *OrderLineItemShippingDetails `json:"shippingDetails,omitempty"` // Tax: Total tax amount for the line item. For example, if two items // are purchased, and each have a cost tax of $2, the total tax amount // will be $4. Tax *Price `json:"tax,omitempty"` // ForceSendFields is a list of field names (e.g. "Annotations") 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. "Annotations") 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 *OrderLineItem) MarshalJSON() ([]byte, error) { type NoMethod OrderLineItem raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrderLineItemProduct struct { // Brand: Brand of the item. Brand string `json:"brand,omitempty"` // Channel: The item's channel (online or local). Channel string `json:"channel,omitempty"` // Condition: Condition or state of the item. Condition string `json:"condition,omitempty"` // ContentLanguage: The two-letter ISO 639-1 language code for the item. ContentLanguage string `json:"contentLanguage,omitempty"` // Gtin: Global Trade Item Number (GTIN) of the item. Gtin string `json:"gtin,omitempty"` // Id: The REST id of the product. Id string `json:"id,omitempty"` // ImageLink: URL of an image of the item. ImageLink string `json:"imageLink,omitempty"` // ItemGroupId: Shared identifier for all variants of the same product. ItemGroupId string `json:"itemGroupId,omitempty"` // Mpn: Manufacturer Part Number (MPN) of the item. Mpn string `json:"mpn,omitempty"` // OfferId: An identifier of the item. OfferId string `json:"offerId,omitempty"` // Price: Price of the item. Price *Price `json:"price,omitempty"` // ShownImage: URL to the cached image shown to the user when order was // placed. ShownImage string `json:"shownImage,omitempty"` // TargetCountry: The CLDR territory code of the target country of the // product. TargetCountry string `json:"targetCountry,omitempty"` // Title: The title of the product. Title string `json:"title,omitempty"` // VariantAttributes: Variant attributes for the item. These are // dimensions of the product, such as color, gender, material, pattern, // and size. You can find a comprehensive list of variant attributes // here. VariantAttributes []*OrderLineItemProductVariantAttribute `json:"variantAttributes,omitempty"` // ForceSendFields is a list of field names (e.g. "Brand") 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. "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:"-"` } func (s *OrderLineItemProduct) MarshalJSON() ([]byte, error) { type NoMethod OrderLineItemProduct raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrderLineItemProductVariantAttribute struct { // Dimension: The dimension of the variant. Dimension string `json:"dimension,omitempty"` // Value: The value for the dimension. Value string `json:"value,omitempty"` // ForceSendFields is a list of field names (e.g. "Dimension") 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. "Dimension") 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 *OrderLineItemProductVariantAttribute) MarshalJSON() ([]byte, error) { type NoMethod OrderLineItemProductVariantAttribute raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrderLineItemReturnInfo struct { // DaysToReturn: How many days later the item can be returned. DaysToReturn int64 `json:"daysToReturn,omitempty"` // IsReturnable: Whether the item is returnable. IsReturnable bool `json:"isReturnable,omitempty"` // PolicyUrl: URL of the item return policy. PolicyUrl string `json:"policyUrl,omitempty"` // ForceSendFields is a list of field names (e.g. "DaysToReturn") 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. "DaysToReturn") 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 *OrderLineItemReturnInfo) MarshalJSON() ([]byte, error) { type NoMethod OrderLineItemReturnInfo raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrderLineItemShippingDetails struct { // DeliverByDate: The delivery by date, in ISO 8601 format. DeliverByDate string `json:"deliverByDate,omitempty"` // Method: Details of the shipping method. Method *OrderLineItemShippingDetailsMethod `json:"method,omitempty"` // ShipByDate: The ship by date, in ISO 8601 format. ShipByDate string `json:"shipByDate,omitempty"` // ForceSendFields is a list of field names (e.g. "DeliverByDate") 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. "DeliverByDate") 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 *OrderLineItemShippingDetails) MarshalJSON() ([]byte, error) { type NoMethod OrderLineItemShippingDetails raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrderLineItemShippingDetailsMethod struct { // Carrier: The carrier for the shipping. Optional. See // shipments[].carrier for a list of acceptable values. Carrier string `json:"carrier,omitempty"` // MaxDaysInTransit: Maximum transit time. MaxDaysInTransit int64 `json:"maxDaysInTransit,omitempty"` // MethodName: The name of the shipping method. MethodName string `json:"methodName,omitempty"` // MinDaysInTransit: Minimum transit time. MinDaysInTransit int64 `json:"minDaysInTransit,omitempty"` // ForceSendFields is a list of field names (e.g. "Carrier") 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. "Carrier") 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 *OrderLineItemShippingDetailsMethod) MarshalJSON() ([]byte, error) { type NoMethod OrderLineItemShippingDetailsMethod raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrderMerchantProvidedAnnotation struct { // Key: Key for additional merchant provided (as key-value pairs) // annotation about the line item. Key string `json:"key,omitempty"` // Value: Value for additional merchant provided (as key-value pairs) // annotation about the line item. Value string `json:"value,omitempty"` // ForceSendFields is a list of field names (e.g. "Key") 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. "Key") 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 *OrderMerchantProvidedAnnotation) MarshalJSON() ([]byte, error) { type NoMethod OrderMerchantProvidedAnnotation raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrderPaymentMethod struct { // BillingAddress: The billing address. BillingAddress *OrderAddress `json:"billingAddress,omitempty"` // ExpirationMonth: The card expiration month (January = 1, February = 2 // etc.). ExpirationMonth int64 `json:"expirationMonth,omitempty"` // ExpirationYear: The card expiration year (4-digit, e.g. 2015). ExpirationYear int64 `json:"expirationYear,omitempty"` // LastFourDigits: The last four digits of the card number. LastFourDigits string `json:"lastFourDigits,omitempty"` // PhoneNumber: The billing phone number. PhoneNumber string `json:"phoneNumber,omitempty"` // Type: The type of instrument. // // Acceptable values are: // - "AMEX" // - "DISCOVER" // - "JCB" // - "MASTERCARD" // - "UNIONPAY" // - "VISA" // - "" Type string `json:"type,omitempty"` // ForceSendFields is a list of field names (e.g. "BillingAddress") 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. "BillingAddress") 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 *OrderPaymentMethod) MarshalJSON() ([]byte, error) { type NoMethod OrderPaymentMethod raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrderRefund struct { // Actor: The actor that created the refund. Actor string `json:"actor,omitempty"` // Amount: The amount that is refunded. Amount *Price `json:"amount,omitempty"` // CreationDate: Date on which the item has been created, in ISO 8601 // format. CreationDate string `json:"creationDate,omitempty"` // Reason: The reason for the refund. Reason string `json:"reason,omitempty"` // ReasonText: The explanation of the reason. ReasonText string `json:"reasonText,omitempty"` // ForceSendFields is a list of field names (e.g. "Actor") 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. "Actor") 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 *OrderRefund) MarshalJSON() ([]byte, error) { type NoMethod OrderRefund raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrderReturn struct { // Actor: The actor that created the refund. Actor string `json:"actor,omitempty"` // CreationDate: Date on which the item has been created, in ISO 8601 // format. CreationDate string `json:"creationDate,omitempty"` // Quantity: Quantity that is returned. Quantity int64 `json:"quantity,omitempty"` // Reason: The reason for the return. Reason string `json:"reason,omitempty"` // ReasonText: The explanation of the reason. ReasonText string `json:"reasonText,omitempty"` // ForceSendFields is a list of field names (e.g. "Actor") 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. "Actor") 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 *OrderReturn) MarshalJSON() ([]byte, error) { type NoMethod OrderReturn raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrderShipment struct { // Carrier: The carrier handling the shipment. // // Acceptable values are: // - "gsx" // - "ups" // - "usps" // - "fedex" // - "dhl" // - "ecourier" // - "cxt" // - "google" // - "ontrac" // - "emsy" // - "ont" // - "deliv" // - "dynamex" // - "lasership" // - "mpx" // - "uds" Carrier string `json:"carrier,omitempty"` // CreationDate: Date on which the shipment has been created, in ISO // 8601 format. CreationDate string `json:"creationDate,omitempty"` // DeliveryDate: Date on which the shipment has been delivered, in ISO // 8601 format. Present only if status is delivered DeliveryDate string `json:"deliveryDate,omitempty"` // Id: The id of the shipment. Id string `json:"id,omitempty"` // LineItems: The line items that are shipped. LineItems []*OrderShipmentLineItemShipment `json:"lineItems,omitempty"` // Status: The status of the shipment. Status string `json:"status,omitempty"` // TrackingId: The tracking id for the shipment. TrackingId string `json:"trackingId,omitempty"` // ForceSendFields is a list of field names (e.g. "Carrier") 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. "Carrier") 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 *OrderShipment) MarshalJSON() ([]byte, error) { type NoMethod OrderShipment raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrderShipmentLineItemShipment struct { // LineItemId: The id of the line item that is shipped. Either // lineItemId or productId is required. LineItemId string `json:"lineItemId,omitempty"` // ProductId: The ID of the product to ship. This is the REST ID used in // the products service. Either lineItemId or productId is required. ProductId string `json:"productId,omitempty"` // Quantity: The quantity that is shipped. Quantity int64 `json:"quantity,omitempty"` // ForceSendFields is a list of field names (e.g. "LineItemId") 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. "LineItemId") 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 *OrderShipmentLineItemShipment) MarshalJSON() ([]byte, error) { type NoMethod OrderShipmentLineItemShipment raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrderinvoicesCreateChargeInvoiceRequest struct { // InvoiceId: [required] The ID of the invoice. InvoiceId string `json:"invoiceId,omitempty"` // InvoiceSummary: [required] Invoice summary. InvoiceSummary *InvoiceSummary `json:"invoiceSummary,omitempty"` // LineItemInvoices: [required] Invoice details per line item. LineItemInvoices []*ShipmentInvoiceLineItemInvoice `json:"lineItemInvoices,omitempty"` // OperationId: [required] The ID of the operation, unique across all // operations for a given order. OperationId string `json:"operationId,omitempty"` // ShipmentGroupId: [required] ID of the shipment group. ShipmentGroupId string `json:"shipmentGroupId,omitempty"` // ForceSendFields is a list of field names (e.g. "InvoiceId") 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. "InvoiceId") 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 *OrderinvoicesCreateChargeInvoiceRequest) MarshalJSON() ([]byte, error) { type NoMethod OrderinvoicesCreateChargeInvoiceRequest raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrderinvoicesCreateChargeInvoiceResponse struct { // ExecutionStatus: The status of the execution. ExecutionStatus string `json:"executionStatus,omitempty"` // Kind: Identifies what kind of resource this is. Value: the fixed // string "content#orderinvoicesCreateChargeInvoiceResponse". 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. "ExecutionStatus") 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. "ExecutionStatus") 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 *OrderinvoicesCreateChargeInvoiceResponse) MarshalJSON() ([]byte, error) { type NoMethod OrderinvoicesCreateChargeInvoiceResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrderinvoicesCreateRefundInvoiceRequest struct { // InvoiceId: [required] The ID of the invoice. InvoiceId string `json:"invoiceId,omitempty"` // OperationId: [required] The ID of the operation, unique across all // operations for a given order. OperationId string `json:"operationId,omitempty"` // RefundOnlyOption: Option to create a refund-only invoice. Exactly one // of refundOnlyOption or returnOption must be provided. RefundOnlyOption *OrderinvoicesCustomBatchRequestEntryCreateRefundInvoiceRefundOption `json:"refundOnlyOption,omitempty"` // ReturnOption: Option to create an invoice for a refund and mark all // items within the invoice as returned. Exactly one of refundOnlyOption // or returnOption must be provided. ReturnOption *OrderinvoicesCustomBatchRequestEntryCreateRefundInvoiceReturnOption `json:"returnOption,omitempty"` // ShipmentInvoices: Invoice details for different shipment groups. ShipmentInvoices []*ShipmentInvoice `json:"shipmentInvoices,omitempty"` // ForceSendFields is a list of field names (e.g. "InvoiceId") 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. "InvoiceId") 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 *OrderinvoicesCreateRefundInvoiceRequest) MarshalJSON() ([]byte, error) { type NoMethod OrderinvoicesCreateRefundInvoiceRequest raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrderinvoicesCreateRefundInvoiceResponse struct { // ExecutionStatus: The status of the execution. ExecutionStatus string `json:"executionStatus,omitempty"` // Kind: Identifies what kind of resource this is. Value: the fixed // string "content#orderinvoicesCreateRefundInvoiceResponse". 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. "ExecutionStatus") 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. "ExecutionStatus") 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 *OrderinvoicesCreateRefundInvoiceResponse) MarshalJSON() ([]byte, error) { type NoMethod OrderinvoicesCreateRefundInvoiceResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrderinvoicesCustomBatchRequestEntryCreateRefundInvoiceRefundOption struct { // Description: Optional description of the refund reason. Description string `json:"description,omitempty"` // Reason: [required] Reason for the refund. Reason string `json:"reason,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 *OrderinvoicesCustomBatchRequestEntryCreateRefundInvoiceRefundOption) MarshalJSON() ([]byte, error) { type NoMethod OrderinvoicesCustomBatchRequestEntryCreateRefundInvoiceRefundOption raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrderinvoicesCustomBatchRequestEntryCreateRefundInvoiceReturnOption struct { // Description: Optional description of the return reason. Description string `json:"description,omitempty"` // Reason: [required] Reason for the return. Reason string `json:"reason,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 *OrderinvoicesCustomBatchRequestEntryCreateRefundInvoiceReturnOption) MarshalJSON() ([]byte, error) { type NoMethod OrderinvoicesCustomBatchRequestEntryCreateRefundInvoiceReturnOption raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrderpaymentsNotifyAuthApprovedRequest struct { AuthAmountPretax *Price `json:"authAmountPretax,omitempty"` AuthAmountTax *Price `json:"authAmountTax,omitempty"` // ForceSendFields is a list of field names (e.g. "AuthAmountPretax") 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. "AuthAmountPretax") 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 *OrderpaymentsNotifyAuthApprovedRequest) MarshalJSON() ([]byte, error) { type NoMethod OrderpaymentsNotifyAuthApprovedRequest raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrderpaymentsNotifyAuthApprovedResponse struct { // ExecutionStatus: The status of the execution. ExecutionStatus string `json:"executionStatus,omitempty"` // Kind: Identifies what kind of resource this is. Value: the fixed // string "content#orderpaymentsNotifyAuthApprovedResponse". 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. "ExecutionStatus") 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. "ExecutionStatus") 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 *OrderpaymentsNotifyAuthApprovedResponse) MarshalJSON() ([]byte, error) { type NoMethod OrderpaymentsNotifyAuthApprovedResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrderpaymentsNotifyAuthDeclinedRequest struct { // DeclineReason: Reason why payment authorization was declined. DeclineReason string `json:"declineReason,omitempty"` // ForceSendFields is a list of field names (e.g. "DeclineReason") 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. "DeclineReason") 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 *OrderpaymentsNotifyAuthDeclinedRequest) MarshalJSON() ([]byte, error) { type NoMethod OrderpaymentsNotifyAuthDeclinedRequest raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrderpaymentsNotifyAuthDeclinedResponse struct { // ExecutionStatus: The status of the execution. ExecutionStatus string `json:"executionStatus,omitempty"` // Kind: Identifies what kind of resource this is. Value: the fixed // string "content#orderpaymentsNotifyAuthDeclinedResponse". 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. "ExecutionStatus") 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. "ExecutionStatus") 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 *OrderpaymentsNotifyAuthDeclinedResponse) MarshalJSON() ([]byte, error) { type NoMethod OrderpaymentsNotifyAuthDeclinedResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrderpaymentsNotifyChargeRequest struct { // ChargeState: Whether charge was successful. ChargeState string `json:"chargeState,omitempty"` // InvoiceId: Deprecated. Please use invoiceIds instead. InvoiceId string `json:"invoiceId,omitempty"` // InvoiceIds: Invoice IDs from the orderinvoices service that // correspond to the charge. InvoiceIds []string `json:"invoiceIds,omitempty"` // ForceSendFields is a list of field names (e.g. "ChargeState") 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. "ChargeState") 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 *OrderpaymentsNotifyChargeRequest) MarshalJSON() ([]byte, error) { type NoMethod OrderpaymentsNotifyChargeRequest raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrderpaymentsNotifyChargeResponse struct { // ExecutionStatus: The status of the execution. ExecutionStatus string `json:"executionStatus,omitempty"` // Kind: Identifies what kind of resource this is. Value: the fixed // string "content#orderpaymentsNotifyChargeResponse". 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. "ExecutionStatus") 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. "ExecutionStatus") 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 *OrderpaymentsNotifyChargeResponse) MarshalJSON() ([]byte, error) { type NoMethod OrderpaymentsNotifyChargeResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrderpaymentsNotifyRefundRequest struct { // InvoiceId: Deprecated. Please use invoiceIds instead. InvoiceId string `json:"invoiceId,omitempty"` // InvoiceIds: Invoice IDs from the orderinvoices service that // correspond to the refund. InvoiceIds []string `json:"invoiceIds,omitempty"` // RefundState: Whether refund was successful. RefundState string `json:"refundState,omitempty"` // ForceSendFields is a list of field names (e.g. "InvoiceId") 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. "InvoiceId") 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 *OrderpaymentsNotifyRefundRequest) MarshalJSON() ([]byte, error) { type NoMethod OrderpaymentsNotifyRefundRequest raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrderpaymentsNotifyRefundResponse struct { // ExecutionStatus: The status of the execution. ExecutionStatus string `json:"executionStatus,omitempty"` // Kind: Identifies what kind of resource this is. Value: the fixed // string "content#orderpaymentsNotifyRefundResponse". 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. "ExecutionStatus") 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. "ExecutionStatus") 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 *OrderpaymentsNotifyRefundResponse) MarshalJSON() ([]byte, error) { type NoMethod OrderpaymentsNotifyRefundResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrderreturnsListResponse struct { // Kind: Identifies what kind of resource this is. Value: the fixed // string "content#orderreturnsListResponse". Kind string `json:"kind,omitempty"` // NextPageToken: The token for the retrieval of the next page of // returns. NextPageToken string `json:"nextPageToken,omitempty"` Resources []*MerchantOrderReturn `json:"resources,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 *OrderreturnsListResponse) MarshalJSON() ([]byte, error) { type NoMethod OrderreturnsListResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersAcknowledgeRequest struct { // OperationId: The ID of the operation. Unique across all operations // for a given order. OperationId string `json:"operationId,omitempty"` // ForceSendFields is a list of field names (e.g. "OperationId") 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. "OperationId") 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 *OrdersAcknowledgeRequest) MarshalJSON() ([]byte, error) { type NoMethod OrdersAcknowledgeRequest raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersAcknowledgeResponse struct { // ExecutionStatus: The status of the execution. ExecutionStatus string `json:"executionStatus,omitempty"` // Kind: Identifies what kind of resource this is. Value: the fixed // string "content#ordersAcknowledgeResponse". 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. "ExecutionStatus") 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. "ExecutionStatus") 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 *OrdersAcknowledgeResponse) MarshalJSON() ([]byte, error) { type NoMethod OrdersAcknowledgeResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersAdvanceTestOrderResponse struct { // Kind: Identifies what kind of resource this is. Value: the fixed // string "content#ordersAdvanceTestOrderResponse". 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. "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 *OrdersAdvanceTestOrderResponse) MarshalJSON() ([]byte, error) { type NoMethod OrdersAdvanceTestOrderResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersCancelLineItemRequest struct { // Amount: Deprecated. Please use amountPretax and amountTax instead. Amount *Price `json:"amount,omitempty"` // AmountPretax: Amount to refund for the cancelation. Optional. If not // set, Google will calculate the default based on the price and tax of // the items involved. The amount must not be larger than the net amount // left on the order. AmountPretax *Price `json:"amountPretax,omitempty"` // AmountTax: Tax amount that correspond to cancellation amount in // amountPretax. AmountTax *Price `json:"amountTax,omitempty"` // LineItemId: The ID of the line item to cancel. Either lineItemId or // productId is required. LineItemId string `json:"lineItemId,omitempty"` // OperationId: The ID of the operation. Unique across all operations // for a given order. OperationId string `json:"operationId,omitempty"` // ProductId: The ID of the product to cancel. This is the REST ID used // in the products service. Either lineItemId or productId is required. ProductId string `json:"productId,omitempty"` // Quantity: The quantity to cancel. Quantity int64 `json:"quantity,omitempty"` // Reason: The reason for the cancellation. Reason string `json:"reason,omitempty"` // ReasonText: The explanation of the reason. ReasonText string `json:"reasonText,omitempty"` // ForceSendFields is a list of field names (e.g. "Amount") 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. "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:"-"` } func (s *OrdersCancelLineItemRequest) MarshalJSON() ([]byte, error) { type NoMethod OrdersCancelLineItemRequest raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersCancelLineItemResponse struct { // ExecutionStatus: The status of the execution. ExecutionStatus string `json:"executionStatus,omitempty"` // Kind: Identifies what kind of resource this is. Value: the fixed // string "content#ordersCancelLineItemResponse". 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. "ExecutionStatus") 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. "ExecutionStatus") 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 *OrdersCancelLineItemResponse) MarshalJSON() ([]byte, error) { type NoMethod OrdersCancelLineItemResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersCancelRequest struct { // OperationId: The ID of the operation. Unique across all operations // for a given order. OperationId string `json:"operationId,omitempty"` // Reason: The reason for the cancellation. Reason string `json:"reason,omitempty"` // ReasonText: The explanation of the reason. ReasonText string `json:"reasonText,omitempty"` // ForceSendFields is a list of field names (e.g. "OperationId") 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. "OperationId") 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 *OrdersCancelRequest) MarshalJSON() ([]byte, error) { type NoMethod OrdersCancelRequest raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersCancelResponse struct { // ExecutionStatus: The status of the execution. ExecutionStatus string `json:"executionStatus,omitempty"` // Kind: Identifies what kind of resource this is. Value: the fixed // string "content#ordersCancelResponse". 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. "ExecutionStatus") 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. "ExecutionStatus") 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 *OrdersCancelResponse) MarshalJSON() ([]byte, error) { type NoMethod OrdersCancelResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersCancelTestOrderByCustomerRequest struct { // Reason: The reason for the cancellation. Reason string `json:"reason,omitempty"` // ForceSendFields is a list of field names (e.g. "Reason") 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. "Reason") 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 *OrdersCancelTestOrderByCustomerRequest) MarshalJSON() ([]byte, error) { type NoMethod OrdersCancelTestOrderByCustomerRequest raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersCancelTestOrderByCustomerResponse struct { // Kind: Identifies what kind of resource this is. Value: the fixed // string "content#ordersCancelTestOrderByCustomerResponse". 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. "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 *OrdersCancelTestOrderByCustomerResponse) MarshalJSON() ([]byte, error) { type NoMethod OrdersCancelTestOrderByCustomerResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersCreateTestOrderRequest struct { // Country: The CLDR territory code of the country of the test order to // create. Affects the currency and addresses of orders created via // template_name, or the addresses of orders created via // test_order. // // Acceptable values are: // - "US" // - "FR" Defaults to US. Country string `json:"country,omitempty"` // TemplateName: The test order template to use. Specify as an // alternative to testOrder as a shortcut for retrieving a template and // then creating an order using that template. TemplateName string `json:"templateName,omitempty"` // TestOrder: The test order to create. TestOrder *TestOrder `json:"testOrder,omitempty"` // ForceSendFields is a list of field names (e.g. "Country") 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. "Country") 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 *OrdersCreateTestOrderRequest) MarshalJSON() ([]byte, error) { type NoMethod OrdersCreateTestOrderRequest raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersCreateTestOrderResponse struct { // Kind: Identifies what kind of resource this is. Value: the fixed // string "content#ordersCreateTestOrderResponse". Kind string `json:"kind,omitempty"` // OrderId: The ID of the newly created test order. OrderId string `json:"orderId,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 *OrdersCreateTestOrderResponse) MarshalJSON() ([]byte, error) { type NoMethod OrdersCreateTestOrderResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersCreateTestReturnRequest struct { // Items: Returned items. Items []*OrdersCustomBatchRequestEntryCreateTestReturnReturnItem `json:"items,omitempty"` // ForceSendFields is a list of field names (e.g. "Items") 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. "Items") 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 *OrdersCreateTestReturnRequest) MarshalJSON() ([]byte, error) { type NoMethod OrdersCreateTestReturnRequest raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersCreateTestReturnResponse struct { // Kind: Identifies what kind of resource this is. Value: the fixed // string "content#ordersCreateTestReturnResponse". Kind string `json:"kind,omitempty"` // ReturnId: The ID of the newly created test order return. ReturnId string `json:"returnId,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 *OrdersCreateTestReturnResponse) MarshalJSON() ([]byte, error) { type NoMethod OrdersCreateTestReturnResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersCustomBatchRequest struct { // Entries: The request entries to be processed in the batch. Entries []*OrdersCustomBatchRequestEntry `json:"entries,omitempty"` // ForceSendFields is a list of field names (e.g. "Entries") 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. "Entries") 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 *OrdersCustomBatchRequest) MarshalJSON() ([]byte, error) { type NoMethod OrdersCustomBatchRequest raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersCustomBatchRequestEntry struct { // BatchId: An entry ID, unique within the batch request. BatchId int64 `json:"batchId,omitempty"` // Cancel: Required for cancel method. Cancel *OrdersCustomBatchRequestEntryCancel `json:"cancel,omitempty"` // CancelLineItem: Required for cancelLineItem method. CancelLineItem *OrdersCustomBatchRequestEntryCancelLineItem `json:"cancelLineItem,omitempty"` // InStoreRefundLineItem: Required for inStoreReturnLineItem method. InStoreRefundLineItem *OrdersCustomBatchRequestEntryInStoreRefundLineItem `json:"inStoreRefundLineItem,omitempty"` // MerchantId: The ID of the managing account. MerchantId uint64 `json:"merchantId,omitempty,string"` // MerchantOrderId: The merchant order id. Required for // updateMerchantOrderId and getByMerchantOrderId methods. MerchantOrderId string `json:"merchantOrderId,omitempty"` // Method: The method to apply. Method string `json:"method,omitempty"` // OperationId: The ID of the operation. Unique across all operations // for a given order. Required for all methods beside get and // getByMerchantOrderId. OperationId string `json:"operationId,omitempty"` // OrderId: The ID of the order. Required for all methods beside // getByMerchantOrderId. OrderId string `json:"orderId,omitempty"` // Refund: Required for refund method. Refund *OrdersCustomBatchRequestEntryRefund `json:"refund,omitempty"` // RejectReturnLineItem: Required for rejectReturnLineItem method. RejectReturnLineItem *OrdersCustomBatchRequestEntryRejectReturnLineItem `json:"rejectReturnLineItem,omitempty"` // ReturnLineItem: Required for returnLineItem method. ReturnLineItem *OrdersCustomBatchRequestEntryReturnLineItem `json:"returnLineItem,omitempty"` // ReturnRefundLineItem: Required for returnRefundLineItem method. ReturnRefundLineItem *OrdersCustomBatchRequestEntryReturnRefundLineItem `json:"returnRefundLineItem,omitempty"` // SetLineItemMetadata: Required for setLineItemMetadata method. SetLineItemMetadata *OrdersCustomBatchRequestEntrySetLineItemMetadata `json:"setLineItemMetadata,omitempty"` // ShipLineItems: Required for shipLineItems method. ShipLineItems *OrdersCustomBatchRequestEntryShipLineItems `json:"shipLineItems,omitempty"` // UpdateLineItemShippingDetails: Required for // updateLineItemShippingDate method. UpdateLineItemShippingDetails *OrdersCustomBatchRequestEntryUpdateLineItemShippingDetails `json:"updateLineItemShippingDetails,omitempty"` // UpdateShipment: Required for updateShipment method. UpdateShipment *OrdersCustomBatchRequestEntryUpdateShipment `json:"updateShipment,omitempty"` // ForceSendFields is a list of field names (e.g. "BatchId") 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. "BatchId") 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 *OrdersCustomBatchRequestEntry) MarshalJSON() ([]byte, error) { type NoMethod OrdersCustomBatchRequestEntry raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersCustomBatchRequestEntryCancel struct { // Reason: The reason for the cancellation. Reason string `json:"reason,omitempty"` // ReasonText: The explanation of the reason. ReasonText string `json:"reasonText,omitempty"` // ForceSendFields is a list of field names (e.g. "Reason") 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. "Reason") 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 *OrdersCustomBatchRequestEntryCancel) MarshalJSON() ([]byte, error) { type NoMethod OrdersCustomBatchRequestEntryCancel raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersCustomBatchRequestEntryCancelLineItem struct { // Amount: Deprecated. Please use amountPretax and amountTax instead. Amount *Price `json:"amount,omitempty"` // AmountPretax: Amount to refund for the cancelation. Optional. If not // set, Google will calculate the default based on the price and tax of // the items involved. The amount must not be larger than the net amount // left on the order. AmountPretax *Price `json:"amountPretax,omitempty"` // AmountTax: Tax amount that correspond to cancellation amount in // amountPretax. AmountTax *Price `json:"amountTax,omitempty"` // LineItemId: The ID of the line item to cancel. Either lineItemId or // productId is required. LineItemId string `json:"lineItemId,omitempty"` // ProductId: The ID of the product to cancel. This is the REST ID used // in the products service. Either lineItemId or productId is required. ProductId string `json:"productId,omitempty"` // Quantity: The quantity to cancel. Quantity int64 `json:"quantity,omitempty"` // Reason: The reason for the cancellation. Reason string `json:"reason,omitempty"` // ReasonText: The explanation of the reason. ReasonText string `json:"reasonText,omitempty"` // ForceSendFields is a list of field names (e.g. "Amount") 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. "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:"-"` } func (s *OrdersCustomBatchRequestEntryCancelLineItem) MarshalJSON() ([]byte, error) { type NoMethod OrdersCustomBatchRequestEntryCancelLineItem raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersCustomBatchRequestEntryCreateTestReturnReturnItem struct { // LineItemId: The ID of the line item to return. LineItemId string `json:"lineItemId,omitempty"` // Quantity: Quantity that is returned. Quantity int64 `json:"quantity,omitempty"` // ForceSendFields is a list of field names (e.g. "LineItemId") 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. "LineItemId") 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 *OrdersCustomBatchRequestEntryCreateTestReturnReturnItem) MarshalJSON() ([]byte, error) { type NoMethod OrdersCustomBatchRequestEntryCreateTestReturnReturnItem raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersCustomBatchRequestEntryInStoreRefundLineItem struct { // AmountPretax: The amount that is refunded. Required. AmountPretax *Price `json:"amountPretax,omitempty"` // AmountTax: Tax amount that correspond to refund amount in // amountPretax. Required. AmountTax *Price `json:"amountTax,omitempty"` // LineItemId: The ID of the line item to return. Either lineItemId or // productId is required. LineItemId string `json:"lineItemId,omitempty"` // ProductId: The ID of the product to return. This is the REST ID used // in the products service. Either lineItemId or productId is required. ProductId string `json:"productId,omitempty"` // Quantity: The quantity to return and refund. Quantity int64 `json:"quantity,omitempty"` // Reason: The reason for the return. Reason string `json:"reason,omitempty"` // ReasonText: The explanation of the reason. ReasonText string `json:"reasonText,omitempty"` // ForceSendFields is a list of field names (e.g. "AmountPretax") 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. "AmountPretax") 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 *OrdersCustomBatchRequestEntryInStoreRefundLineItem) MarshalJSON() ([]byte, error) { type NoMethod OrdersCustomBatchRequestEntryInStoreRefundLineItem raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersCustomBatchRequestEntryRefund struct { // Amount: Deprecated. Please use amountPretax and amountTax instead. Amount *Price `json:"amount,omitempty"` // AmountPretax: The amount that is refunded. Either amount or // amountPretax and amountTax should be filled. AmountPretax *Price `json:"amountPretax,omitempty"` // AmountTax: Tax amount that correspond to refund amount in // amountPretax. AmountTax *Price `json:"amountTax,omitempty"` // Reason: The reason for the refund. Reason string `json:"reason,omitempty"` // ReasonText: The explanation of the reason. ReasonText string `json:"reasonText,omitempty"` // ForceSendFields is a list of field names (e.g. "Amount") 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. "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:"-"` } func (s *OrdersCustomBatchRequestEntryRefund) MarshalJSON() ([]byte, error) { type NoMethod OrdersCustomBatchRequestEntryRefund raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersCustomBatchRequestEntryRejectReturnLineItem struct { // LineItemId: The ID of the line item to return. Either lineItemId or // productId is required. LineItemId string `json:"lineItemId,omitempty"` // ProductId: The ID of the product to return. This is the REST ID used // in the products service. Either lineItemId or productId is required. ProductId string `json:"productId,omitempty"` // Quantity: The quantity to return and refund. Quantity int64 `json:"quantity,omitempty"` // Reason: The reason for the return. Reason string `json:"reason,omitempty"` // ReasonText: The explanation of the reason. ReasonText string `json:"reasonText,omitempty"` // ForceSendFields is a list of field names (e.g. "LineItemId") 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. "LineItemId") 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 *OrdersCustomBatchRequestEntryRejectReturnLineItem) MarshalJSON() ([]byte, error) { type NoMethod OrdersCustomBatchRequestEntryRejectReturnLineItem raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersCustomBatchRequestEntryReturnLineItem struct { // LineItemId: The ID of the line item to return. Either lineItemId or // productId is required. LineItemId string `json:"lineItemId,omitempty"` // ProductId: The ID of the product to return. This is the REST ID used // in the products service. Either lineItemId or productId is required. ProductId string `json:"productId,omitempty"` // Quantity: The quantity to return. Quantity int64 `json:"quantity,omitempty"` // Reason: The reason for the return. Reason string `json:"reason,omitempty"` // ReasonText: The explanation of the reason. ReasonText string `json:"reasonText,omitempty"` // ForceSendFields is a list of field names (e.g. "LineItemId") 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. "LineItemId") 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 *OrdersCustomBatchRequestEntryReturnLineItem) MarshalJSON() ([]byte, error) { type NoMethod OrdersCustomBatchRequestEntryReturnLineItem raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersCustomBatchRequestEntryReturnRefundLineItem struct { // AmountPretax: The amount that is refunded. If omitted, refundless // return is assumed (same as calling returnLineItem method). Optional, // but if filled then both amountPretax and amountTax must be set. AmountPretax *Price `json:"amountPretax,omitempty"` // AmountTax: Tax amount that correspond to refund amount in // amountPretax. AmountTax *Price `json:"amountTax,omitempty"` // LineItemId: The ID of the line item to return. Either lineItemId or // productId is required. LineItemId string `json:"lineItemId,omitempty"` // ProductId: The ID of the product to return. This is the REST ID used // in the products service. Either lineItemId or productId is required. ProductId string `json:"productId,omitempty"` // Quantity: The quantity to return and refund. Quantity int64 `json:"quantity,omitempty"` // Reason: The reason for the return. Reason string `json:"reason,omitempty"` // ReasonText: The explanation of the reason. ReasonText string `json:"reasonText,omitempty"` // ForceSendFields is a list of field names (e.g. "AmountPretax") 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. "AmountPretax") 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 *OrdersCustomBatchRequestEntryReturnRefundLineItem) MarshalJSON() ([]byte, error) { type NoMethod OrdersCustomBatchRequestEntryReturnRefundLineItem raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersCustomBatchRequestEntrySetLineItemMetadata struct { Annotations []*OrderMerchantProvidedAnnotation `json:"annotations,omitempty"` // LineItemId: The ID of the line item to set metadata. Either // lineItemId or productId is required. LineItemId string `json:"lineItemId,omitempty"` // ProductId: The ID of the product to set metadata. This is the REST ID // used in the products service. Either lineItemId or productId is // required. ProductId string `json:"productId,omitempty"` // ForceSendFields is a list of field names (e.g. "Annotations") 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. "Annotations") 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 *OrdersCustomBatchRequestEntrySetLineItemMetadata) MarshalJSON() ([]byte, error) { type NoMethod OrdersCustomBatchRequestEntrySetLineItemMetadata raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersCustomBatchRequestEntryShipLineItems struct { // Carrier: Deprecated. Please use shipmentInfo instead. The carrier // handling the shipment. See shipments[].carrier in the Orders // resource representation for a list of acceptable values. Carrier string `json:"carrier,omitempty"` // LineItems: Line items to ship. LineItems []*OrderShipmentLineItemShipment `json:"lineItems,omitempty"` // ShipmentGroupId: ID of the shipment group. Required for orders that // use the orderinvoices service. ShipmentGroupId string `json:"shipmentGroupId,omitempty"` // ShipmentId: Deprecated. Please use shipmentInfo instead. The ID of // the shipment. ShipmentId string `json:"shipmentId,omitempty"` // ShipmentInfos: Shipment information. This field is repeated because a // single line item can be shipped in several packages (and have several // tracking IDs). ShipmentInfos []*OrdersCustomBatchRequestEntryShipLineItemsShipmentInfo `json:"shipmentInfos,omitempty"` // TrackingId: Deprecated. Please use shipmentInfo instead. The tracking // id for the shipment. TrackingId string `json:"trackingId,omitempty"` // ForceSendFields is a list of field names (e.g. "Carrier") 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. "Carrier") 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 *OrdersCustomBatchRequestEntryShipLineItems) MarshalJSON() ([]byte, error) { type NoMethod OrdersCustomBatchRequestEntryShipLineItems raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersCustomBatchRequestEntryShipLineItemsShipmentInfo struct { // Carrier: The carrier handling the shipment. See shipments[].carrier // in the Orders resource representation for a list of acceptable // values. Carrier string `json:"carrier,omitempty"` // ShipmentId: The ID of the shipment. ShipmentId string `json:"shipmentId,omitempty"` // TrackingId: The tracking id for the shipment. TrackingId string `json:"trackingId,omitempty"` // ForceSendFields is a list of field names (e.g. "Carrier") 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. "Carrier") 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 *OrdersCustomBatchRequestEntryShipLineItemsShipmentInfo) MarshalJSON() ([]byte, error) { type NoMethod OrdersCustomBatchRequestEntryShipLineItemsShipmentInfo raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersCustomBatchRequestEntryUpdateLineItemShippingDetails struct { // DeliverByDate: Updated delivery by date, in ISO 8601 format. If not // specified only ship by date is updated. DeliverByDate string `json:"deliverByDate,omitempty"` // LineItemId: The ID of the line item to set metadata. Either // lineItemId or productId is required. LineItemId string `json:"lineItemId,omitempty"` // ProductId: The ID of the product to set metadata. This is the REST ID // used in the products service. Either lineItemId or productId is // required. ProductId string `json:"productId,omitempty"` // ShipByDate: Updated ship by date, in ISO 8601 format. If not // specified only deliver by date is updated. ShipByDate string `json:"shipByDate,omitempty"` // ForceSendFields is a list of field names (e.g. "DeliverByDate") 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. "DeliverByDate") 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 *OrdersCustomBatchRequestEntryUpdateLineItemShippingDetails) MarshalJSON() ([]byte, error) { type NoMethod OrdersCustomBatchRequestEntryUpdateLineItemShippingDetails raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersCustomBatchRequestEntryUpdateShipment struct { // Carrier: The carrier handling the shipment. Not updated if missing. // See shipments[].carrier in the Orders resource representation for a // list of acceptable values. Carrier string `json:"carrier,omitempty"` // DeliveryDate: Date on which the shipment has been delivered, in ISO // 8601 format. Optional and can be provided only if status is // delivered. DeliveryDate string `json:"deliveryDate,omitempty"` // ShipmentId: The ID of the shipment. ShipmentId string `json:"shipmentId,omitempty"` // Status: New status for the shipment. Not updated if missing. Status string `json:"status,omitempty"` // TrackingId: The tracking id for the shipment. Not updated if missing. TrackingId string `json:"trackingId,omitempty"` // ForceSendFields is a list of field names (e.g. "Carrier") 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. "Carrier") 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 *OrdersCustomBatchRequestEntryUpdateShipment) MarshalJSON() ([]byte, error) { type NoMethod OrdersCustomBatchRequestEntryUpdateShipment raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersCustomBatchResponse struct { // Entries: The result of the execution of the batch requests. Entries []*OrdersCustomBatchResponseEntry `json:"entries,omitempty"` // Kind: Identifies what kind of resource this is. Value: the fixed // string "content#ordersCustomBatchResponse". 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. "Entries") 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. "Entries") 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 *OrdersCustomBatchResponse) MarshalJSON() ([]byte, error) { type NoMethod OrdersCustomBatchResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersCustomBatchResponseEntry struct { // BatchId: The ID of the request entry this entry responds to. BatchId int64 `json:"batchId,omitempty"` // Errors: A list of errors defined if and only if the request failed. Errors *Errors `json:"errors,omitempty"` // ExecutionStatus: The status of the execution. Only defined if // - the request was successful; and // - the method is not get, getByMerchantOrderId, or one of the test // methods. ExecutionStatus string `json:"executionStatus,omitempty"` // Kind: Identifies what kind of resource this is. Value: the fixed // string "content#ordersCustomBatchResponseEntry". Kind string `json:"kind,omitempty"` // Order: The retrieved order. Only defined if the method is get and if // the request was successful. Order *Order `json:"order,omitempty"` // ForceSendFields is a list of field names (e.g. "BatchId") 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. "BatchId") 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 *OrdersCustomBatchResponseEntry) MarshalJSON() ([]byte, error) { type NoMethod OrdersCustomBatchResponseEntry raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersGetByMerchantOrderIdResponse struct { // Kind: Identifies what kind of resource this is. Value: the fixed // string "content#ordersGetByMerchantOrderIdResponse". Kind string `json:"kind,omitempty"` // Order: The requested order. Order *Order `json:"order,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 *OrdersGetByMerchantOrderIdResponse) MarshalJSON() ([]byte, error) { type NoMethod OrdersGetByMerchantOrderIdResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersGetTestOrderTemplateResponse struct { // Kind: Identifies what kind of resource this is. Value: the fixed // string "content#ordersGetTestOrderTemplateResponse". Kind string `json:"kind,omitempty"` // Template: The requested test order template. Template *TestOrder `json:"template,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 *OrdersGetTestOrderTemplateResponse) MarshalJSON() ([]byte, error) { type NoMethod OrdersGetTestOrderTemplateResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersInStoreRefundLineItemRequest struct { // AmountPretax: The amount that is refunded. Required. AmountPretax *Price `json:"amountPretax,omitempty"` // AmountTax: Tax amount that correspond to refund amount in // amountPretax. Required. AmountTax *Price `json:"amountTax,omitempty"` // LineItemId: The ID of the line item to return. Either lineItemId or // productId is required. LineItemId string `json:"lineItemId,omitempty"` // OperationId: The ID of the operation. Unique across all operations // for a given order. OperationId string `json:"operationId,omitempty"` // ProductId: The ID of the product to return. This is the REST ID used // in the products service. Either lineItemId or productId is required. ProductId string `json:"productId,omitempty"` // Quantity: The quantity to return and refund. Quantity int64 `json:"quantity,omitempty"` // Reason: The reason for the return. Reason string `json:"reason,omitempty"` // ReasonText: The explanation of the reason. ReasonText string `json:"reasonText,omitempty"` // ForceSendFields is a list of field names (e.g. "AmountPretax") 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. "AmountPretax") 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 *OrdersInStoreRefundLineItemRequest) MarshalJSON() ([]byte, error) { type NoMethod OrdersInStoreRefundLineItemRequest raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersInStoreRefundLineItemResponse struct { // ExecutionStatus: The status of the execution. ExecutionStatus string `json:"executionStatus,omitempty"` // Kind: Identifies what kind of resource this is. Value: the fixed // string "content#ordersInStoreRefundLineItemResponse". 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. "ExecutionStatus") 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. "ExecutionStatus") 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 *OrdersInStoreRefundLineItemResponse) MarshalJSON() ([]byte, error) { type NoMethod OrdersInStoreRefundLineItemResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersListResponse struct { // Kind: Identifies what kind of resource this is. Value: the fixed // string "content#ordersListResponse". Kind string `json:"kind,omitempty"` // NextPageToken: The token for the retrieval of the next page of // orders. NextPageToken string `json:"nextPageToken,omitempty"` Resources []*Order `json:"resources,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 *OrdersListResponse) MarshalJSON() ([]byte, error) { type NoMethod OrdersListResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersRefundRequest struct { // Amount: Deprecated. Please use amountPretax and amountTax instead. Amount *Price `json:"amount,omitempty"` // AmountPretax: The amount that is refunded. Either amount or // amountPretax and amountTax should be filled. AmountPretax *Price `json:"amountPretax,omitempty"` // AmountTax: Tax amount that correspond to refund amount in // amountPretax. AmountTax *Price `json:"amountTax,omitempty"` // OperationId: The ID of the operation. Unique across all operations // for a given order. OperationId string `json:"operationId,omitempty"` // Reason: The reason for the refund. Reason string `json:"reason,omitempty"` // ReasonText: The explanation of the reason. ReasonText string `json:"reasonText,omitempty"` // ForceSendFields is a list of field names (e.g. "Amount") 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. "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:"-"` } func (s *OrdersRefundRequest) MarshalJSON() ([]byte, error) { type NoMethod OrdersRefundRequest raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersRefundResponse struct { // ExecutionStatus: The status of the execution. ExecutionStatus string `json:"executionStatus,omitempty"` // Kind: Identifies what kind of resource this is. Value: the fixed // string "content#ordersRefundResponse". 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. "ExecutionStatus") 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. "ExecutionStatus") 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 *OrdersRefundResponse) MarshalJSON() ([]byte, error) { type NoMethod OrdersRefundResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersRejectReturnLineItemRequest struct { // LineItemId: The ID of the line item to return. Either lineItemId or // productId is required. LineItemId string `json:"lineItemId,omitempty"` // OperationId: The ID of the operation. Unique across all operations // for a given order. OperationId string `json:"operationId,omitempty"` // ProductId: The ID of the product to return. This is the REST ID used // in the products service. Either lineItemId or productId is required. ProductId string `json:"productId,omitempty"` // Quantity: The quantity to return and refund. Quantity int64 `json:"quantity,omitempty"` // Reason: The reason for the return. Reason string `json:"reason,omitempty"` // ReasonText: The explanation of the reason. ReasonText string `json:"reasonText,omitempty"` // ForceSendFields is a list of field names (e.g. "LineItemId") 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. "LineItemId") 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 *OrdersRejectReturnLineItemRequest) MarshalJSON() ([]byte, error) { type NoMethod OrdersRejectReturnLineItemRequest raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersRejectReturnLineItemResponse struct { // ExecutionStatus: The status of the execution. ExecutionStatus string `json:"executionStatus,omitempty"` // Kind: Identifies what kind of resource this is. Value: the fixed // string "content#ordersRejectReturnLineItemResponse". 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. "ExecutionStatus") 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. "ExecutionStatus") 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 *OrdersRejectReturnLineItemResponse) MarshalJSON() ([]byte, error) { type NoMethod OrdersRejectReturnLineItemResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersReturnLineItemRequest struct { // LineItemId: The ID of the line item to return. Either lineItemId or // productId is required. LineItemId string `json:"lineItemId,omitempty"` // OperationId: The ID of the operation. Unique across all operations // for a given order. OperationId string `json:"operationId,omitempty"` // ProductId: The ID of the product to return. This is the REST ID used // in the products service. Either lineItemId or productId is required. ProductId string `json:"productId,omitempty"` // Quantity: The quantity to return. Quantity int64 `json:"quantity,omitempty"` // Reason: The reason for the return. Reason string `json:"reason,omitempty"` // ReasonText: The explanation of the reason. ReasonText string `json:"reasonText,omitempty"` // ForceSendFields is a list of field names (e.g. "LineItemId") 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. "LineItemId") 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 *OrdersReturnLineItemRequest) MarshalJSON() ([]byte, error) { type NoMethod OrdersReturnLineItemRequest raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersReturnLineItemResponse struct { // ExecutionStatus: The status of the execution. ExecutionStatus string `json:"executionStatus,omitempty"` // Kind: Identifies what kind of resource this is. Value: the fixed // string "content#ordersReturnLineItemResponse". 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. "ExecutionStatus") 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. "ExecutionStatus") 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 *OrdersReturnLineItemResponse) MarshalJSON() ([]byte, error) { type NoMethod OrdersReturnLineItemResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersReturnRefundLineItemRequest struct { // AmountPretax: The amount that is refunded. If omitted, refundless // return is assumed (same as calling returnLineItem method). Optional, // but if filled then both amountPretax and amountTax must be set. AmountPretax *Price `json:"amountPretax,omitempty"` // AmountTax: Tax amount that correspond to refund amount in // amountPretax. AmountTax *Price `json:"amountTax,omitempty"` // LineItemId: The ID of the line item to return. Either lineItemId or // productId is required. LineItemId string `json:"lineItemId,omitempty"` // OperationId: The ID of the operation. Unique across all operations // for a given order. OperationId string `json:"operationId,omitempty"` // ProductId: The ID of the product to return. This is the REST ID used // in the products service. Either lineItemId or productId is required. ProductId string `json:"productId,omitempty"` // Quantity: The quantity to return and refund. Quantity int64 `json:"quantity,omitempty"` // Reason: The reason for the return. Reason string `json:"reason,omitempty"` // ReasonText: The explanation of the reason. ReasonText string `json:"reasonText,omitempty"` // ForceSendFields is a list of field names (e.g. "AmountPretax") 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. "AmountPretax") 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 *OrdersReturnRefundLineItemRequest) MarshalJSON() ([]byte, error) { type NoMethod OrdersReturnRefundLineItemRequest raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersReturnRefundLineItemResponse struct { // ExecutionStatus: The status of the execution. ExecutionStatus string `json:"executionStatus,omitempty"` // Kind: Identifies what kind of resource this is. Value: the fixed // string "content#ordersReturnRefundLineItemResponse". 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. "ExecutionStatus") 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. "ExecutionStatus") 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 *OrdersReturnRefundLineItemResponse) MarshalJSON() ([]byte, error) { type NoMethod OrdersReturnRefundLineItemResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersSetLineItemMetadataRequest struct { Annotations []*OrderMerchantProvidedAnnotation `json:"annotations,omitempty"` // LineItemId: The ID of the line item to set metadata. Either // lineItemId or productId is required. LineItemId string `json:"lineItemId,omitempty"` // OperationId: The ID of the operation. Unique across all operations // for a given order. OperationId string `json:"operationId,omitempty"` // ProductId: The ID of the product to set metadata. This is the REST ID // used in the products service. Either lineItemId or productId is // required. ProductId string `json:"productId,omitempty"` // ForceSendFields is a list of field names (e.g. "Annotations") 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. "Annotations") 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 *OrdersSetLineItemMetadataRequest) MarshalJSON() ([]byte, error) { type NoMethod OrdersSetLineItemMetadataRequest raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersSetLineItemMetadataResponse struct { // ExecutionStatus: The status of the execution. ExecutionStatus string `json:"executionStatus,omitempty"` // Kind: Identifies what kind of resource this is. Value: the fixed // string "content#ordersSetLineItemMetadataResponse". 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. "ExecutionStatus") 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. "ExecutionStatus") 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 *OrdersSetLineItemMetadataResponse) MarshalJSON() ([]byte, error) { type NoMethod OrdersSetLineItemMetadataResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersShipLineItemsRequest struct { // Carrier: Deprecated. Please use shipmentInfo instead. The carrier // handling the shipment. See shipments[].carrier in the Orders // resource representation for a list of acceptable values. Carrier string `json:"carrier,omitempty"` // LineItems: Line items to ship. LineItems []*OrderShipmentLineItemShipment `json:"lineItems,omitempty"` // OperationId: The ID of the operation. Unique across all operations // for a given order. OperationId string `json:"operationId,omitempty"` // ShipmentGroupId: ID of the shipment group. Required for orders that // use the orderinvoices service. ShipmentGroupId string `json:"shipmentGroupId,omitempty"` // ShipmentId: Deprecated. Please use shipmentInfo instead. The ID of // the shipment. ShipmentId string `json:"shipmentId,omitempty"` // ShipmentInfos: Shipment information. This field is repeated because a // single line item can be shipped in several packages (and have several // tracking IDs). ShipmentInfos []*OrdersCustomBatchRequestEntryShipLineItemsShipmentInfo `json:"shipmentInfos,omitempty"` // TrackingId: Deprecated. Please use shipmentInfo instead. The tracking // id for the shipment. TrackingId string `json:"trackingId,omitempty"` // ForceSendFields is a list of field names (e.g. "Carrier") 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. "Carrier") 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 *OrdersShipLineItemsRequest) MarshalJSON() ([]byte, error) { type NoMethod OrdersShipLineItemsRequest raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersShipLineItemsResponse struct { // ExecutionStatus: The status of the execution. ExecutionStatus string `json:"executionStatus,omitempty"` // Kind: Identifies what kind of resource this is. Value: the fixed // string "content#ordersShipLineItemsResponse". 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. "ExecutionStatus") 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. "ExecutionStatus") 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 *OrdersShipLineItemsResponse) MarshalJSON() ([]byte, error) { type NoMethod OrdersShipLineItemsResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersUpdateLineItemShippingDetailsRequest struct { // DeliverByDate: Updated delivery by date, in ISO 8601 format. If not // specified only ship by date is updated. DeliverByDate string `json:"deliverByDate,omitempty"` // LineItemId: The ID of the line item to set metadata. Either // lineItemId or productId is required. LineItemId string `json:"lineItemId,omitempty"` // OperationId: The ID of the operation. Unique across all operations // for a given order. OperationId string `json:"operationId,omitempty"` // ProductId: The ID of the product to set metadata. This is the REST ID // used in the products service. Either lineItemId or productId is // required. ProductId string `json:"productId,omitempty"` // ShipByDate: Updated ship by date, in ISO 8601 format. If not // specified only deliver by date is updated. ShipByDate string `json:"shipByDate,omitempty"` // ForceSendFields is a list of field names (e.g. "DeliverByDate") 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. "DeliverByDate") 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 *OrdersUpdateLineItemShippingDetailsRequest) MarshalJSON() ([]byte, error) { type NoMethod OrdersUpdateLineItemShippingDetailsRequest raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersUpdateLineItemShippingDetailsResponse struct { // ExecutionStatus: The status of the execution. ExecutionStatus string `json:"executionStatus,omitempty"` // Kind: Identifies what kind of resource this is. Value: the fixed // string "content#ordersUpdateLineItemShippingDetailsResponse". 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. "ExecutionStatus") 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. "ExecutionStatus") 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 *OrdersUpdateLineItemShippingDetailsResponse) MarshalJSON() ([]byte, error) { type NoMethod OrdersUpdateLineItemShippingDetailsResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersUpdateMerchantOrderIdRequest struct { // MerchantOrderId: The merchant order id to be assigned to the order. // Must be unique per merchant. MerchantOrderId string `json:"merchantOrderId,omitempty"` // OperationId: The ID of the operation. Unique across all operations // for a given order. OperationId string `json:"operationId,omitempty"` // ForceSendFields is a list of field names (e.g. "MerchantOrderId") 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. "MerchantOrderId") 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 *OrdersUpdateMerchantOrderIdRequest) MarshalJSON() ([]byte, error) { type NoMethod OrdersUpdateMerchantOrderIdRequest raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersUpdateMerchantOrderIdResponse struct { // ExecutionStatus: The status of the execution. ExecutionStatus string `json:"executionStatus,omitempty"` // Kind: Identifies what kind of resource this is. Value: the fixed // string "content#ordersUpdateMerchantOrderIdResponse". 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. "ExecutionStatus") 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. "ExecutionStatus") 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 *OrdersUpdateMerchantOrderIdResponse) MarshalJSON() ([]byte, error) { type NoMethod OrdersUpdateMerchantOrderIdResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersUpdateShipmentRequest struct { // Carrier: The carrier handling the shipment. Not updated if missing. // See shipments[].carrier in the Orders resource representation for a // list of acceptable values. Carrier string `json:"carrier,omitempty"` // DeliveryDate: Date on which the shipment has been delivered, in ISO // 8601 format. Optional and can be provided only if status is // delivered. DeliveryDate string `json:"deliveryDate,omitempty"` // OperationId: The ID of the operation. Unique across all operations // for a given order. OperationId string `json:"operationId,omitempty"` // ShipmentId: The ID of the shipment. ShipmentId string `json:"shipmentId,omitempty"` // Status: New status for the shipment. Not updated if missing. Status string `json:"status,omitempty"` // TrackingId: The tracking id for the shipment. Not updated if missing. TrackingId string `json:"trackingId,omitempty"` // ForceSendFields is a list of field names (e.g. "Carrier") 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. "Carrier") 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 *OrdersUpdateShipmentRequest) MarshalJSON() ([]byte, error) { type NoMethod OrdersUpdateShipmentRequest raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type OrdersUpdateShipmentResponse struct { // ExecutionStatus: The status of the execution. ExecutionStatus string `json:"executionStatus,omitempty"` // Kind: Identifies what kind of resource this is. Value: the fixed // string "content#ordersUpdateShipmentResponse". 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. "ExecutionStatus") 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. "ExecutionStatus") 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 *OrdersUpdateShipmentResponse) MarshalJSON() ([]byte, error) { type NoMethod OrdersUpdateShipmentResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type Price struct { // Currency: The currency of the price. Currency string `json:"currency,omitempty"` // Value: The price represented as a number. Value string `json:"value,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) } type Promotion struct { // PromotionAmount: [required] Amount of the promotion. The values here // are the promotion applied to the unit price pretax and to the total // of the tax amounts. PromotionAmount *Amount `json:"promotionAmount,omitempty"` // PromotionId: [required] ID of the promotion. PromotionId string `json:"promotionId,omitempty"` // ForceSendFields is a list of field names (e.g. "PromotionAmount") 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. "PromotionAmount") 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 *Promotion) MarshalJSON() ([]byte, error) { type NoMethod Promotion raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type RefundReason struct { Description string `json:"description,omitempty"` ReasonCode string `json:"reasonCode,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 *RefundReason) MarshalJSON() ([]byte, error) { type NoMethod RefundReason raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type ReturnShipment struct { CreationDate string `json:"creationDate,omitempty"` ReturnMethodType string `json:"returnMethodType,omitempty"` ShipmentId string `json:"shipmentId,omitempty"` ShipmentTrackingInfos []*ShipmentTrackingInfo `json:"shipmentTrackingInfos,omitempty"` // ForceSendFields is a list of field names (e.g. "CreationDate") 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. "CreationDate") 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 *ReturnShipment) MarshalJSON() ([]byte, error) { type NoMethod ReturnShipment raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type ShipmentInvoice struct { // InvoiceSummary: [required] Invoice summary. InvoiceSummary *InvoiceSummary `json:"invoiceSummary,omitempty"` // LineItemInvoices: [required] Invoice details per line item. LineItemInvoices []*ShipmentInvoiceLineItemInvoice `json:"lineItemInvoices,omitempty"` // ShipmentGroupId: [required] ID of the shipment group. ShipmentGroupId string `json:"shipmentGroupId,omitempty"` // ForceSendFields is a list of field names (e.g. "InvoiceSummary") 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. "InvoiceSummary") 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 *ShipmentInvoice) MarshalJSON() ([]byte, error) { type NoMethod ShipmentInvoice raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type ShipmentInvoiceLineItemInvoice struct { // LineItemId: ID of the line item. Either lineItemId or productId must // be set. LineItemId string `json:"lineItemId,omitempty"` // ProductId: ID of the product. This is the REST ID used in the // products service. Either lineItemId or productId must be set. ProductId string `json:"productId,omitempty"` // ShipmentUnitIds: [required] Unit IDs to define specific units within // the line item. ShipmentUnitIds []string `json:"shipmentUnitIds,omitempty"` // UnitInvoice: [required] Invoice details for a single unit. UnitInvoice *UnitInvoice `json:"unitInvoice,omitempty"` // ForceSendFields is a list of field names (e.g. "LineItemId") 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. "LineItemId") 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 *ShipmentInvoiceLineItemInvoice) MarshalJSON() ([]byte, error) { type NoMethod ShipmentInvoiceLineItemInvoice raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type ShipmentTrackingInfo struct { Carrier string `json:"carrier,omitempty"` TrackingNumber string `json:"trackingNumber,omitempty"` // ForceSendFields is a list of field names (e.g. "Carrier") 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. "Carrier") 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 *ShipmentTrackingInfo) MarshalJSON() ([]byte, error) { type NoMethod ShipmentTrackingInfo raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type TestOrder struct { // Customer: The details of the customer who placed the order. Customer *TestOrderCustomer `json:"customer,omitempty"` // EnableOrderinvoices: Whether the orderinvoices service should support // this order. EnableOrderinvoices bool `json:"enableOrderinvoices,omitempty"` // Kind: Identifies what kind of resource this is. Value: the fixed // string "content#testOrder". Kind string `json:"kind,omitempty"` // LineItems: Line items that are ordered. At least one line item must // be provided. LineItems []*TestOrderLineItem `json:"lineItems,omitempty"` // NotificationMode: Determines if test order must be pulled by merchant // or pushed to merchant via push integration. NotificationMode string `json:"notificationMode,omitempty"` // PaymentMethod: The details of the payment method. PaymentMethod *TestOrderPaymentMethod `json:"paymentMethod,omitempty"` // PredefinedDeliveryAddress: Identifier of one of the predefined // delivery addresses for the delivery. PredefinedDeliveryAddress string `json:"predefinedDeliveryAddress,omitempty"` // Promotions: Deprecated. The details of the merchant provided // promotions applied to the order. More details about the program are // here. Promotions []*OrderLegacyPromotion `json:"promotions,omitempty"` // ShippingCost: The total cost of shipping for all items. ShippingCost *Price `json:"shippingCost,omitempty"` // ShippingCostTax: The tax for the total shipping cost. ShippingCostTax *Price `json:"shippingCostTax,omitempty"` // ShippingOption: The requested shipping option. ShippingOption string `json:"shippingOption,omitempty"` // ForceSendFields is a list of field names (e.g. "Customer") 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. "Customer") 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 *TestOrder) MarshalJSON() ([]byte, error) { type NoMethod TestOrder raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type TestOrderCustomer struct { // Email: Deprecated. Email string `json:"email,omitempty"` // ExplicitMarketingPreference: Deprecated. Please use // marketingRightsInfo instead. ExplicitMarketingPreference bool `json:"explicitMarketingPreference,omitempty"` // FullName: Full name of the customer. FullName string `json:"fullName,omitempty"` // MarketingRightsInfo: Customer's marketing preferences. MarketingRightsInfo *TestOrderCustomerMarketingRightsInfo `json:"marketingRightsInfo,omitempty"` // ForceSendFields is a list of field names (e.g. "Email") 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. "Email") 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 *TestOrderCustomer) MarshalJSON() ([]byte, error) { type NoMethod TestOrderCustomer raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type TestOrderCustomerMarketingRightsInfo struct { // ExplicitMarketingPreference: Last know user use selection regards // marketing preferences. In certain cases selection might not be known, // so this field would be empty. ExplicitMarketingPreference string `json:"explicitMarketingPreference,omitempty"` // LastUpdatedTimestamp: Timestamp when last time marketing preference // was updated. Could be empty, if user wasn't offered a selection yet. LastUpdatedTimestamp string `json:"lastUpdatedTimestamp,omitempty"` // ForceSendFields is a list of field names (e.g. // "ExplicitMarketingPreference") 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. // "ExplicitMarketingPreference") 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 *TestOrderCustomerMarketingRightsInfo) MarshalJSON() ([]byte, error) { type NoMethod TestOrderCustomerMarketingRightsInfo raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type TestOrderLineItem struct { // Product: Product data from the time of the order placement. Product *TestOrderLineItemProduct `json:"product,omitempty"` // QuantityOrdered: Number of items ordered. QuantityOrdered int64 `json:"quantityOrdered,omitempty"` // ReturnInfo: Details of the return policy for the line item. ReturnInfo *OrderLineItemReturnInfo `json:"returnInfo,omitempty"` // ShippingDetails: Details of the requested shipping for the line item. ShippingDetails *OrderLineItemShippingDetails `json:"shippingDetails,omitempty"` // UnitTax: Unit tax for the line item. UnitTax *Price `json:"unitTax,omitempty"` // ForceSendFields is a list of field names (e.g. "Product") 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. "Product") 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 *TestOrderLineItem) MarshalJSON() ([]byte, error) { type NoMethod TestOrderLineItem raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type TestOrderLineItemProduct struct { // Brand: Brand of the item. Brand string `json:"brand,omitempty"` // Channel: The item's channel. Channel string `json:"channel,omitempty"` // Condition: Condition or state of the item. Condition string `json:"condition,omitempty"` // ContentLanguage: The two-letter ISO 639-1 language code for the item. ContentLanguage string `json:"contentLanguage,omitempty"` // Gtin: Global Trade Item Number (GTIN) of the item. Optional. Gtin string `json:"gtin,omitempty"` // ImageLink: URL of an image of the item. ImageLink string `json:"imageLink,omitempty"` // ItemGroupId: Shared identifier for all variants of the same product. // Optional. ItemGroupId string `json:"itemGroupId,omitempty"` // Mpn: Manufacturer Part Number (MPN) of the item. Optional. Mpn string `json:"mpn,omitempty"` // OfferId: An identifier of the item. OfferId string `json:"offerId,omitempty"` // Price: The price for the product. Price *Price `json:"price,omitempty"` // TargetCountry: The CLDR territory code of the target country of the // product. TargetCountry string `json:"targetCountry,omitempty"` // Title: The title of the product. Title string `json:"title,omitempty"` // VariantAttributes: Variant attributes for the item. Optional. VariantAttributes []*OrderLineItemProductVariantAttribute `json:"variantAttributes,omitempty"` // ForceSendFields is a list of field names (e.g. "Brand") 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. "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:"-"` } func (s *TestOrderLineItemProduct) MarshalJSON() ([]byte, error) { type NoMethod TestOrderLineItemProduct raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type TestOrderPaymentMethod struct { // ExpirationMonth: The card expiration month (January = 1, February = 2 // etc.). ExpirationMonth int64 `json:"expirationMonth,omitempty"` // ExpirationYear: The card expiration year (4-digit, e.g. 2015). ExpirationYear int64 `json:"expirationYear,omitempty"` // LastFourDigits: The last four digits of the card number. LastFourDigits string `json:"lastFourDigits,omitempty"` // PredefinedBillingAddress: The billing address. PredefinedBillingAddress string `json:"predefinedBillingAddress,omitempty"` // Type: The type of instrument. Note that real orders might have // different values than the four values accepted by createTestOrder. Type string `json:"type,omitempty"` // ForceSendFields is a list of field names (e.g. "ExpirationMonth") 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. "ExpirationMonth") 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 *TestOrderPaymentMethod) MarshalJSON() ([]byte, error) { type NoMethod TestOrderPaymentMethod raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type UnitInvoice struct { // AdditionalCharges: Additional charges for a unit, e.g. shipping // costs. AdditionalCharges []*UnitInvoiceAdditionalCharge `json:"additionalCharges,omitempty"` // Promotions: Promotions applied to a unit. Promotions []*Promotion `json:"promotions,omitempty"` // UnitPricePretax: [required] Price of the unit, before applying taxes. UnitPricePretax *Price `json:"unitPricePretax,omitempty"` // UnitPriceTaxes: Tax amounts to apply to the unit price. UnitPriceTaxes []*UnitInvoiceTaxLine `json:"unitPriceTaxes,omitempty"` // ForceSendFields is a list of field names (e.g. "AdditionalCharges") // 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. "AdditionalCharges") 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 *UnitInvoice) MarshalJSON() ([]byte, error) { type NoMethod UnitInvoice raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type UnitInvoiceAdditionalCharge struct { // AdditionalChargeAmount: [required] Amount of the additional charge. AdditionalChargeAmount *Amount `json:"additionalChargeAmount,omitempty"` // AdditionalChargePromotions: Promotions applied to the additional // charge. AdditionalChargePromotions []*Promotion `json:"additionalChargePromotions,omitempty"` // Type: [required] Type of the additional charge. Type string `json:"type,omitempty"` // ForceSendFields is a list of field names (e.g. // "AdditionalChargeAmount") 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. "AdditionalChargeAmount") // 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 *UnitInvoiceAdditionalCharge) MarshalJSON() ([]byte, error) { type NoMethod UnitInvoiceAdditionalCharge raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type UnitInvoiceTaxLine struct { // TaxAmount: [required] Tax amount for the tax type. TaxAmount *Price `json:"taxAmount,omitempty"` // TaxName: Optional name of the tax type. This should only be provided // if taxType is otherFeeTax. TaxName string `json:"taxName,omitempty"` // TaxType: [required] Type of the tax. TaxType string `json:"taxType,omitempty"` // ForceSendFields is a list of field names (e.g. "TaxAmount") 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. "TaxAmount") 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 *UnitInvoiceTaxLine) MarshalJSON() ([]byte, error) { type NoMethod UnitInvoiceTaxLine raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // method id "content.orderinvoices.createchargeinvoice": type OrderinvoicesCreatechargeinvoiceCall struct { s *APIService merchantId uint64 orderId string orderinvoicescreatechargeinvoicerequest *OrderinvoicesCreateChargeInvoiceRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Createchargeinvoice: Creates a charge invoice for a shipment group, // and triggers a charge capture for non-facilitated payment orders. func (r *OrderinvoicesService) Createchargeinvoice(merchantId uint64, orderId string, orderinvoicescreatechargeinvoicerequest *OrderinvoicesCreateChargeInvoiceRequest) *OrderinvoicesCreatechargeinvoiceCall { c := &OrderinvoicesCreatechargeinvoiceCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.merchantId = merchantId c.orderId = orderId c.orderinvoicescreatechargeinvoicerequest = orderinvoicescreatechargeinvoicerequest 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 *OrderinvoicesCreatechargeinvoiceCall) Fields(s ...googleapi.Field) *OrderinvoicesCreatechargeinvoiceCall { 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 *OrderinvoicesCreatechargeinvoiceCall) Context(ctx context.Context) *OrderinvoicesCreatechargeinvoiceCall { 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 *OrderinvoicesCreatechargeinvoiceCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *OrderinvoicesCreatechargeinvoiceCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/1.13.7 gdcl/20200203") 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.orderinvoicescreatechargeinvoicerequest) 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, "{merchantId}/orderinvoices/{orderId}/createChargeInvoice") 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{ "merchantId": strconv.FormatUint(c.merchantId, 10), "orderId": c.orderId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "content.orderinvoices.createchargeinvoice" call. // Exactly one of *OrderinvoicesCreateChargeInvoiceResponse or error // will be non-nil. Any non-2xx status code is an error. Response // headers are in either // *OrderinvoicesCreateChargeInvoiceResponse.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 *OrderinvoicesCreatechargeinvoiceCall) Do(opts ...googleapi.CallOption) (*OrderinvoicesCreateChargeInvoiceResponse, 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 := &OrderinvoicesCreateChargeInvoiceResponse{ 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 charge invoice for a shipment group, and triggers a charge capture for non-facilitated payment orders.", // "httpMethod": "POST", // "id": "content.orderinvoices.createchargeinvoice", // "parameterOrder": [ // "merchantId", // "orderId" // ], // "parameters": { // "merchantId": { // "description": "The ID of the account that manages the order. This cannot be a multi-client account.", // "format": "uint64", // "location": "path", // "required": true, // "type": "string" // }, // "orderId": { // "description": "The ID of the order.", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{merchantId}/orderinvoices/{orderId}/createChargeInvoice", // "request": { // "$ref": "OrderinvoicesCreateChargeInvoiceRequest" // }, // "response": { // "$ref": "OrderinvoicesCreateChargeInvoiceResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/content" // ] // } } // method id "content.orderinvoices.createrefundinvoice": type OrderinvoicesCreaterefundinvoiceCall struct { s *APIService merchantId uint64 orderId string orderinvoicescreaterefundinvoicerequest *OrderinvoicesCreateRefundInvoiceRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Createrefundinvoice: Creates a refund invoice for one or more // shipment groups, and triggers a refund for non-facilitated payment // orders. This can only be used for line items that have previously // been charged using createChargeInvoice. All amounts (except for the // summary) are incremental with respect to the previous invoice. func (r *OrderinvoicesService) Createrefundinvoice(merchantId uint64, orderId string, orderinvoicescreaterefundinvoicerequest *OrderinvoicesCreateRefundInvoiceRequest) *OrderinvoicesCreaterefundinvoiceCall { c := &OrderinvoicesCreaterefundinvoiceCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.merchantId = merchantId c.orderId = orderId c.orderinvoicescreaterefundinvoicerequest = orderinvoicescreaterefundinvoicerequest 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 *OrderinvoicesCreaterefundinvoiceCall) Fields(s ...googleapi.Field) *OrderinvoicesCreaterefundinvoiceCall { 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 *OrderinvoicesCreaterefundinvoiceCall) Context(ctx context.Context) *OrderinvoicesCreaterefundinvoiceCall { 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 *OrderinvoicesCreaterefundinvoiceCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *OrderinvoicesCreaterefundinvoiceCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/1.13.7 gdcl/20200203") 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.orderinvoicescreaterefundinvoicerequest) 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, "{merchantId}/orderinvoices/{orderId}/createRefundInvoice") 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{ "merchantId": strconv.FormatUint(c.merchantId, 10), "orderId": c.orderId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "content.orderinvoices.createrefundinvoice" call. // Exactly one of *OrderinvoicesCreateRefundInvoiceResponse or error // will be non-nil. Any non-2xx status code is an error. Response // headers are in either // *OrderinvoicesCreateRefundInvoiceResponse.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 *OrderinvoicesCreaterefundinvoiceCall) Do(opts ...googleapi.CallOption) (*OrderinvoicesCreateRefundInvoiceResponse, 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 := &OrderinvoicesCreateRefundInvoiceResponse{ 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 refund invoice for one or more shipment groups, and triggers a refund for non-facilitated payment orders. This can only be used for line items that have previously been charged using createChargeInvoice. All amounts (except for the summary) are incremental with respect to the previous invoice.", // "httpMethod": "POST", // "id": "content.orderinvoices.createrefundinvoice", // "parameterOrder": [ // "merchantId", // "orderId" // ], // "parameters": { // "merchantId": { // "description": "The ID of the account that manages the order. This cannot be a multi-client account.", // "format": "uint64", // "location": "path", // "required": true, // "type": "string" // }, // "orderId": { // "description": "The ID of the order.", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{merchantId}/orderinvoices/{orderId}/createRefundInvoice", // "request": { // "$ref": "OrderinvoicesCreateRefundInvoiceRequest" // }, // "response": { // "$ref": "OrderinvoicesCreateRefundInvoiceResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/content" // ] // } } // method id "content.orderpayments.notifyauthapproved": type OrderpaymentsNotifyauthapprovedCall struct { s *APIService merchantId uint64 orderId string orderpaymentsnotifyauthapprovedrequest *OrderpaymentsNotifyAuthApprovedRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Notifyauthapproved: Notify about successfully authorizing user's // payment method for a given amount. func (r *OrderpaymentsService) Notifyauthapproved(merchantId uint64, orderId string, orderpaymentsnotifyauthapprovedrequest *OrderpaymentsNotifyAuthApprovedRequest) *OrderpaymentsNotifyauthapprovedCall { c := &OrderpaymentsNotifyauthapprovedCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.merchantId = merchantId c.orderId = orderId c.orderpaymentsnotifyauthapprovedrequest = orderpaymentsnotifyauthapprovedrequest 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 *OrderpaymentsNotifyauthapprovedCall) Fields(s ...googleapi.Field) *OrderpaymentsNotifyauthapprovedCall { 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 *OrderpaymentsNotifyauthapprovedCall) Context(ctx context.Context) *OrderpaymentsNotifyauthapprovedCall { 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 *OrderpaymentsNotifyauthapprovedCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *OrderpaymentsNotifyauthapprovedCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/1.13.7 gdcl/20200203") 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.orderpaymentsnotifyauthapprovedrequest) 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, "{merchantId}/orderpayments/{orderId}/notifyAuthApproved") 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{ "merchantId": strconv.FormatUint(c.merchantId, 10), "orderId": c.orderId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "content.orderpayments.notifyauthapproved" call. // Exactly one of *OrderpaymentsNotifyAuthApprovedResponse or error will // be non-nil. Any non-2xx status code is an error. Response headers are // in either // *OrderpaymentsNotifyAuthApprovedResponse.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 *OrderpaymentsNotifyauthapprovedCall) Do(opts ...googleapi.CallOption) (*OrderpaymentsNotifyAuthApprovedResponse, 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 := &OrderpaymentsNotifyAuthApprovedResponse{ 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": "Notify about successfully authorizing user's payment method for a given amount.", // "httpMethod": "POST", // "id": "content.orderpayments.notifyauthapproved", // "parameterOrder": [ // "merchantId", // "orderId" // ], // "parameters": { // "merchantId": { // "description": "The ID of the account that manages the order. This cannot be a multi-client account.", // "format": "uint64", // "location": "path", // "required": true, // "type": "string" // }, // "orderId": { // "description": "The ID of the order for for which payment authorization is happening.", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{merchantId}/orderpayments/{orderId}/notifyAuthApproved", // "request": { // "$ref": "OrderpaymentsNotifyAuthApprovedRequest" // }, // "response": { // "$ref": "OrderpaymentsNotifyAuthApprovedResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/content" // ] // } } // method id "content.orderpayments.notifyauthdeclined": type OrderpaymentsNotifyauthdeclinedCall struct { s *APIService merchantId uint64 orderId string orderpaymentsnotifyauthdeclinedrequest *OrderpaymentsNotifyAuthDeclinedRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Notifyauthdeclined: Notify about failure to authorize user's payment // method. func (r *OrderpaymentsService) Notifyauthdeclined(merchantId uint64, orderId string, orderpaymentsnotifyauthdeclinedrequest *OrderpaymentsNotifyAuthDeclinedRequest) *OrderpaymentsNotifyauthdeclinedCall { c := &OrderpaymentsNotifyauthdeclinedCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.merchantId = merchantId c.orderId = orderId c.orderpaymentsnotifyauthdeclinedrequest = orderpaymentsnotifyauthdeclinedrequest 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 *OrderpaymentsNotifyauthdeclinedCall) Fields(s ...googleapi.Field) *OrderpaymentsNotifyauthdeclinedCall { 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 *OrderpaymentsNotifyauthdeclinedCall) Context(ctx context.Context) *OrderpaymentsNotifyauthdeclinedCall { 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 *OrderpaymentsNotifyauthdeclinedCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *OrderpaymentsNotifyauthdeclinedCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/1.13.7 gdcl/20200203") 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.orderpaymentsnotifyauthdeclinedrequest) 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, "{merchantId}/orderpayments/{orderId}/notifyAuthDeclined") 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{ "merchantId": strconv.FormatUint(c.merchantId, 10), "orderId": c.orderId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "content.orderpayments.notifyauthdeclined" call. // Exactly one of *OrderpaymentsNotifyAuthDeclinedResponse or error will // be non-nil. Any non-2xx status code is an error. Response headers are // in either // *OrderpaymentsNotifyAuthDeclinedResponse.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 *OrderpaymentsNotifyauthdeclinedCall) Do(opts ...googleapi.CallOption) (*OrderpaymentsNotifyAuthDeclinedResponse, 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 := &OrderpaymentsNotifyAuthDeclinedResponse{ 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": "Notify about failure to authorize user's payment method.", // "httpMethod": "POST", // "id": "content.orderpayments.notifyauthdeclined", // "parameterOrder": [ // "merchantId", // "orderId" // ], // "parameters": { // "merchantId": { // "description": "The ID of the account that manages the order. This cannot be a multi-client account.", // "format": "uint64", // "location": "path", // "required": true, // "type": "string" // }, // "orderId": { // "description": "The ID of the order for which payment authorization was declined.", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{merchantId}/orderpayments/{orderId}/notifyAuthDeclined", // "request": { // "$ref": "OrderpaymentsNotifyAuthDeclinedRequest" // }, // "response": { // "$ref": "OrderpaymentsNotifyAuthDeclinedResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/content" // ] // } } // method id "content.orderpayments.notifycharge": type OrderpaymentsNotifychargeCall struct { s *APIService merchantId uint64 orderId string orderpaymentsnotifychargerequest *OrderpaymentsNotifyChargeRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Notifycharge: Notify about charge on user's selected payments method. func (r *OrderpaymentsService) Notifycharge(merchantId uint64, orderId string, orderpaymentsnotifychargerequest *OrderpaymentsNotifyChargeRequest) *OrderpaymentsNotifychargeCall { c := &OrderpaymentsNotifychargeCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.merchantId = merchantId c.orderId = orderId c.orderpaymentsnotifychargerequest = orderpaymentsnotifychargerequest 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 *OrderpaymentsNotifychargeCall) Fields(s ...googleapi.Field) *OrderpaymentsNotifychargeCall { 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 *OrderpaymentsNotifychargeCall) Context(ctx context.Context) *OrderpaymentsNotifychargeCall { 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 *OrderpaymentsNotifychargeCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *OrderpaymentsNotifychargeCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/1.13.7 gdcl/20200203") 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.orderpaymentsnotifychargerequest) 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, "{merchantId}/orderpayments/{orderId}/notifyCharge") 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{ "merchantId": strconv.FormatUint(c.merchantId, 10), "orderId": c.orderId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "content.orderpayments.notifycharge" call. // Exactly one of *OrderpaymentsNotifyChargeResponse or error will be // non-nil. Any non-2xx status code is an error. Response headers are in // either *OrderpaymentsNotifyChargeResponse.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 *OrderpaymentsNotifychargeCall) Do(opts ...googleapi.CallOption) (*OrderpaymentsNotifyChargeResponse, 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 := &OrderpaymentsNotifyChargeResponse{ 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": "Notify about charge on user's selected payments method.", // "httpMethod": "POST", // "id": "content.orderpayments.notifycharge", // "parameterOrder": [ // "merchantId", // "orderId" // ], // "parameters": { // "merchantId": { // "description": "The ID of the account that manages the order. This cannot be a multi-client account.", // "format": "uint64", // "location": "path", // "required": true, // "type": "string" // }, // "orderId": { // "description": "The ID of the order for which charge is happening.", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{merchantId}/orderpayments/{orderId}/notifyCharge", // "request": { // "$ref": "OrderpaymentsNotifyChargeRequest" // }, // "response": { // "$ref": "OrderpaymentsNotifyChargeResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/content" // ] // } } // method id "content.orderpayments.notifyrefund": type OrderpaymentsNotifyrefundCall struct { s *APIService merchantId uint64 orderId string orderpaymentsnotifyrefundrequest *OrderpaymentsNotifyRefundRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Notifyrefund: Notify about refund on user's selected payments method. func (r *OrderpaymentsService) Notifyrefund(merchantId uint64, orderId string, orderpaymentsnotifyrefundrequest *OrderpaymentsNotifyRefundRequest) *OrderpaymentsNotifyrefundCall { c := &OrderpaymentsNotifyrefundCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.merchantId = merchantId c.orderId = orderId c.orderpaymentsnotifyrefundrequest = orderpaymentsnotifyrefundrequest 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 *OrderpaymentsNotifyrefundCall) Fields(s ...googleapi.Field) *OrderpaymentsNotifyrefundCall { 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 *OrderpaymentsNotifyrefundCall) Context(ctx context.Context) *OrderpaymentsNotifyrefundCall { 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 *OrderpaymentsNotifyrefundCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *OrderpaymentsNotifyrefundCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/1.13.7 gdcl/20200203") 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.orderpaymentsnotifyrefundrequest) 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, "{merchantId}/orderpayments/{orderId}/notifyRefund") 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{ "merchantId": strconv.FormatUint(c.merchantId, 10), "orderId": c.orderId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "content.orderpayments.notifyrefund" call. // Exactly one of *OrderpaymentsNotifyRefundResponse or error will be // non-nil. Any non-2xx status code is an error. Response headers are in // either *OrderpaymentsNotifyRefundResponse.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 *OrderpaymentsNotifyrefundCall) Do(opts ...googleapi.CallOption) (*OrderpaymentsNotifyRefundResponse, 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 := &OrderpaymentsNotifyRefundResponse{ 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": "Notify about refund on user's selected payments method.", // "httpMethod": "POST", // "id": "content.orderpayments.notifyrefund", // "parameterOrder": [ // "merchantId", // "orderId" // ], // "parameters": { // "merchantId": { // "description": "The ID of the account that manages the order. This cannot be a multi-client account.", // "format": "uint64", // "location": "path", // "required": true, // "type": "string" // }, // "orderId": { // "description": "The ID of the order for which charge is happening.", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{merchantId}/orderpayments/{orderId}/notifyRefund", // "request": { // "$ref": "OrderpaymentsNotifyRefundRequest" // }, // "response": { // "$ref": "OrderpaymentsNotifyRefundResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/content" // ] // } } // method id "content.orderreturns.get": type OrderreturnsGetCall struct { s *APIService merchantId uint64 returnId string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // Get: Retrieves an order return from your Merchant Center account. func (r *OrderreturnsService) Get(merchantId uint64, returnId string) *OrderreturnsGetCall { c := &OrderreturnsGetCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.merchantId = merchantId c.returnId = returnId 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 *OrderreturnsGetCall) Fields(s ...googleapi.Field) *OrderreturnsGetCall { 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 *OrderreturnsGetCall) IfNoneMatch(entityTag string) *OrderreturnsGetCall { 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 *OrderreturnsGetCall) Context(ctx context.Context) *OrderreturnsGetCall { 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 *OrderreturnsGetCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *OrderreturnsGetCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/1.13.7 gdcl/20200203") 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, "{merchantId}/orderreturns/{returnId}") 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{ "merchantId": strconv.FormatUint(c.merchantId, 10), "returnId": c.returnId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "content.orderreturns.get" call. // Exactly one of *MerchantOrderReturn or error will be non-nil. Any // non-2xx status code is an error. Response headers are in either // *MerchantOrderReturn.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 *OrderreturnsGetCall) Do(opts ...googleapi.CallOption) (*MerchantOrderReturn, 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 := &MerchantOrderReturn{ 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": "Retrieves an order return from your Merchant Center account.", // "httpMethod": "GET", // "id": "content.orderreturns.get", // "parameterOrder": [ // "merchantId", // "returnId" // ], // "parameters": { // "merchantId": { // "description": "The ID of the account that manages the order. This cannot be a multi-client account.", // "format": "uint64", // "location": "path", // "required": true, // "type": "string" // }, // "returnId": { // "description": "Merchant order return ID generated by Google.", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{merchantId}/orderreturns/{returnId}", // "response": { // "$ref": "MerchantOrderReturn" // }, // "scopes": [ // "https://www.googleapis.com/auth/content" // ] // } } // method id "content.orderreturns.list": type OrderreturnsListCall struct { s *APIService merchantId uint64 urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // List: Lists order returns in your Merchant Center account. func (r *OrderreturnsService) List(merchantId uint64) *OrderreturnsListCall { c := &OrderreturnsListCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.merchantId = merchantId return c } // CreatedEndDate sets the optional parameter "createdEndDate": Obtains // order returns created before this date (inclusively), in ISO 8601 // format. func (c *OrderreturnsListCall) CreatedEndDate(createdEndDate string) *OrderreturnsListCall { c.urlParams_.Set("createdEndDate", createdEndDate) return c } // CreatedStartDate sets the optional parameter "createdStartDate": // Obtains order returns created after this date (inclusively), in ISO // 8601 format. func (c *OrderreturnsListCall) CreatedStartDate(createdStartDate string) *OrderreturnsListCall { c.urlParams_.Set("createdStartDate", createdStartDate) return c } // MaxResults sets the optional parameter "maxResults": The maximum // number of order returns to return in the response, used for paging. // The default value is 25 returns per page, and the maximum allowed // value is 250 returns per page. func (c *OrderreturnsListCall) MaxResults(maxResults int64) *OrderreturnsListCall { c.urlParams_.Set("maxResults", fmt.Sprint(maxResults)) return c } // OrderBy sets the optional parameter "orderBy": Return the results in // the specified order. // // Possible values: // "returnCreationTimeAsc" // "returnCreationTimeDesc" func (c *OrderreturnsListCall) OrderBy(orderBy string) *OrderreturnsListCall { c.urlParams_.Set("orderBy", orderBy) return c } // PageToken sets the optional parameter "pageToken": The token returned // by the previous request. func (c *OrderreturnsListCall) PageToken(pageToken string) *OrderreturnsListCall { c.urlParams_.Set("pageToken", pageToken) 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 *OrderreturnsListCall) Fields(s ...googleapi.Field) *OrderreturnsListCall { 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 *OrderreturnsListCall) IfNoneMatch(entityTag string) *OrderreturnsListCall { 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 *OrderreturnsListCall) Context(ctx context.Context) *OrderreturnsListCall { 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 *OrderreturnsListCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *OrderreturnsListCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/1.13.7 gdcl/20200203") 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, "{merchantId}/orderreturns") 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{ "merchantId": strconv.FormatUint(c.merchantId, 10), }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "content.orderreturns.list" call. // Exactly one of *OrderreturnsListResponse or error will be non-nil. // Any non-2xx status code is an error. Response headers are in either // *OrderreturnsListResponse.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 *OrderreturnsListCall) Do(opts ...googleapi.CallOption) (*OrderreturnsListResponse, 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 := &OrderreturnsListResponse{ 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 order returns in your Merchant Center account.", // "httpMethod": "GET", // "id": "content.orderreturns.list", // "parameterOrder": [ // "merchantId" // ], // "parameters": { // "createdEndDate": { // "description": "Obtains order returns created before this date (inclusively), in ISO 8601 format.", // "location": "query", // "type": "string" // }, // "createdStartDate": { // "description": "Obtains order returns created after this date (inclusively), in ISO 8601 format.", // "location": "query", // "type": "string" // }, // "maxResults": { // "description": "The maximum number of order returns to return in the response, used for paging. The default value is 25 returns per page, and the maximum allowed value is 250 returns per page.", // "format": "uint32", // "location": "query", // "type": "integer" // }, // "merchantId": { // "description": "The ID of the account that manages the order. This cannot be a multi-client account.", // "format": "uint64", // "location": "path", // "required": true, // "type": "string" // }, // "orderBy": { // "description": "Return the results in the specified order.", // "enum": [ // "returnCreationTimeAsc", // "returnCreationTimeDesc" // ], // "enumDescriptions": [ // "", // "" // ], // "location": "query", // "type": "string" // }, // "pageToken": { // "description": "The token returned by the previous request.", // "location": "query", // "type": "string" // } // }, // "path": "{merchantId}/orderreturns", // "response": { // "$ref": "OrderreturnsListResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/content" // ] // } } // 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. func (c *OrderreturnsListCall) Pages(ctx context.Context, f func(*OrderreturnsListResponse) error) error { c.ctx_ = ctx defer c.PageToken(c.urlParams_.Get("pageToken")) // reset paging to original point for { x, err := c.Do() if err != nil { return err } if err := f(x); err != nil { return err } if x.NextPageToken == "" { return nil } c.PageToken(x.NextPageToken) } } // method id "content.orders.acknowledge": type OrdersAcknowledgeCall struct { s *APIService merchantId uint64 orderId string ordersacknowledgerequest *OrdersAcknowledgeRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Acknowledge: Marks an order as acknowledged. func (r *OrdersService) Acknowledge(merchantId uint64, orderId string, ordersacknowledgerequest *OrdersAcknowledgeRequest) *OrdersAcknowledgeCall { c := &OrdersAcknowledgeCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.merchantId = merchantId c.orderId = orderId c.ordersacknowledgerequest = ordersacknowledgerequest 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 *OrdersAcknowledgeCall) Fields(s ...googleapi.Field) *OrdersAcknowledgeCall { 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 *OrdersAcknowledgeCall) Context(ctx context.Context) *OrdersAcknowledgeCall { 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 *OrdersAcknowledgeCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *OrdersAcknowledgeCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/1.13.7 gdcl/20200203") 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.ordersacknowledgerequest) 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, "{merchantId}/orders/{orderId}/acknowledge") 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{ "merchantId": strconv.FormatUint(c.merchantId, 10), "orderId": c.orderId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "content.orders.acknowledge" call. // Exactly one of *OrdersAcknowledgeResponse or error will be non-nil. // Any non-2xx status code is an error. Response headers are in either // *OrdersAcknowledgeResponse.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 *OrdersAcknowledgeCall) Do(opts ...googleapi.CallOption) (*OrdersAcknowledgeResponse, 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 := &OrdersAcknowledgeResponse{ 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": "Marks an order as acknowledged.", // "httpMethod": "POST", // "id": "content.orders.acknowledge", // "parameterOrder": [ // "merchantId", // "orderId" // ], // "parameters": { // "merchantId": { // "description": "The ID of the account that manages the order. This cannot be a multi-client account.", // "format": "uint64", // "location": "path", // "required": true, // "type": "string" // }, // "orderId": { // "description": "The ID of the order.", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{merchantId}/orders/{orderId}/acknowledge", // "request": { // "$ref": "OrdersAcknowledgeRequest" // }, // "response": { // "$ref": "OrdersAcknowledgeResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/content" // ] // } } // method id "content.orders.advancetestorder": type OrdersAdvancetestorderCall struct { s *APIService merchantId uint64 orderId string urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Advancetestorder: Sandbox only. Moves a test order from state // "inProgress" to state "pendingShipment". func (r *OrdersService) Advancetestorder(merchantId uint64, orderId string) *OrdersAdvancetestorderCall { c := &OrdersAdvancetestorderCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.merchantId = merchantId c.orderId = orderId 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 *OrdersAdvancetestorderCall) Fields(s ...googleapi.Field) *OrdersAdvancetestorderCall { 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 *OrdersAdvancetestorderCall) Context(ctx context.Context) *OrdersAdvancetestorderCall { 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 *OrdersAdvancetestorderCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *OrdersAdvancetestorderCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/1.13.7 gdcl/20200203") 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, "{merchantId}/testorders/{orderId}/advance") 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{ "merchantId": strconv.FormatUint(c.merchantId, 10), "orderId": c.orderId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "content.orders.advancetestorder" call. // Exactly one of *OrdersAdvanceTestOrderResponse or error will be // non-nil. Any non-2xx status code is an error. Response headers are in // either *OrdersAdvanceTestOrderResponse.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 *OrdersAdvancetestorderCall) Do(opts ...googleapi.CallOption) (*OrdersAdvanceTestOrderResponse, 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 := &OrdersAdvanceTestOrderResponse{ 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": "Sandbox only. Moves a test order from state \"inProgress\" to state \"pendingShipment\".", // "httpMethod": "POST", // "id": "content.orders.advancetestorder", // "parameterOrder": [ // "merchantId", // "orderId" // ], // "parameters": { // "merchantId": { // "description": "The ID of the account that manages the order. This cannot be a multi-client account.", // "format": "uint64", // "location": "path", // "required": true, // "type": "string" // }, // "orderId": { // "description": "The ID of the test order to modify.", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{merchantId}/testorders/{orderId}/advance", // "response": { // "$ref": "OrdersAdvanceTestOrderResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/content" // ] // } } // method id "content.orders.cancel": type OrdersCancelCall struct { s *APIService merchantId uint64 orderId string orderscancelrequest *OrdersCancelRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Cancel: Cancels all line items in an order, making a full refund. func (r *OrdersService) Cancel(merchantId uint64, orderId string, orderscancelrequest *OrdersCancelRequest) *OrdersCancelCall { c := &OrdersCancelCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.merchantId = merchantId c.orderId = orderId c.orderscancelrequest = orderscancelrequest 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 *OrdersCancelCall) Fields(s ...googleapi.Field) *OrdersCancelCall { 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 *OrdersCancelCall) Context(ctx context.Context) *OrdersCancelCall { 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 *OrdersCancelCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *OrdersCancelCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/1.13.7 gdcl/20200203") 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.orderscancelrequest) 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, "{merchantId}/orders/{orderId}/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{ "merchantId": strconv.FormatUint(c.merchantId, 10), "orderId": c.orderId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "content.orders.cancel" call. // Exactly one of *OrdersCancelResponse or error will be non-nil. Any // non-2xx status code is an error. Response headers are in either // *OrdersCancelResponse.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 *OrdersCancelCall) Do(opts ...googleapi.CallOption) (*OrdersCancelResponse, 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 := &OrdersCancelResponse{ 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": "Cancels all line items in an order, making a full refund.", // "httpMethod": "POST", // "id": "content.orders.cancel", // "parameterOrder": [ // "merchantId", // "orderId" // ], // "parameters": { // "merchantId": { // "description": "The ID of the account that manages the order. This cannot be a multi-client account.", // "format": "uint64", // "location": "path", // "required": true, // "type": "string" // }, // "orderId": { // "description": "The ID of the order to cancel.", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{merchantId}/orders/{orderId}/cancel", // "request": { // "$ref": "OrdersCancelRequest" // }, // "response": { // "$ref": "OrdersCancelResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/content" // ] // } } // method id "content.orders.cancellineitem": type OrdersCancellineitemCall struct { s *APIService merchantId uint64 orderId string orderscancellineitemrequest *OrdersCancelLineItemRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Cancellineitem: Cancels a line item, making a full refund. func (r *OrdersService) Cancellineitem(merchantId uint64, orderId string, orderscancellineitemrequest *OrdersCancelLineItemRequest) *OrdersCancellineitemCall { c := &OrdersCancellineitemCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.merchantId = merchantId c.orderId = orderId c.orderscancellineitemrequest = orderscancellineitemrequest 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 *OrdersCancellineitemCall) Fields(s ...googleapi.Field) *OrdersCancellineitemCall { 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 *OrdersCancellineitemCall) Context(ctx context.Context) *OrdersCancellineitemCall { 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 *OrdersCancellineitemCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *OrdersCancellineitemCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/1.13.7 gdcl/20200203") 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.orderscancellineitemrequest) 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, "{merchantId}/orders/{orderId}/cancelLineItem") 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{ "merchantId": strconv.FormatUint(c.merchantId, 10), "orderId": c.orderId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "content.orders.cancellineitem" call. // Exactly one of *OrdersCancelLineItemResponse or error will be // non-nil. Any non-2xx status code is an error. Response headers are in // either *OrdersCancelLineItemResponse.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 *OrdersCancellineitemCall) Do(opts ...googleapi.CallOption) (*OrdersCancelLineItemResponse, 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 := &OrdersCancelLineItemResponse{ 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": "Cancels a line item, making a full refund.", // "httpMethod": "POST", // "id": "content.orders.cancellineitem", // "parameterOrder": [ // "merchantId", // "orderId" // ], // "parameters": { // "merchantId": { // "description": "The ID of the account that manages the order. This cannot be a multi-client account.", // "format": "uint64", // "location": "path", // "required": true, // "type": "string" // }, // "orderId": { // "description": "The ID of the order.", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{merchantId}/orders/{orderId}/cancelLineItem", // "request": { // "$ref": "OrdersCancelLineItemRequest" // }, // "response": { // "$ref": "OrdersCancelLineItemResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/content" // ] // } } // method id "content.orders.canceltestorderbycustomer": type OrdersCanceltestorderbycustomerCall struct { s *APIService merchantId uint64 orderId string orderscanceltestorderbycustomerrequest *OrdersCancelTestOrderByCustomerRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Canceltestorderbycustomer: Sandbox only. Cancels a test order for // customer-initiated cancellation. func (r *OrdersService) Canceltestorderbycustomer(merchantId uint64, orderId string, orderscanceltestorderbycustomerrequest *OrdersCancelTestOrderByCustomerRequest) *OrdersCanceltestorderbycustomerCall { c := &OrdersCanceltestorderbycustomerCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.merchantId = merchantId c.orderId = orderId c.orderscanceltestorderbycustomerrequest = orderscanceltestorderbycustomerrequest 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 *OrdersCanceltestorderbycustomerCall) Fields(s ...googleapi.Field) *OrdersCanceltestorderbycustomerCall { 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 *OrdersCanceltestorderbycustomerCall) Context(ctx context.Context) *OrdersCanceltestorderbycustomerCall { 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 *OrdersCanceltestorderbycustomerCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *OrdersCanceltestorderbycustomerCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/1.13.7 gdcl/20200203") 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.orderscanceltestorderbycustomerrequest) 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, "{merchantId}/testorders/{orderId}/cancelByCustomer") 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{ "merchantId": strconv.FormatUint(c.merchantId, 10), "orderId": c.orderId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "content.orders.canceltestorderbycustomer" call. // Exactly one of *OrdersCancelTestOrderByCustomerResponse or error will // be non-nil. Any non-2xx status code is an error. Response headers are // in either // *OrdersCancelTestOrderByCustomerResponse.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 *OrdersCanceltestorderbycustomerCall) Do(opts ...googleapi.CallOption) (*OrdersCancelTestOrderByCustomerResponse, 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 := &OrdersCancelTestOrderByCustomerResponse{ 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": "Sandbox only. Cancels a test order for customer-initiated cancellation.", // "httpMethod": "POST", // "id": "content.orders.canceltestorderbycustomer", // "parameterOrder": [ // "merchantId", // "orderId" // ], // "parameters": { // "merchantId": { // "description": "The ID of the account that manages the order. This cannot be a multi-client account.", // "format": "uint64", // "location": "path", // "required": true, // "type": "string" // }, // "orderId": { // "description": "The ID of the test order to cancel.", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{merchantId}/testorders/{orderId}/cancelByCustomer", // "request": { // "$ref": "OrdersCancelTestOrderByCustomerRequest" // }, // "response": { // "$ref": "OrdersCancelTestOrderByCustomerResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/content" // ] // } } // method id "content.orders.createtestorder": type OrdersCreatetestorderCall struct { s *APIService merchantId uint64 orderscreatetestorderrequest *OrdersCreateTestOrderRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Createtestorder: Sandbox only. Creates a test order. func (r *OrdersService) Createtestorder(merchantId uint64, orderscreatetestorderrequest *OrdersCreateTestOrderRequest) *OrdersCreatetestorderCall { c := &OrdersCreatetestorderCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.merchantId = merchantId c.orderscreatetestorderrequest = orderscreatetestorderrequest 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 *OrdersCreatetestorderCall) Fields(s ...googleapi.Field) *OrdersCreatetestorderCall { 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 *OrdersCreatetestorderCall) Context(ctx context.Context) *OrdersCreatetestorderCall { 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 *OrdersCreatetestorderCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *OrdersCreatetestorderCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/1.13.7 gdcl/20200203") 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.orderscreatetestorderrequest) 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, "{merchantId}/testorders") 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{ "merchantId": strconv.FormatUint(c.merchantId, 10), }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "content.orders.createtestorder" call. // Exactly one of *OrdersCreateTestOrderResponse or error will be // non-nil. Any non-2xx status code is an error. Response headers are in // either *OrdersCreateTestOrderResponse.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 *OrdersCreatetestorderCall) Do(opts ...googleapi.CallOption) (*OrdersCreateTestOrderResponse, 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 := &OrdersCreateTestOrderResponse{ 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": "Sandbox only. Creates a test order.", // "httpMethod": "POST", // "id": "content.orders.createtestorder", // "parameterOrder": [ // "merchantId" // ], // "parameters": { // "merchantId": { // "description": "The ID of the account that should manage the order. This cannot be a multi-client account.", // "format": "uint64", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{merchantId}/testorders", // "request": { // "$ref": "OrdersCreateTestOrderRequest" // }, // "response": { // "$ref": "OrdersCreateTestOrderResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/content" // ] // } } // method id "content.orders.createtestreturn": type OrdersCreatetestreturnCall struct { s *APIService merchantId uint64 orderId string orderscreatetestreturnrequest *OrdersCreateTestReturnRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Createtestreturn: Sandbox only. Creates a test return. func (r *OrdersService) Createtestreturn(merchantId uint64, orderId string, orderscreatetestreturnrequest *OrdersCreateTestReturnRequest) *OrdersCreatetestreturnCall { c := &OrdersCreatetestreturnCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.merchantId = merchantId c.orderId = orderId c.orderscreatetestreturnrequest = orderscreatetestreturnrequest 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 *OrdersCreatetestreturnCall) Fields(s ...googleapi.Field) *OrdersCreatetestreturnCall { 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 *OrdersCreatetestreturnCall) Context(ctx context.Context) *OrdersCreatetestreturnCall { 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 *OrdersCreatetestreturnCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *OrdersCreatetestreturnCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/1.13.7 gdcl/20200203") 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.orderscreatetestreturnrequest) 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, "{merchantId}/orders/{orderId}/testreturn") 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{ "merchantId": strconv.FormatUint(c.merchantId, 10), "orderId": c.orderId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "content.orders.createtestreturn" call. // Exactly one of *OrdersCreateTestReturnResponse or error will be // non-nil. Any non-2xx status code is an error. Response headers are in // either *OrdersCreateTestReturnResponse.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 *OrdersCreatetestreturnCall) Do(opts ...googleapi.CallOption) (*OrdersCreateTestReturnResponse, 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 := &OrdersCreateTestReturnResponse{ 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": "Sandbox only. Creates a test return.", // "httpMethod": "POST", // "id": "content.orders.createtestreturn", // "parameterOrder": [ // "merchantId", // "orderId" // ], // "parameters": { // "merchantId": { // "description": "The ID of the account that manages the order. This cannot be a multi-client account.", // "format": "uint64", // "location": "path", // "required": true, // "type": "string" // }, // "orderId": { // "description": "The ID of the order.", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{merchantId}/orders/{orderId}/testreturn", // "request": { // "$ref": "OrdersCreateTestReturnRequest" // }, // "response": { // "$ref": "OrdersCreateTestReturnResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/content" // ] // } } // method id "content.orders.custombatch": type OrdersCustombatchCall struct { s *APIService orderscustombatchrequest *OrdersCustomBatchRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Custombatch: Retrieves or modifies multiple orders in a single // request. func (r *OrdersService) Custombatch(orderscustombatchrequest *OrdersCustomBatchRequest) *OrdersCustombatchCall { c := &OrdersCustombatchCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.orderscustombatchrequest = orderscustombatchrequest 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 *OrdersCustombatchCall) Fields(s ...googleapi.Field) *OrdersCustombatchCall { 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 *OrdersCustombatchCall) Context(ctx context.Context) *OrdersCustombatchCall { 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 *OrdersCustombatchCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *OrdersCustombatchCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/1.13.7 gdcl/20200203") 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.orderscustombatchrequest) 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, "orders/batch") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "content.orders.custombatch" call. // Exactly one of *OrdersCustomBatchResponse or error will be non-nil. // Any non-2xx status code is an error. Response headers are in either // *OrdersCustomBatchResponse.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 *OrdersCustombatchCall) Do(opts ...googleapi.CallOption) (*OrdersCustomBatchResponse, 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 := &OrdersCustomBatchResponse{ 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": "Retrieves or modifies multiple orders in a single request.", // "httpMethod": "POST", // "id": "content.orders.custombatch", // "path": "orders/batch", // "request": { // "$ref": "OrdersCustomBatchRequest" // }, // "response": { // "$ref": "OrdersCustomBatchResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/content" // ] // } } // method id "content.orders.get": type OrdersGetCall struct { s *APIService merchantId uint64 orderId string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // Get: Retrieves an order from your Merchant Center account. func (r *OrdersService) Get(merchantId uint64, orderId string) *OrdersGetCall { c := &OrdersGetCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.merchantId = merchantId c.orderId = orderId 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 *OrdersGetCall) Fields(s ...googleapi.Field) *OrdersGetCall { 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 *OrdersGetCall) IfNoneMatch(entityTag string) *OrdersGetCall { 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 *OrdersGetCall) Context(ctx context.Context) *OrdersGetCall { 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 *OrdersGetCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *OrdersGetCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/1.13.7 gdcl/20200203") 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, "{merchantId}/orders/{orderId}") 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{ "merchantId": strconv.FormatUint(c.merchantId, 10), "orderId": c.orderId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "content.orders.get" call. // Exactly one of *Order or error will be non-nil. Any non-2xx status // code is an error. Response headers are in either // *Order.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 *OrdersGetCall) Do(opts ...googleapi.CallOption) (*Order, 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 := &Order{ 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": "Retrieves an order from your Merchant Center account.", // "httpMethod": "GET", // "id": "content.orders.get", // "parameterOrder": [ // "merchantId", // "orderId" // ], // "parameters": { // "merchantId": { // "description": "The ID of the account that manages the order. This cannot be a multi-client account.", // "format": "uint64", // "location": "path", // "required": true, // "type": "string" // }, // "orderId": { // "description": "The ID of the order.", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{merchantId}/orders/{orderId}", // "response": { // "$ref": "Order" // }, // "scopes": [ // "https://www.googleapis.com/auth/content" // ] // } } // method id "content.orders.getbymerchantorderid": type OrdersGetbymerchantorderidCall struct { s *APIService merchantId uint64 merchantOrderId string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // Getbymerchantorderid: Retrieves an order using merchant order id. func (r *OrdersService) Getbymerchantorderid(merchantId uint64, merchantOrderId string) *OrdersGetbymerchantorderidCall { c := &OrdersGetbymerchantorderidCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.merchantId = merchantId c.merchantOrderId = merchantOrderId 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 *OrdersGetbymerchantorderidCall) Fields(s ...googleapi.Field) *OrdersGetbymerchantorderidCall { 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 *OrdersGetbymerchantorderidCall) IfNoneMatch(entityTag string) *OrdersGetbymerchantorderidCall { 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 *OrdersGetbymerchantorderidCall) Context(ctx context.Context) *OrdersGetbymerchantorderidCall { 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 *OrdersGetbymerchantorderidCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *OrdersGetbymerchantorderidCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/1.13.7 gdcl/20200203") 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, "{merchantId}/ordersbymerchantid/{merchantOrderId}") 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{ "merchantId": strconv.FormatUint(c.merchantId, 10), "merchantOrderId": c.merchantOrderId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "content.orders.getbymerchantorderid" call. // Exactly one of *OrdersGetByMerchantOrderIdResponse or error will be // non-nil. Any non-2xx status code is an error. Response headers are in // either *OrdersGetByMerchantOrderIdResponse.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 *OrdersGetbymerchantorderidCall) Do(opts ...googleapi.CallOption) (*OrdersGetByMerchantOrderIdResponse, 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 := &OrdersGetByMerchantOrderIdResponse{ 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": "Retrieves an order using merchant order id.", // "httpMethod": "GET", // "id": "content.orders.getbymerchantorderid", // "parameterOrder": [ // "merchantId", // "merchantOrderId" // ], // "parameters": { // "merchantId": { // "description": "The ID of the account that manages the order. This cannot be a multi-client account.", // "format": "uint64", // "location": "path", // "required": true, // "type": "string" // }, // "merchantOrderId": { // "description": "The merchant order id to be looked for.", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{merchantId}/ordersbymerchantid/{merchantOrderId}", // "response": { // "$ref": "OrdersGetByMerchantOrderIdResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/content" // ] // } } // method id "content.orders.gettestordertemplate": type OrdersGettestordertemplateCall struct { s *APIService merchantId uint64 templateName string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // Gettestordertemplate: Sandbox only. Retrieves an order template that // can be used to quickly create a new order in sandbox. func (r *OrdersService) Gettestordertemplate(merchantId uint64, templateName string) *OrdersGettestordertemplateCall { c := &OrdersGettestordertemplateCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.merchantId = merchantId c.templateName = templateName return c } // Country sets the optional parameter "country": The country of the // template to retrieve. Defaults to US. func (c *OrdersGettestordertemplateCall) Country(country string) *OrdersGettestordertemplateCall { c.urlParams_.Set("country", country) 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 *OrdersGettestordertemplateCall) Fields(s ...googleapi.Field) *OrdersGettestordertemplateCall { 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 *OrdersGettestordertemplateCall) IfNoneMatch(entityTag string) *OrdersGettestordertemplateCall { 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 *OrdersGettestordertemplateCall) Context(ctx context.Context) *OrdersGettestordertemplateCall { 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 *OrdersGettestordertemplateCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *OrdersGettestordertemplateCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/1.13.7 gdcl/20200203") 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, "{merchantId}/testordertemplates/{templateName}") 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{ "merchantId": strconv.FormatUint(c.merchantId, 10), "templateName": c.templateName, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "content.orders.gettestordertemplate" call. // Exactly one of *OrdersGetTestOrderTemplateResponse or error will be // non-nil. Any non-2xx status code is an error. Response headers are in // either *OrdersGetTestOrderTemplateResponse.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 *OrdersGettestordertemplateCall) Do(opts ...googleapi.CallOption) (*OrdersGetTestOrderTemplateResponse, 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 := &OrdersGetTestOrderTemplateResponse{ 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": "Sandbox only. Retrieves an order template that can be used to quickly create a new order in sandbox.", // "httpMethod": "GET", // "id": "content.orders.gettestordertemplate", // "parameterOrder": [ // "merchantId", // "templateName" // ], // "parameters": { // "country": { // "description": "The country of the template to retrieve. Defaults to US.", // "location": "query", // "type": "string" // }, // "merchantId": { // "description": "The ID of the account that should manage the order. This cannot be a multi-client account.", // "format": "uint64", // "location": "path", // "required": true, // "type": "string" // }, // "templateName": { // "description": "The name of the template to retrieve.", // "enum": [ // "template1", // "template1a", // "template1b", // "template2" // ], // "enumDescriptions": [ // "", // "", // "", // "" // ], // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{merchantId}/testordertemplates/{templateName}", // "response": { // "$ref": "OrdersGetTestOrderTemplateResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/content" // ] // } } // method id "content.orders.instorerefundlineitem": type OrdersInstorerefundlineitemCall struct { s *APIService merchantId uint64 orderId string ordersinstorerefundlineitemrequest *OrdersInStoreRefundLineItemRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Instorerefundlineitem: Notifies that item return and refund was // handled directly by merchant outside of Google payments processing // (e.g. cash refund done in store). func (r *OrdersService) Instorerefundlineitem(merchantId uint64, orderId string, ordersinstorerefundlineitemrequest *OrdersInStoreRefundLineItemRequest) *OrdersInstorerefundlineitemCall { c := &OrdersInstorerefundlineitemCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.merchantId = merchantId c.orderId = orderId c.ordersinstorerefundlineitemrequest = ordersinstorerefundlineitemrequest 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 *OrdersInstorerefundlineitemCall) Fields(s ...googleapi.Field) *OrdersInstorerefundlineitemCall { 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 *OrdersInstorerefundlineitemCall) Context(ctx context.Context) *OrdersInstorerefundlineitemCall { 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 *OrdersInstorerefundlineitemCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *OrdersInstorerefundlineitemCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/1.13.7 gdcl/20200203") 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.ordersinstorerefundlineitemrequest) 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, "{merchantId}/orders/{orderId}/inStoreRefundLineItem") 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{ "merchantId": strconv.FormatUint(c.merchantId, 10), "orderId": c.orderId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "content.orders.instorerefundlineitem" call. // Exactly one of *OrdersInStoreRefundLineItemResponse or error will be // non-nil. Any non-2xx status code is an error. Response headers are in // either *OrdersInStoreRefundLineItemResponse.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 *OrdersInstorerefundlineitemCall) Do(opts ...googleapi.CallOption) (*OrdersInStoreRefundLineItemResponse, 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 := &OrdersInStoreRefundLineItemResponse{ 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": "Notifies that item return and refund was handled directly by merchant outside of Google payments processing (e.g. cash refund done in store).", // "httpMethod": "POST", // "id": "content.orders.instorerefundlineitem", // "parameterOrder": [ // "merchantId", // "orderId" // ], // "parameters": { // "merchantId": { // "description": "The ID of the account that manages the order. This cannot be a multi-client account.", // "format": "uint64", // "location": "path", // "required": true, // "type": "string" // }, // "orderId": { // "description": "The ID of the order.", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{merchantId}/orders/{orderId}/inStoreRefundLineItem", // "request": { // "$ref": "OrdersInStoreRefundLineItemRequest" // }, // "response": { // "$ref": "OrdersInStoreRefundLineItemResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/content" // ] // } } // method id "content.orders.list": type OrdersListCall struct { s *APIService merchantId uint64 urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // List: Lists the orders in your Merchant Center account. func (r *OrdersService) List(merchantId uint64) *OrdersListCall { c := &OrdersListCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.merchantId = merchantId return c } // Acknowledged sets the optional parameter "acknowledged": Obtains // orders that match the acknowledgement status. When set to true, // obtains orders that have been acknowledged. When false, obtains // orders that have not been acknowledged. // We recommend using this filter set to false, in conjunction with the // acknowledge call, such that only un-acknowledged orders are returned. func (c *OrdersListCall) Acknowledged(acknowledged bool) *OrdersListCall { c.urlParams_.Set("acknowledged", fmt.Sprint(acknowledged)) return c } // MaxResults sets the optional parameter "maxResults": The maximum // number of orders to return in the response, used for paging. The // default value is 25 orders per page, and the maximum allowed value is // 250 orders per page. // Known issue: All List calls will return all Orders without limit // regardless of the value of this field. func (c *OrdersListCall) MaxResults(maxResults int64) *OrdersListCall { c.urlParams_.Set("maxResults", fmt.Sprint(maxResults)) return c } // OrderBy sets the optional parameter "orderBy": The ordering of the // returned list. The only supported value are placedDate desc and // placedDate asc for now, which returns orders sorted by placement // date. "placedDate desc" stands for listing orders by placement date, // from oldest to most recent. "placedDate asc" stands for listing // orders by placement date, from most recent to oldest. In future // releases we'll support other sorting criteria. // // Possible values: // "placedDate asc" // "placedDate desc" func (c *OrdersListCall) OrderBy(orderBy string) *OrdersListCall { c.urlParams_.Set("orderBy", orderBy) return c } // PageToken sets the optional parameter "pageToken": The token returned // by the previous request. func (c *OrdersListCall) PageToken(pageToken string) *OrdersListCall { c.urlParams_.Set("pageToken", pageToken) return c } // PlacedDateEnd sets the optional parameter "placedDateEnd": Obtains // orders placed before this date (exclusively), in ISO 8601 format. func (c *OrdersListCall) PlacedDateEnd(placedDateEnd string) *OrdersListCall { c.urlParams_.Set("placedDateEnd", placedDateEnd) return c } // PlacedDateStart sets the optional parameter "placedDateStart": // Obtains orders placed after this date (inclusively), in ISO 8601 // format. func (c *OrdersListCall) PlacedDateStart(placedDateStart string) *OrdersListCall { c.urlParams_.Set("placedDateStart", placedDateStart) return c } // Statuses sets the optional parameter "statuses": Obtains orders that // match any of the specified statuses. Multiple values can be specified // with comma separation. Additionally, please note that active is a // shortcut for pendingShipment and partiallyShipped, and completed is a // shortcut for shipped , partiallyDelivered, delivered, // partiallyReturned, returned, and canceled. // // Possible values: // "active" // "canceled" // "completed" // "delivered" // "inProgress" // "partiallyDelivered" // "partiallyReturned" // "partiallyShipped" // "pendingShipment" // "returned" // "shipped" func (c *OrdersListCall) Statuses(statuses ...string) *OrdersListCall { c.urlParams_.SetMulti("statuses", append([]string{}, statuses...)) 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 *OrdersListCall) Fields(s ...googleapi.Field) *OrdersListCall { 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 *OrdersListCall) IfNoneMatch(entityTag string) *OrdersListCall { 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 *OrdersListCall) Context(ctx context.Context) *OrdersListCall { 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 *OrdersListCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *OrdersListCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/1.13.7 gdcl/20200203") 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, "{merchantId}/orders") 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{ "merchantId": strconv.FormatUint(c.merchantId, 10), }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "content.orders.list" call. // Exactly one of *OrdersListResponse or error will be non-nil. Any // non-2xx status code is an error. Response headers are in either // *OrdersListResponse.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 *OrdersListCall) Do(opts ...googleapi.CallOption) (*OrdersListResponse, 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 := &OrdersListResponse{ 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 orders in your Merchant Center account.", // "httpMethod": "GET", // "id": "content.orders.list", // "parameterOrder": [ // "merchantId" // ], // "parameters": { // "acknowledged": { // "description": "Obtains orders that match the acknowledgement status. When set to true, obtains orders that have been acknowledged. When false, obtains orders that have not been acknowledged.\nWe recommend using this filter set to false, in conjunction with the acknowledge call, such that only un-acknowledged orders are returned.", // "location": "query", // "type": "boolean" // }, // "maxResults": { // "description": "The maximum number of orders to return in the response, used for paging. The default value is 25 orders per page, and the maximum allowed value is 250 orders per page.\nKnown issue: All List calls will return all Orders without limit regardless of the value of this field.", // "format": "uint32", // "location": "query", // "type": "integer" // }, // "merchantId": { // "description": "The ID of the account that manages the order. This cannot be a multi-client account.", // "format": "uint64", // "location": "path", // "required": true, // "type": "string" // }, // "orderBy": { // "description": "The ordering of the returned list. The only supported value are placedDate desc and placedDate asc for now, which returns orders sorted by placement date. \"placedDate desc\" stands for listing orders by placement date, from oldest to most recent. \"placedDate asc\" stands for listing orders by placement date, from most recent to oldest. In future releases we'll support other sorting criteria.", // "enum": [ // "placedDate asc", // "placedDate desc" // ], // "enumDescriptions": [ // "", // "" // ], // "location": "query", // "type": "string" // }, // "pageToken": { // "description": "The token returned by the previous request.", // "location": "query", // "type": "string" // }, // "placedDateEnd": { // "description": "Obtains orders placed before this date (exclusively), in ISO 8601 format.", // "location": "query", // "type": "string" // }, // "placedDateStart": { // "description": "Obtains orders placed after this date (inclusively), in ISO 8601 format.", // "location": "query", // "type": "string" // }, // "statuses": { // "description": "Obtains orders that match any of the specified statuses. Multiple values can be specified with comma separation. Additionally, please note that active is a shortcut for pendingShipment and partiallyShipped, and completed is a shortcut for shipped , partiallyDelivered, delivered, partiallyReturned, returned, and canceled.", // "enum": [ // "active", // "canceled", // "completed", // "delivered", // "inProgress", // "partiallyDelivered", // "partiallyReturned", // "partiallyShipped", // "pendingShipment", // "returned", // "shipped" // ], // "enumDescriptions": [ // "", // "", // "", // "", // "", // "", // "", // "", // "", // "", // "" // ], // "location": "query", // "repeated": true, // "type": "string" // } // }, // "path": "{merchantId}/orders", // "response": { // "$ref": "OrdersListResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/content" // ] // } } // 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. func (c *OrdersListCall) Pages(ctx context.Context, f func(*OrdersListResponse) error) error { c.ctx_ = ctx defer c.PageToken(c.urlParams_.Get("pageToken")) // reset paging to original point for { x, err := c.Do() if err != nil { return err } if err := f(x); err != nil { return err } if x.NextPageToken == "" { return nil } c.PageToken(x.NextPageToken) } } // method id "content.orders.refund": type OrdersRefundCall struct { s *APIService merchantId uint64 orderId string ordersrefundrequest *OrdersRefundRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Refund: Deprecated, please use returnRefundLineItem instead. func (r *OrdersService) Refund(merchantId uint64, orderId string, ordersrefundrequest *OrdersRefundRequest) *OrdersRefundCall { c := &OrdersRefundCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.merchantId = merchantId c.orderId = orderId c.ordersrefundrequest = ordersrefundrequest 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) reqHeaders.Set("x-goog-api-client", "gl-go/1.13.7 gdcl/20200203") 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.ordersrefundrequest) 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, "{merchantId}/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{ "merchantId": strconv.FormatUint(c.merchantId, 10), "orderId": c.orderId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "content.orders.refund" call. // Exactly one of *OrdersRefundResponse or error will be non-nil. Any // non-2xx status code is an error. Response headers are in either // *OrdersRefundResponse.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 *OrdersRefundCall) Do(opts ...googleapi.CallOption) (*OrdersRefundResponse, 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 := &OrdersRefundResponse{ 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": "Deprecated, please use returnRefundLineItem instead.", // "httpMethod": "POST", // "id": "content.orders.refund", // "parameterOrder": [ // "merchantId", // "orderId" // ], // "parameters": { // "merchantId": { // "description": "The ID of the account that manages the order. This cannot be a multi-client account.", // "format": "uint64", // "location": "path", // "required": true, // "type": "string" // }, // "orderId": { // "description": "The ID of the order to refund.", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{merchantId}/orders/{orderId}/refund", // "request": { // "$ref": "OrdersRefundRequest" // }, // "response": { // "$ref": "OrdersRefundResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/content" // ] // } } // method id "content.orders.rejectreturnlineitem": type OrdersRejectreturnlineitemCall struct { s *APIService merchantId uint64 orderId string ordersrejectreturnlineitemrequest *OrdersRejectReturnLineItemRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Rejectreturnlineitem: Rejects return on an line item. func (r *OrdersService) Rejectreturnlineitem(merchantId uint64, orderId string, ordersrejectreturnlineitemrequest *OrdersRejectReturnLineItemRequest) *OrdersRejectreturnlineitemCall { c := &OrdersRejectreturnlineitemCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.merchantId = merchantId c.orderId = orderId c.ordersrejectreturnlineitemrequest = ordersrejectreturnlineitemrequest 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 *OrdersRejectreturnlineitemCall) Fields(s ...googleapi.Field) *OrdersRejectreturnlineitemCall { 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 *OrdersRejectreturnlineitemCall) Context(ctx context.Context) *OrdersRejectreturnlineitemCall { 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 *OrdersRejectreturnlineitemCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *OrdersRejectreturnlineitemCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/1.13.7 gdcl/20200203") 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.ordersrejectreturnlineitemrequest) 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, "{merchantId}/orders/{orderId}/rejectReturnLineItem") 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{ "merchantId": strconv.FormatUint(c.merchantId, 10), "orderId": c.orderId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "content.orders.rejectreturnlineitem" call. // Exactly one of *OrdersRejectReturnLineItemResponse or error will be // non-nil. Any non-2xx status code is an error. Response headers are in // either *OrdersRejectReturnLineItemResponse.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 *OrdersRejectreturnlineitemCall) Do(opts ...googleapi.CallOption) (*OrdersRejectReturnLineItemResponse, 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 := &OrdersRejectReturnLineItemResponse{ 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": "Rejects return on an line item.", // "httpMethod": "POST", // "id": "content.orders.rejectreturnlineitem", // "parameterOrder": [ // "merchantId", // "orderId" // ], // "parameters": { // "merchantId": { // "description": "The ID of the account that manages the order. This cannot be a multi-client account.", // "format": "uint64", // "location": "path", // "required": true, // "type": "string" // }, // "orderId": { // "description": "The ID of the order.", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{merchantId}/orders/{orderId}/rejectReturnLineItem", // "request": { // "$ref": "OrdersRejectReturnLineItemRequest" // }, // "response": { // "$ref": "OrdersRejectReturnLineItemResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/content" // ] // } } // method id "content.orders.returnlineitem": type OrdersReturnlineitemCall struct { s *APIService merchantId uint64 orderId string ordersreturnlineitemrequest *OrdersReturnLineItemRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Returnlineitem: Returns a line item. func (r *OrdersService) Returnlineitem(merchantId uint64, orderId string, ordersreturnlineitemrequest *OrdersReturnLineItemRequest) *OrdersReturnlineitemCall { c := &OrdersReturnlineitemCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.merchantId = merchantId c.orderId = orderId c.ordersreturnlineitemrequest = ordersreturnlineitemrequest 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 *OrdersReturnlineitemCall) Fields(s ...googleapi.Field) *OrdersReturnlineitemCall { 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 *OrdersReturnlineitemCall) Context(ctx context.Context) *OrdersReturnlineitemCall { 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 *OrdersReturnlineitemCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *OrdersReturnlineitemCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/1.13.7 gdcl/20200203") 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.ordersreturnlineitemrequest) 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, "{merchantId}/orders/{orderId}/returnLineItem") 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{ "merchantId": strconv.FormatUint(c.merchantId, 10), "orderId": c.orderId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "content.orders.returnlineitem" call. // Exactly one of *OrdersReturnLineItemResponse or error will be // non-nil. Any non-2xx status code is an error. Response headers are in // either *OrdersReturnLineItemResponse.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 *OrdersReturnlineitemCall) Do(opts ...googleapi.CallOption) (*OrdersReturnLineItemResponse, 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 := &OrdersReturnLineItemResponse{ 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 line item.", // "httpMethod": "POST", // "id": "content.orders.returnlineitem", // "parameterOrder": [ // "merchantId", // "orderId" // ], // "parameters": { // "merchantId": { // "description": "The ID of the account that manages the order. This cannot be a multi-client account.", // "format": "uint64", // "location": "path", // "required": true, // "type": "string" // }, // "orderId": { // "description": "The ID of the order.", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{merchantId}/orders/{orderId}/returnLineItem", // "request": { // "$ref": "OrdersReturnLineItemRequest" // }, // "response": { // "$ref": "OrdersReturnLineItemResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/content" // ] // } } // method id "content.orders.returnrefundlineitem": type OrdersReturnrefundlineitemCall struct { s *APIService merchantId uint64 orderId string ordersreturnrefundlineitemrequest *OrdersReturnRefundLineItemRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Returnrefundlineitem: Returns and refunds a line item. Note that this // method can only be called on fully shipped orders. func (r *OrdersService) Returnrefundlineitem(merchantId uint64, orderId string, ordersreturnrefundlineitemrequest *OrdersReturnRefundLineItemRequest) *OrdersReturnrefundlineitemCall { c := &OrdersReturnrefundlineitemCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.merchantId = merchantId c.orderId = orderId c.ordersreturnrefundlineitemrequest = ordersreturnrefundlineitemrequest 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 *OrdersReturnrefundlineitemCall) Fields(s ...googleapi.Field) *OrdersReturnrefundlineitemCall { 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 *OrdersReturnrefundlineitemCall) Context(ctx context.Context) *OrdersReturnrefundlineitemCall { 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 *OrdersReturnrefundlineitemCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *OrdersReturnrefundlineitemCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/1.13.7 gdcl/20200203") 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.ordersreturnrefundlineitemrequest) 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, "{merchantId}/orders/{orderId}/returnRefundLineItem") 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{ "merchantId": strconv.FormatUint(c.merchantId, 10), "orderId": c.orderId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "content.orders.returnrefundlineitem" call. // Exactly one of *OrdersReturnRefundLineItemResponse or error will be // non-nil. Any non-2xx status code is an error. Response headers are in // either *OrdersReturnRefundLineItemResponse.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 *OrdersReturnrefundlineitemCall) Do(opts ...googleapi.CallOption) (*OrdersReturnRefundLineItemResponse, 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 := &OrdersReturnRefundLineItemResponse{ 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 and refunds a line item. Note that this method can only be called on fully shipped orders.", // "httpMethod": "POST", // "id": "content.orders.returnrefundlineitem", // "parameterOrder": [ // "merchantId", // "orderId" // ], // "parameters": { // "merchantId": { // "description": "The ID of the account that manages the order. This cannot be a multi-client account.", // "format": "uint64", // "location": "path", // "required": true, // "type": "string" // }, // "orderId": { // "description": "The ID of the order.", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{merchantId}/orders/{orderId}/returnRefundLineItem", // "request": { // "$ref": "OrdersReturnRefundLineItemRequest" // }, // "response": { // "$ref": "OrdersReturnRefundLineItemResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/content" // ] // } } // method id "content.orders.setlineitemmetadata": type OrdersSetlineitemmetadataCall struct { s *APIService merchantId uint64 orderId string orderssetlineitemmetadatarequest *OrdersSetLineItemMetadataRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Setlineitemmetadata: Sets (overrides) merchant provided annotations // on the line item. func (r *OrdersService) Setlineitemmetadata(merchantId uint64, orderId string, orderssetlineitemmetadatarequest *OrdersSetLineItemMetadataRequest) *OrdersSetlineitemmetadataCall { c := &OrdersSetlineitemmetadataCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.merchantId = merchantId c.orderId = orderId c.orderssetlineitemmetadatarequest = orderssetlineitemmetadatarequest 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 *OrdersSetlineitemmetadataCall) Fields(s ...googleapi.Field) *OrdersSetlineitemmetadataCall { 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 *OrdersSetlineitemmetadataCall) Context(ctx context.Context) *OrdersSetlineitemmetadataCall { 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 *OrdersSetlineitemmetadataCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *OrdersSetlineitemmetadataCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/1.13.7 gdcl/20200203") 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.orderssetlineitemmetadatarequest) 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, "{merchantId}/orders/{orderId}/setLineItemMetadata") 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{ "merchantId": strconv.FormatUint(c.merchantId, 10), "orderId": c.orderId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "content.orders.setlineitemmetadata" call. // Exactly one of *OrdersSetLineItemMetadataResponse or error will be // non-nil. Any non-2xx status code is an error. Response headers are in // either *OrdersSetLineItemMetadataResponse.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 *OrdersSetlineitemmetadataCall) Do(opts ...googleapi.CallOption) (*OrdersSetLineItemMetadataResponse, 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 := &OrdersSetLineItemMetadataResponse{ 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": "Sets (overrides) merchant provided annotations on the line item.", // "httpMethod": "POST", // "id": "content.orders.setlineitemmetadata", // "parameterOrder": [ // "merchantId", // "orderId" // ], // "parameters": { // "merchantId": { // "description": "The ID of the account that manages the order. This cannot be a multi-client account.", // "format": "uint64", // "location": "path", // "required": true, // "type": "string" // }, // "orderId": { // "description": "The ID of the order.", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{merchantId}/orders/{orderId}/setLineItemMetadata", // "request": { // "$ref": "OrdersSetLineItemMetadataRequest" // }, // "response": { // "$ref": "OrdersSetLineItemMetadataResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/content" // ] // } } // method id "content.orders.shiplineitems": type OrdersShiplineitemsCall struct { s *APIService merchantId uint64 orderId string ordersshiplineitemsrequest *OrdersShipLineItemsRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Shiplineitems: Marks line item(s) as shipped. func (r *OrdersService) Shiplineitems(merchantId uint64, orderId string, ordersshiplineitemsrequest *OrdersShipLineItemsRequest) *OrdersShiplineitemsCall { c := &OrdersShiplineitemsCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.merchantId = merchantId c.orderId = orderId c.ordersshiplineitemsrequest = ordersshiplineitemsrequest 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 *OrdersShiplineitemsCall) Fields(s ...googleapi.Field) *OrdersShiplineitemsCall { 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 *OrdersShiplineitemsCall) Context(ctx context.Context) *OrdersShiplineitemsCall { 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 *OrdersShiplineitemsCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *OrdersShiplineitemsCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/1.13.7 gdcl/20200203") 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.ordersshiplineitemsrequest) 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, "{merchantId}/orders/{orderId}/shipLineItems") 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{ "merchantId": strconv.FormatUint(c.merchantId, 10), "orderId": c.orderId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "content.orders.shiplineitems" call. // Exactly one of *OrdersShipLineItemsResponse or error will be non-nil. // Any non-2xx status code is an error. Response headers are in either // *OrdersShipLineItemsResponse.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 *OrdersShiplineitemsCall) Do(opts ...googleapi.CallOption) (*OrdersShipLineItemsResponse, 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 := &OrdersShipLineItemsResponse{ 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": "Marks line item(s) as shipped.", // "httpMethod": "POST", // "id": "content.orders.shiplineitems", // "parameterOrder": [ // "merchantId", // "orderId" // ], // "parameters": { // "merchantId": { // "description": "The ID of the account that manages the order. This cannot be a multi-client account.", // "format": "uint64", // "location": "path", // "required": true, // "type": "string" // }, // "orderId": { // "description": "The ID of the order.", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{merchantId}/orders/{orderId}/shipLineItems", // "request": { // "$ref": "OrdersShipLineItemsRequest" // }, // "response": { // "$ref": "OrdersShipLineItemsResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/content" // ] // } } // method id "content.orders.updatelineitemshippingdetails": type OrdersUpdatelineitemshippingdetailsCall struct { s *APIService merchantId uint64 orderId string ordersupdatelineitemshippingdetailsrequest *OrdersUpdateLineItemShippingDetailsRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Updatelineitemshippingdetails: Updates ship by and delivery by dates // for a line item. func (r *OrdersService) Updatelineitemshippingdetails(merchantId uint64, orderId string, ordersupdatelineitemshippingdetailsrequest *OrdersUpdateLineItemShippingDetailsRequest) *OrdersUpdatelineitemshippingdetailsCall { c := &OrdersUpdatelineitemshippingdetailsCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.merchantId = merchantId c.orderId = orderId c.ordersupdatelineitemshippingdetailsrequest = ordersupdatelineitemshippingdetailsrequest 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 *OrdersUpdatelineitemshippingdetailsCall) Fields(s ...googleapi.Field) *OrdersUpdatelineitemshippingdetailsCall { 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 *OrdersUpdatelineitemshippingdetailsCall) Context(ctx context.Context) *OrdersUpdatelineitemshippingdetailsCall { 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 *OrdersUpdatelineitemshippingdetailsCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *OrdersUpdatelineitemshippingdetailsCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/1.13.7 gdcl/20200203") 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.ordersupdatelineitemshippingdetailsrequest) 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, "{merchantId}/orders/{orderId}/updateLineItemShippingDetails") 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{ "merchantId": strconv.FormatUint(c.merchantId, 10), "orderId": c.orderId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "content.orders.updatelineitemshippingdetails" call. // Exactly one of *OrdersUpdateLineItemShippingDetailsResponse or error // will be non-nil. Any non-2xx status code is an error. Response // headers are in either // *OrdersUpdateLineItemShippingDetailsResponse.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 *OrdersUpdatelineitemshippingdetailsCall) Do(opts ...googleapi.CallOption) (*OrdersUpdateLineItemShippingDetailsResponse, 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 := &OrdersUpdateLineItemShippingDetailsResponse{ 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 ship by and delivery by dates for a line item.", // "httpMethod": "POST", // "id": "content.orders.updatelineitemshippingdetails", // "parameterOrder": [ // "merchantId", // "orderId" // ], // "parameters": { // "merchantId": { // "description": "The ID of the account that manages the order. This cannot be a multi-client account.", // "format": "uint64", // "location": "path", // "required": true, // "type": "string" // }, // "orderId": { // "description": "The ID of the order.", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{merchantId}/orders/{orderId}/updateLineItemShippingDetails", // "request": { // "$ref": "OrdersUpdateLineItemShippingDetailsRequest" // }, // "response": { // "$ref": "OrdersUpdateLineItemShippingDetailsResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/content" // ] // } } // method id "content.orders.updatemerchantorderid": type OrdersUpdatemerchantorderidCall struct { s *APIService merchantId uint64 orderId string ordersupdatemerchantorderidrequest *OrdersUpdateMerchantOrderIdRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Updatemerchantorderid: Updates the merchant order ID for a given // order. func (r *OrdersService) Updatemerchantorderid(merchantId uint64, orderId string, ordersupdatemerchantorderidrequest *OrdersUpdateMerchantOrderIdRequest) *OrdersUpdatemerchantorderidCall { c := &OrdersUpdatemerchantorderidCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.merchantId = merchantId c.orderId = orderId c.ordersupdatemerchantorderidrequest = ordersupdatemerchantorderidrequest 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 *OrdersUpdatemerchantorderidCall) Fields(s ...googleapi.Field) *OrdersUpdatemerchantorderidCall { 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 *OrdersUpdatemerchantorderidCall) Context(ctx context.Context) *OrdersUpdatemerchantorderidCall { 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 *OrdersUpdatemerchantorderidCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *OrdersUpdatemerchantorderidCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/1.13.7 gdcl/20200203") 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.ordersupdatemerchantorderidrequest) 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, "{merchantId}/orders/{orderId}/updateMerchantOrderId") 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{ "merchantId": strconv.FormatUint(c.merchantId, 10), "orderId": c.orderId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "content.orders.updatemerchantorderid" call. // Exactly one of *OrdersUpdateMerchantOrderIdResponse or error will be // non-nil. Any non-2xx status code is an error. Response headers are in // either *OrdersUpdateMerchantOrderIdResponse.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 *OrdersUpdatemerchantorderidCall) Do(opts ...googleapi.CallOption) (*OrdersUpdateMerchantOrderIdResponse, 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 := &OrdersUpdateMerchantOrderIdResponse{ 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 merchant order ID for a given order.", // "httpMethod": "POST", // "id": "content.orders.updatemerchantorderid", // "parameterOrder": [ // "merchantId", // "orderId" // ], // "parameters": { // "merchantId": { // "description": "The ID of the account that manages the order. This cannot be a multi-client account.", // "format": "uint64", // "location": "path", // "required": true, // "type": "string" // }, // "orderId": { // "description": "The ID of the order.", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{merchantId}/orders/{orderId}/updateMerchantOrderId", // "request": { // "$ref": "OrdersUpdateMerchantOrderIdRequest" // }, // "response": { // "$ref": "OrdersUpdateMerchantOrderIdResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/content" // ] // } } // method id "content.orders.updateshipment": type OrdersUpdateshipmentCall struct { s *APIService merchantId uint64 orderId string ordersupdateshipmentrequest *OrdersUpdateShipmentRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Updateshipment: Updates a shipment's status, carrier, and/or tracking // ID. func (r *OrdersService) Updateshipment(merchantId uint64, orderId string, ordersupdateshipmentrequest *OrdersUpdateShipmentRequest) *OrdersUpdateshipmentCall { c := &OrdersUpdateshipmentCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.merchantId = merchantId c.orderId = orderId c.ordersupdateshipmentrequest = ordersupdateshipmentrequest 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 *OrdersUpdateshipmentCall) Fields(s ...googleapi.Field) *OrdersUpdateshipmentCall { 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 *OrdersUpdateshipmentCall) Context(ctx context.Context) *OrdersUpdateshipmentCall { 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 *OrdersUpdateshipmentCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *OrdersUpdateshipmentCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/1.13.7 gdcl/20200203") 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.ordersupdateshipmentrequest) 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, "{merchantId}/orders/{orderId}/updateShipment") 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{ "merchantId": strconv.FormatUint(c.merchantId, 10), "orderId": c.orderId, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "content.orders.updateshipment" call. // Exactly one of *OrdersUpdateShipmentResponse or error will be // non-nil. Any non-2xx status code is an error. Response headers are in // either *OrdersUpdateShipmentResponse.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 *OrdersUpdateshipmentCall) Do(opts ...googleapi.CallOption) (*OrdersUpdateShipmentResponse, 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 := &OrdersUpdateShipmentResponse{ 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 a shipment's status, carrier, and/or tracking ID.", // "httpMethod": "POST", // "id": "content.orders.updateshipment", // "parameterOrder": [ // "merchantId", // "orderId" // ], // "parameters": { // "merchantId": { // "description": "The ID of the account that manages the order. This cannot be a multi-client account.", // "format": "uint64", // "location": "path", // "required": true, // "type": "string" // }, // "orderId": { // "description": "The ID of the order.", // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "{merchantId}/orders/{orderId}/updateShipment", // "request": { // "$ref": "OrdersUpdateShipmentRequest" // }, // "response": { // "$ref": "OrdersUpdateShipmentResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/content" // ] // } }