pub struct CreateUserFiatAccountResponse {
pub account_type: String,
pub bank_name: Option<String>,
pub currency: String,
pub id: String,
pub last_4: Option<String>,
}Expand description
CreateUserFiatAccountResponse
JSON schema
{
"examples": [
{
"account_type": "us",
"bank_name": "Chase",
"currency": "usd",
"id": "a068d2dd-743a-4011-9b62-8ad33cc7a7be",
"last_4": "7899"
}
],
"type": "object",
"required": [
"account_type",
"currency",
"id"
],
"properties": {
"account_type": {
"type": "string"
},
"bank_name": {
"type": "string"
},
"currency": {
"type": "string"
},
"id": {
"type": "string"
},
"last_4": {
"type": "string"
}
}
}Fields§
§account_type: String§bank_name: Option<String>§currency: String§id: String§last_4: Option<String>Trait Implementations§
Source§impl Clone for CreateUserFiatAccountResponse
impl Clone for CreateUserFiatAccountResponse
Source§fn clone(&self) -> CreateUserFiatAccountResponse
fn clone(&self) -> CreateUserFiatAccountResponse
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<'de> Deserialize<'de> for CreateUserFiatAccountResponse
impl<'de> Deserialize<'de> for CreateUserFiatAccountResponse
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CreateUserFiatAccountResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CreateUserFiatAccountResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&CreateUserFiatAccountResponse> for CreateUserFiatAccountResponse
impl From<&CreateUserFiatAccountResponse> for CreateUserFiatAccountResponse
Source§fn from(value: &CreateUserFiatAccountResponse) -> CreateUserFiatAccountResponse
fn from(value: &CreateUserFiatAccountResponse) -> CreateUserFiatAccountResponse
Converts to this type from the input type.
Source§impl Serialize for CreateUserFiatAccountResponse
impl Serialize for CreateUserFiatAccountResponse
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for CreateUserFiatAccountResponse
impl RefUnwindSafe for CreateUserFiatAccountResponse
impl Send for CreateUserFiatAccountResponse
impl Sync for CreateUserFiatAccountResponse
impl Unpin for CreateUserFiatAccountResponse
impl UnwindSafe for CreateUserFiatAccountResponse
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