pub struct GetCustodialWalletsBody {
pub chain_type: GetCustodialWalletsBodyChainType,
pub provider: GetCustodialWalletsBodyProvider,
pub provider_user_id: String,
}Expand description
GetCustodialWalletsBody
JSON schema
{
"examples": [
{
"chain_type": "ethereum",
"provider": "bridge",
"provider_user_id": "1234567890"
}
],
"type": "object",
"required": [
"chain_type",
"provider",
"provider_user_id"
],
"properties": {
"chain_type": {
"type": "string",
"enum": [
"ethereum"
]
},
"provider": {
"type": "string",
"enum": [
"bridge"
]
},
"provider_user_id": {
"description": "The resource ID of the beneficiary of the custodial
wallet, given by the licensing provider.",
"type": "string"
}
}
}Fields§
§chain_type: GetCustodialWalletsBodyChainType§provider: GetCustodialWalletsBodyProvider§provider_user_id: StringThe resource ID of the beneficiary of the custodial wallet, given by the licensing provider.
Trait Implementations§
Source§impl Clone for GetCustodialWalletsBody
impl Clone for GetCustodialWalletsBody
Source§fn clone(&self) -> GetCustodialWalletsBody
fn clone(&self) -> GetCustodialWalletsBody
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 GetCustodialWalletsBody
impl Debug for GetCustodialWalletsBody
Source§impl<'de> Deserialize<'de> for GetCustodialWalletsBody
impl<'de> Deserialize<'de> for GetCustodialWalletsBody
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<GetCustodialWalletsBody, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<GetCustodialWalletsBody, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&GetCustodialWalletsBody> for GetCustodialWalletsBody
impl From<&GetCustodialWalletsBody> for GetCustodialWalletsBody
Source§fn from(value: &GetCustodialWalletsBody) -> GetCustodialWalletsBody
fn from(value: &GetCustodialWalletsBody) -> GetCustodialWalletsBody
Converts to this type from the input type.
Source§impl Serialize for GetCustodialWalletsBody
impl Serialize for GetCustodialWalletsBody
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 GetCustodialWalletsBody
impl RefUnwindSafe for GetCustodialWalletsBody
impl Send for GetCustodialWalletsBody
impl Sync for GetCustodialWalletsBody
impl Unpin for GetCustodialWalletsBody
impl UnwindSafe for GetCustodialWalletsBody
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