pub struct LandingCompanyDetailsRequest {
pub country: Option<String>,
pub landing_company_details: LandingCompanyDetails,
pub passthrough: Option<Value>,
pub req_id: Option<i64>,
}
Expand description
The company has a number of licensed subsidiaries in various jurisdictions, which are called Landing Companies (and which are wholly owned subsidiaries of the Deriv Group). This call provides information about each Landing Company.
Fields§
§country: Option<String>
[Optional] Will return an extra field tin_not_mandatory
indicating if the landing company does not require tax identification number for the provided country.\n
landing_company_details: LandingCompanyDetails
Landing company shortcode.\n
passthrough: Option<Value>
[Optional] Used to pass data through the websocket, which may be retrieved via the echo_req
output field.\n
req_id: Option<i64>
[Optional] Used to map request to response.\n
Trait Implementations§
Source§impl Clone for LandingCompanyDetailsRequest
impl Clone for LandingCompanyDetailsRequest
Source§fn clone(&self) -> LandingCompanyDetailsRequest
fn clone(&self) -> LandingCompanyDetailsRequest
Returns a copy 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 LandingCompanyDetailsRequest
impl Debug for LandingCompanyDetailsRequest
Source§impl<'de> Deserialize<'de> for LandingCompanyDetailsRequest
impl<'de> Deserialize<'de> for LandingCompanyDetailsRequest
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 LandingCompanyDetailsRequest
impl RefUnwindSafe for LandingCompanyDetailsRequest
impl Send for LandingCompanyDetailsRequest
impl Sync for LandingCompanyDetailsRequest
impl Unpin for LandingCompanyDetailsRequest
impl UnwindSafe for LandingCompanyDetailsRequest
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