pub struct OrdersReturnLineItemRequest {
pub line_item_id: Option<String>,
pub operation_id: Option<String>,
pub product_id: Option<String>,
pub quantity: Option<u32>,
pub reason: Option<String>,
pub reason_text: Option<String>,
}
Expand description
There is no detailed description.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- returnlineitem orders (request)
Fields§
§line_item_id: Option<String>
The ID of the line item to return. Either lineItemId or productId is required.
operation_id: Option<String>
The ID of the operation. Unique across all operations for a given order.
product_id: Option<String>
The ID of the product to return. This is the REST ID used in the products service. Either lineItemId or productId is required.
quantity: Option<u32>
The quantity to return.
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 OrdersReturnLineItemRequest
impl Clone for OrdersReturnLineItemRequest
Source§fn clone(&self) -> OrdersReturnLineItemRequest
fn clone(&self) -> OrdersReturnLineItemRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for OrdersReturnLineItemRequest
impl Debug for OrdersReturnLineItemRequest
Source§impl Default for OrdersReturnLineItemRequest
impl Default for OrdersReturnLineItemRequest
Source§fn default() -> OrdersReturnLineItemRequest
fn default() -> OrdersReturnLineItemRequest
Source§impl<'de> Deserialize<'de> for OrdersReturnLineItemRequest
impl<'de> Deserialize<'de> for OrdersReturnLineItemRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl RequestValue for OrdersReturnLineItemRequest
Auto Trait Implementations§
impl Freeze for OrdersReturnLineItemRequest
impl RefUnwindSafe for OrdersReturnLineItemRequest
impl Send for OrdersReturnLineItemRequest
impl Sync for OrdersReturnLineItemRequest
impl Unpin for OrdersReturnLineItemRequest
impl UnwindSafe for OrdersReturnLineItemRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more