pub struct TransactionReference {
pub transaction_id: Option<String>,
}Expand description
TransactionReference : The response payload for the SubmitShipmentConfirmations operation.
Fields§
§transaction_id: Option<String>GUID assigned by Buyer to identify this transaction. This value can be used with the Transaction Status API to return the status of this transaction.
Implementations§
Source§impl TransactionReference
impl TransactionReference
Sourcepub fn new() -> TransactionReference
pub fn new() -> TransactionReference
The response payload for the SubmitShipmentConfirmations operation.
Trait Implementations§
Source§impl Clone for TransactionReference
impl Clone for TransactionReference
Source§fn clone(&self) -> TransactionReference
fn clone(&self) -> TransactionReference
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 TransactionReference
impl Debug for TransactionReference
Source§impl Default for TransactionReference
impl Default for TransactionReference
Source§fn default() -> TransactionReference
fn default() -> TransactionReference
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TransactionReference
impl<'de> Deserialize<'de> for TransactionReference
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 PartialEq for TransactionReference
impl PartialEq for TransactionReference
Source§impl Serialize for TransactionReference
impl Serialize for TransactionReference
impl StructuralPartialEq for TransactionReference
Auto Trait Implementations§
impl Freeze for TransactionReference
impl RefUnwindSafe for TransactionReference
impl Send for TransactionReference
impl Sync for TransactionReference
impl Unpin for TransactionReference
impl UnwindSafe for TransactionReference
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