pub struct OnrampKycResponse {
pub provider_user_id: Option<String>,
pub status: OnrampKycStatus,
pub user_id: String,
}Expand description
Response for an onramp KYC verification.
JSON schema
{
"title": "OnrampKycResponse",
"description": "Response for an onramp KYC verification.",
"type": "object",
"required": [
"status",
"user_id"
],
"properties": {
"provider_user_id": {
"type": "string"
},
"status": {
"$ref": "#/components/schemas/OnrampKycStatus"
},
"user_id": {
"type": "string"
}
},
"x-stainless-model": "fiat.onramp_kyc_response"
}Fields§
§provider_user_id: Option<String>§status: OnrampKycStatus§user_id: StringTrait Implementations§
Source§impl Clone for OnrampKycResponse
impl Clone for OnrampKycResponse
Source§fn clone(&self) -> OnrampKycResponse
fn clone(&self) -> OnrampKycResponse
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 OnrampKycResponse
impl Debug for OnrampKycResponse
Source§impl<'de> Deserialize<'de> for OnrampKycResponse
impl<'de> Deserialize<'de> for OnrampKycResponse
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<&OnrampKycResponse> for OnrampKycResponse
impl From<&OnrampKycResponse> for OnrampKycResponse
Source§fn from(value: &OnrampKycResponse) -> Self
fn from(value: &OnrampKycResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for OnrampKycResponse
impl RefUnwindSafe for OnrampKycResponse
impl Send for OnrampKycResponse
impl Sync for OnrampKycResponse
impl Unpin for OnrampKycResponse
impl UnsafeUnpin for OnrampKycResponse
impl UnwindSafe for OnrampKycResponse
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