pub struct CreateCompanyApplicationRequest {
pub initial_user: InitialUser,
pub name: String,
pub address: Address,
pub chain_id: Option<String>,
pub contract_address: Option<String>,
pub source_key: Option<String>,
pub entity: EntityInfo,
pub representatives: Vec<Representative>,
pub ultimate_beneficial_owners: Vec<UltimateBeneficialOwner>,
}Expand description
Request to create a company application
Fields§
§initial_user: InitialUser§name: String§address: Address§chain_id: Option<String>§contract_address: Option<String>§source_key: Option<String>§entity: EntityInfo§representatives: Vec<Representative>§ultimate_beneficial_owners: Vec<UltimateBeneficialOwner>Trait Implementations§
Source§impl Clone for CreateCompanyApplicationRequest
impl Clone for CreateCompanyApplicationRequest
Source§fn clone(&self) -> CreateCompanyApplicationRequest
fn clone(&self) -> CreateCompanyApplicationRequest
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<'de> Deserialize<'de> for CreateCompanyApplicationRequest
impl<'de> Deserialize<'de> for CreateCompanyApplicationRequest
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 CreateCompanyApplicationRequest
impl RefUnwindSafe for CreateCompanyApplicationRequest
impl Send for CreateCompanyApplicationRequest
impl Sync for CreateCompanyApplicationRequest
impl Unpin for CreateCompanyApplicationRequest
impl UnwindSafe for CreateCompanyApplicationRequest
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