pub struct CustomerReturnReason {
pub description: Option<String>,
pub reason_code: 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§
§description: Option<String>Description of the reason.
reason_code: Option<String>Code of the return reason. Acceptable values are: - “betterPriceFound” - “changedMind” - “damagedOrDefectiveItem” - “didNotMatchDescription” - “doesNotFit” - “expiredItem” - “incorrectItemReceived” - “noLongerNeeded” - “notSpecified” - “orderedWrongItem” - “other” - “qualityNotExpected” - “receivedTooLate” - “undeliverable”
Trait Implementations§
Source§impl Clone for CustomerReturnReason
impl Clone for CustomerReturnReason
Source§fn clone(&self) -> CustomerReturnReason
fn clone(&self) -> CustomerReturnReason
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CustomerReturnReason
impl Debug for CustomerReturnReason
Source§impl Default for CustomerReturnReason
impl Default for CustomerReturnReason
Source§fn default() -> CustomerReturnReason
fn default() -> CustomerReturnReason
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CustomerReturnReason
impl<'de> Deserialize<'de> for CustomerReturnReason
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>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for CustomerReturnReason
impl Serialize for CustomerReturnReason
impl Part for CustomerReturnReason
Auto Trait Implementations§
impl Freeze for CustomerReturnReason
impl RefUnwindSafe for CustomerReturnReason
impl Send for CustomerReturnReason
impl Sync for CustomerReturnReason
impl Unpin for CustomerReturnReason
impl UnwindSafe for CustomerReturnReason
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
Mutably borrows from an owned value. Read more