Struct google_content2::TestOrder
[−]
[src]
pub struct TestOrder {
pub customer: Option<TestOrderCustomer>,
pub promotions: Option<Vec<OrderPromotion>>,
pub kind: Option<String>,
pub line_items: Option<Vec<TestOrderLineItem>>,
pub predefined_delivery_address: Option<String>,
pub shipping_cost: Option<Price>,
pub shipping_option: Option<String>,
pub shipping_cost_tax: Option<Price>,
pub payment_method: Option<TestOrderPaymentMethod>,
}There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields
customer: Option<TestOrderCustomer>
The details of the customer who placed the order.
promotions: Option<Vec<OrderPromotion>>
The details of the merchant provided promotions applied to the order. More details about the program are here.
kind: Option<String>
Identifies what kind of resource this is. Value: the fixed string "content#testOrder".
line_items: Option<Vec<TestOrderLineItem>>
Line items that are ordered. At least one line item must be provided.
predefined_delivery_address: Option<String>
Identifier of one of the predefined delivery addresses for the delivery.
shipping_cost: Option<Price>
The total cost of shipping for all items.
shipping_option: Option<String>
The requested shipping option.
shipping_cost_tax: Option<Price>
The tax for the total shipping cost.
payment_method: Option<TestOrderPaymentMethod>
The details of the payment method.
Trait Implementations
impl Debug for TestOrder[src]
impl Clone for TestOrder[src]
fn clone(&self) -> TestOrder
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more