pub struct CompanyApplicationResponse {
pub id: Uuid,
pub name: String,
pub address: Address,
pub ultimate_beneficial_owners: Option<Vec<UltimateBeneficialOwnerResponse>>,
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 company application
Fields§
§id: Uuid§name: String§address: Address§ultimate_beneficial_owners: Option<Vec<UltimateBeneficialOwnerResponse>>§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 CompanyApplicationResponse
impl Clone for CompanyApplicationResponse
Source§fn clone(&self) -> CompanyApplicationResponse
fn clone(&self) -> CompanyApplicationResponse
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 CompanyApplicationResponse
impl Debug for CompanyApplicationResponse
Source§impl<'de> Deserialize<'de> for CompanyApplicationResponse
impl<'de> Deserialize<'de> for CompanyApplicationResponse
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 CompanyApplicationResponse
impl RefUnwindSafe for CompanyApplicationResponse
impl Send for CompanyApplicationResponse
impl Sync for CompanyApplicationResponse
impl Unpin for CompanyApplicationResponse
impl UnwindSafe for CompanyApplicationResponse
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