pub struct DeferredContext {
pub deferral_reason: Option<String>,
pub maturity_date: Option<String>,
}Expand description
DeferredContext : Additional information related to Deferred transactions.
Fields§
§deferral_reason: Option<String>The deferral policy applied to the transaction. Examples: B2B (invoiced orders), DD7 (delivery date policy)
maturity_date: Option<String>Fields with a schema type of date are in ISO 8601 date time format (for example GroupBeginDate).
Implementations§
Source§impl DeferredContext
impl DeferredContext
Sourcepub fn new() -> DeferredContext
pub fn new() -> DeferredContext
Additional information related to Deferred transactions.
Trait Implementations§
Source§impl Clone for DeferredContext
impl Clone for DeferredContext
Source§fn clone(&self) -> DeferredContext
fn clone(&self) -> DeferredContext
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 DeferredContext
impl Debug for DeferredContext
Source§impl Default for DeferredContext
impl Default for DeferredContext
Source§fn default() -> DeferredContext
fn default() -> DeferredContext
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeferredContext
impl<'de> Deserialize<'de> for DeferredContext
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 DeferredContext
impl PartialEq for DeferredContext
Source§impl Serialize for DeferredContext
impl Serialize for DeferredContext
impl StructuralPartialEq for DeferredContext
Auto Trait Implementations§
impl Freeze for DeferredContext
impl RefUnwindSafe for DeferredContext
impl Send for DeferredContext
impl Sync for DeferredContext
impl Unpin for DeferredContext
impl UnwindSafe for DeferredContext
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