pub struct BridgeFiatDepositMetadata {
pub activity_id: String,
pub method: BridgeFiatDepositMetadataMethod,
pub type_: BridgeFiatDepositMetadataType,
pub virtual_account_id: String,
}Expand description
Bridge metadata for a fiat deposit via virtual account.
JSON schema
{
"title": "BridgeFiatDepositMetadata",
"description": "Bridge metadata for a fiat deposit via virtual
account.",
"type": "object",
"required": [
"activity_id",
"method",
"type",
"virtual_account_id"
],
"properties": {
"activity_id": {
"type": "string"
},
"method": {
"type": "string",
"enum": [
"virtual_account"
]
},
"type": {
"type": "string",
"enum": [
"fiat_deposit"
]
},
"virtual_account_id": {
"type": "string"
}
},
"x-stainless-model": "webhooks.bridge_fiat_deposit_metadata"
}Fields§
§activity_id: String§method: BridgeFiatDepositMetadataMethod§type_: BridgeFiatDepositMetadataType§virtual_account_id: StringTrait Implementations§
Source§impl Clone for BridgeFiatDepositMetadata
impl Clone for BridgeFiatDepositMetadata
Source§fn clone(&self) -> BridgeFiatDepositMetadata
fn clone(&self) -> BridgeFiatDepositMetadata
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BridgeFiatDepositMetadata
impl Debug for BridgeFiatDepositMetadata
Source§impl<'de> Deserialize<'de> for BridgeFiatDepositMetadata
impl<'de> Deserialize<'de> for BridgeFiatDepositMetadata
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 From<&BridgeFiatDepositMetadata> for BridgeFiatDepositMetadata
impl From<&BridgeFiatDepositMetadata> for BridgeFiatDepositMetadata
Source§fn from(value: &BridgeFiatDepositMetadata) -> Self
fn from(value: &BridgeFiatDepositMetadata) -> Self
Converts to this type from the input type.
Source§impl From<BridgeFiatDepositMetadata> for BridgeMetadata
impl From<BridgeFiatDepositMetadata> for BridgeMetadata
Source§fn from(value: BridgeFiatDepositMetadata) -> Self
fn from(value: BridgeFiatDepositMetadata) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BridgeFiatDepositMetadata
impl RefUnwindSafe for BridgeFiatDepositMetadata
impl Send for BridgeFiatDepositMetadata
impl Sync for BridgeFiatDepositMetadata
impl Unpin for BridgeFiatDepositMetadata
impl UnsafeUnpin for BridgeFiatDepositMetadata
impl UnwindSafe for BridgeFiatDepositMetadata
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