pub struct OrderReturn {
pub actor: Option<String>,
pub creation_date: Option<String>,
pub quantity: Option<u32>,
pub reason: Option<String>,
pub reason_text: Option<String>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§actor: Option<String>The actor that created the refund. Acceptable values are: - “customer” - “googleBot” - “googleCustomerService” - “googlePayments” - “googleSabre” - “merchant”
creation_date: Option<String>Date on which the item has been created, in ISO 8601 format.
quantity: Option<u32>Quantity that is returned.
reason: Option<String>The reason for the return. Acceptable values are: - “customerDiscretionaryReturn” - “customerInitiatedMerchantCancel” - “deliveredTooLate” - “expiredItem” - “invalidCoupon” - “malformedShippingAddress” - “other” - “productArrivedDamaged” - “productNotAsDescribed” - “qualityNotAsExpected” - “undeliverableShippingAddress” - “unsupportedPoBoxAddress” - “wrongProductShipped”
reason_text: Option<String>The explanation of the reason.
Trait Implementations§
Source§impl Clone for OrderReturn
impl Clone for OrderReturn
Source§fn clone(&self) -> OrderReturn
fn clone(&self) -> OrderReturn
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more