pub struct GetUserFiatKycLinkResponse {
pub created_at: String,
pub customer_id: String,
pub email: String,
pub full_name: String,
pub id: String,
pub kyc_link: String,
pub kyc_status: GetUserFiatKycLinkResponseKycStatus,
pub persona_inquiry_type: Option<String>,
pub rejection_reasons: Vec<GetUserFiatKycLinkResponseRejectionReasonsItem>,
pub tos_link: String,
pub tos_status: GetUserFiatKycLinkResponseTosStatus,
}Expand description
GetUserFiatKycLinkResponse
JSON schema
{
"type": "object",
"required": [
"created_at",
"customer_id",
"email",
"full_name",
"id",
"kyc_link",
"kyc_status",
"rejection_reasons",
"tos_link",
"tos_status"
],
"properties": {
"created_at": {
"type": "string"
},
"customer_id": {
"type": "string"
},
"email": {
"type": "string"
},
"full_name": {
"type": "string"
},
"id": {
"type": "string"
},
"kyc_link": {
"type": "string"
},
"kyc_status": {
"type": "string",
"enum": [
"approved",
"awaiting_ubo",
"incomplete",
"manual_review",
"not_started",
"pending",
"rejected",
"under_review"
]
},
"persona_inquiry_type": {
"type": "string"
},
"rejection_reasons": {
"type": "array",
"items": {
"type": "object",
"required": [
"created_at",
"developer_reason",
"reason"
],
"properties": {
"created_at": {
"type": "string"
},
"developer_reason": {
"type": "string"
},
"reason": {
"type": "string"
}
}
}
},
"tos_link": {
"type": "string"
},
"tos_status": {
"type": "string",
"enum": [
"approved",
"pending"
]
}
}
}Fields§
§created_at: String§customer_id: String§email: String§full_name: String§id: String§kyc_link: String§kyc_status: GetUserFiatKycLinkResponseKycStatus§persona_inquiry_type: Option<String>§rejection_reasons: Vec<GetUserFiatKycLinkResponseRejectionReasonsItem>§tos_link: String§tos_status: GetUserFiatKycLinkResponseTosStatusTrait Implementations§
Source§impl Clone for GetUserFiatKycLinkResponse
impl Clone for GetUserFiatKycLinkResponse
Source§fn clone(&self) -> GetUserFiatKycLinkResponse
fn clone(&self) -> GetUserFiatKycLinkResponse
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 GetUserFiatKycLinkResponse
impl Debug for GetUserFiatKycLinkResponse
Source§impl<'de> Deserialize<'de> for GetUserFiatKycLinkResponse
impl<'de> Deserialize<'de> for GetUserFiatKycLinkResponse
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<&GetUserFiatKycLinkResponse> for GetUserFiatKycLinkResponse
impl From<&GetUserFiatKycLinkResponse> for GetUserFiatKycLinkResponse
Source§fn from(value: &GetUserFiatKycLinkResponse) -> Self
fn from(value: &GetUserFiatKycLinkResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GetUserFiatKycLinkResponse
impl RefUnwindSafe for GetUserFiatKycLinkResponse
impl Send for GetUserFiatKycLinkResponse
impl Sync for GetUserFiatKycLinkResponse
impl Unpin for GetUserFiatKycLinkResponse
impl UnsafeUnpin for GetUserFiatKycLinkResponse
impl UnwindSafe for GetUserFiatKycLinkResponse
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