pub struct UserApplicationResponse {Show 16 fields
pub id: Uuid,
pub company_id: Option<Uuid>,
pub first_name: Option<String>,
pub last_name: Option<String>,
pub email: Option<String>,
pub is_active: Option<bool>,
pub is_terms_of_service_accepted: Option<bool>,
pub address: Option<Address>,
pub phone_country_code: Option<String>,
pub phone_number: Option<String>,
pub wallet_address: Option<String>,
pub solana_address: Option<String>,
pub application_status: Option<ApplicationStatus>,
pub application_external_verification_link: Option<ApplicationLink>,
pub application_completion_link: Option<ApplicationLink>,
pub application_reason: Option<String>,
}Expand description
Response for user application
Fields§
§id: Uuid§company_id: Option<Uuid>§first_name: Option<String>§last_name: Option<String>§email: Option<String>§is_active: Option<bool>§is_terms_of_service_accepted: Option<bool>§address: Option<Address>§phone_country_code: Option<String>§phone_number: Option<String>§wallet_address: Option<String>§solana_address: Option<String>§application_status: Option<ApplicationStatus>§application_external_verification_link: Option<ApplicationLink>§application_completion_link: Option<ApplicationLink>§application_reason: Option<String>Trait Implementations§
Source§impl Clone for UserApplicationResponse
impl Clone for UserApplicationResponse
Source§fn clone(&self) -> UserApplicationResponse
fn clone(&self) -> UserApplicationResponse
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 UserApplicationResponse
impl Debug for UserApplicationResponse
Source§impl<'de> Deserialize<'de> for UserApplicationResponse
impl<'de> Deserialize<'de> for UserApplicationResponse
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
Auto Trait Implementations§
impl Freeze for UserApplicationResponse
impl RefUnwindSafe for UserApplicationResponse
impl Send for UserApplicationResponse
impl Sync for UserApplicationResponse
impl Unpin for UserApplicationResponse
impl UnwindSafe for UserApplicationResponse
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