Struct google_content2_sandbox::OrderMethods [] [src]

pub struct OrderMethods<'a, C, A> where C: 'a, A: 'a { /* fields omitted */ }

A builder providing access to all methods supported on order resources. It is not used directly, but through the ShoppingContent hub.

Example

Instantiate a resource builder

extern crate hyper;
extern crate yup_oauth2 as oauth2;
extern crate google_content2_sandbox as content2_sandbox;
 
use std::default::Default;
use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
use content2_sandbox::ShoppingContent;
 
let secret: ApplicationSecret = Default::default();
let auth = Authenticator::new(&secret, DefaultAuthenticatorDelegate,
                              hyper::Client::new(),
                              <MemoryStorage as Default>::default(), None);
let mut hub = ShoppingContent::new(hyper::Client::new(), auth);
// Usually you wouldn't bind this to a variable, but keep calling *CallBuilders*
// like `acknowledge(...)`, `advancetestorder(...)`, `cancel(...)`, `cancellineitem(...)`, `createtestorder(...)`, `custombatch(...)`, `get(...)`, `getbymerchantorderid(...)`, `gettestordertemplate(...)`, `list(...)`, `refund(...)`, `returnlineitem(...)`, `shiplineitems(...)`, `updatemerchantorderid(...)` and `updateshipment(...)`
// to build up your call.
let rb = hub.orders();

Methods

impl<'a, C, A> OrderMethods<'a, C, A>
[src]

Create a builder to help you perform the following task:

Retrieves an order from your Merchant Center account. This method can only be called for non-multi-client accounts.

Arguments

  • merchantId - The ID of the managing account.
  • orderId - The ID of the order.

Create a builder to help you perform the following task:

Lists the orders in your Merchant Center account. This method can only be called for non-multi-client accounts.

Arguments

  • merchantId - The ID of the managing account.

Create a builder to help you perform the following task:

Updates a shipment's status, carrier, and/or tracking ID. This method can only be called for non-multi-client accounts.

Arguments

  • request - No description provided.
  • merchantId - The ID of the managing account.
  • orderId - The ID of the order.

Create a builder to help you perform the following task:

Sandbox only. Moves a test order from state "inProgress" to state "pendingShipment". This method can only be called for non-multi-client accounts.

Arguments

  • merchantId - The ID of the managing account.
  • orderId - The ID of the test order to modify.

Create a builder to help you perform the following task:

Updates the merchant order ID for a given order. This method can only be called for non-multi-client accounts.

Arguments

  • request - No description provided.
  • merchantId - The ID of the managing account.
  • orderId - The ID of the order.

Create a builder to help you perform the following task:

Returns a line item. This method can only be called for non-multi-client accounts.

Arguments

  • request - No description provided.
  • merchantId - The ID of the managing account.
  • orderId - The ID of the order.

Create a builder to help you perform the following task:

Sandbox only. Retrieves an order template that can be used to quickly create a new order in sandbox. This method can only be called for non-multi-client accounts.

Arguments

  • merchantId - The ID of the managing account.
  • templateName - The name of the template to retrieve.

Create a builder to help you perform the following task:

Sandbox only. Creates a test order. This method can only be called for non-multi-client accounts.

Arguments

  • request - No description provided.
  • merchantId - The ID of the managing account.

Create a builder to help you perform the following task:

Refund a portion of the order, up to the full amount paid. This method can only be called for non-multi-client accounts.

Arguments

  • request - No description provided.
  • merchantId - The ID of the managing account.
  • orderId - The ID of the order to refund.

Create a builder to help you perform the following task:

Retrieves or modifies multiple orders in a single request. This method can only be called for non-multi-client accounts.

Arguments

  • request - No description provided.

Create a builder to help you perform the following task:

Cancels a line item. This method can only be called for non-multi-client accounts.

Arguments

  • request - No description provided.
  • merchantId - The ID of the managing account.
  • orderId - The ID of the order.

Create a builder to help you perform the following task:

Retrieves an order using merchant order id. This method can only be called for non-multi-client accounts.

Arguments

  • merchantId - The ID of the managing account.
  • merchantOrderId - The merchant order id to be looked for.

Create a builder to help you perform the following task:

Marks an order as acknowledged. This method can only be called for non-multi-client accounts.

Arguments

  • request - No description provided.
  • merchantId - The ID of the managing account.
  • orderId - The ID of the order.

Create a builder to help you perform the following task:

Cancels all line items in an order. This method can only be called for non-multi-client accounts.

Arguments

  • request - No description provided.
  • merchantId - The ID of the managing account.
  • orderId - The ID of the order to cancel.

Create a builder to help you perform the following task:

Marks line item(s) as shipped. This method can only be called for non-multi-client accounts.

Arguments

  • request - No description provided.
  • merchantId - The ID of the managing account.
  • orderId - The ID of the order.

Trait Implementations

impl<'a, C, A> MethodsBuilder for OrderMethods<'a, C, A>
[src]