pub struct AdhocDisbursementEvent {
pub transaction_type: Option<String>,
pub posted_date: Option<String>,
pub transaction_id: Option<String>,
pub transaction_amount: Option<Box<Currency>>,
}Expand description
AdhocDisbursementEvent : An event related to an Adhoc Disbursement.
Fields
transaction_type: Option<String>Indicates the type of transaction. Example: "Disbursed to Amazon Gift Card balance"
posted_date: Option<String>transaction_id: Option<String>The identifier for the transaction.
transaction_amount: Option<Box<Currency>>Implementations
sourceimpl AdhocDisbursementEvent
impl AdhocDisbursementEvent
sourcepub fn new() -> AdhocDisbursementEvent
pub fn new() -> AdhocDisbursementEvent
An event related to an Adhoc Disbursement.
Trait Implementations
sourceimpl Clone for AdhocDisbursementEvent
impl Clone for AdhocDisbursementEvent
sourcefn clone(&self) -> AdhocDisbursementEvent
fn clone(&self) -> AdhocDisbursementEvent
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for AdhocDisbursementEvent
impl Debug for AdhocDisbursementEvent
sourceimpl Default for AdhocDisbursementEvent
impl Default for AdhocDisbursementEvent
sourcefn default() -> AdhocDisbursementEvent
fn default() -> AdhocDisbursementEvent
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for AdhocDisbursementEvent
impl<'de> Deserialize<'de> for AdhocDisbursementEvent
sourcefn 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
sourceimpl PartialEq<AdhocDisbursementEvent> for AdhocDisbursementEvent
impl PartialEq<AdhocDisbursementEvent> for AdhocDisbursementEvent
sourcefn eq(&self, other: &AdhocDisbursementEvent) -> bool
fn eq(&self, other: &AdhocDisbursementEvent) -> bool
sourceimpl Serialize for AdhocDisbursementEvent
impl Serialize for AdhocDisbursementEvent
impl StructuralPartialEq for AdhocDisbursementEvent
Auto Trait Implementations
impl RefUnwindSafe for AdhocDisbursementEvent
impl Send for AdhocDisbursementEvent
impl Sync for AdhocDisbursementEvent
impl Unpin for AdhocDisbursementEvent
impl UnwindSafe for AdhocDisbursementEvent
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more