pub struct WithdrawalRequestsData {
pub id: String,
pub unit: String,
pub amount: String,
pub created_at: DateTime<Utc>,
pub expires_at: DateTime<Utc>,
pub internal_id: String,
pub description: String,
pub callback_url: String,
pub status: String,
pub invoice: WithdrawInvoiceData,
}
Fields§
§id: String
§unit: String
§amount: String
§created_at: DateTime<Utc>
§expires_at: DateTime<Utc>
§internal_id: String
§description: String
§callback_url: String
§status: String
§invoice: WithdrawInvoiceData
Trait Implementations§
Source§impl Debug for WithdrawalRequestsData
impl Debug for WithdrawalRequestsData
Source§impl<'de> Deserialize<'de> for WithdrawalRequestsData
impl<'de> Deserialize<'de> for WithdrawalRequestsData
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
Auto Trait Implementations§
impl Freeze for WithdrawalRequestsData
impl RefUnwindSafe for WithdrawalRequestsData
impl Send for WithdrawalRequestsData
impl Sync for WithdrawalRequestsData
impl Unpin for WithdrawalRequestsData
impl UnwindSafe for WithdrawalRequestsData
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