pub struct PayoutInstructionResponse {
pub id: Option<String>,
pub payee_account: PayeeAccountResponse,
pub amount: InstructionAmount,
pub state: PayoutInstructionState,
pub transactions: Vec<Transaction>,
}
Fields§
§id: Option<String>
§payee_account: PayeeAccountResponse
§amount: InstructionAmount
§state: PayoutInstructionState
§transactions: Vec<Transaction>
Implementations§
Source§impl PayoutInstructionResponse
impl PayoutInstructionResponse
pub fn new( payee_account: PayeeAccountResponse, amount: InstructionAmount, state: PayoutInstructionState, transactions: Vec<Transaction>, ) -> PayoutInstructionResponse
Trait Implementations§
Source§impl Clone for PayoutInstructionResponse
impl Clone for PayoutInstructionResponse
Source§fn clone(&self) -> PayoutInstructionResponse
fn clone(&self) -> PayoutInstructionResponse
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 PayoutInstructionResponse
impl Debug for PayoutInstructionResponse
Source§impl Default for PayoutInstructionResponse
impl Default for PayoutInstructionResponse
Source§fn default() -> PayoutInstructionResponse
fn default() -> PayoutInstructionResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PayoutInstructionResponse
impl<'de> Deserialize<'de> for PayoutInstructionResponse
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
impl StructuralPartialEq for PayoutInstructionResponse
Auto Trait Implementations§
impl Freeze for PayoutInstructionResponse
impl RefUnwindSafe for PayoutInstructionResponse
impl Send for PayoutInstructionResponse
impl Sync for PayoutInstructionResponse
impl Unpin for PayoutInstructionResponse
impl UnwindSafe for PayoutInstructionResponse
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