pub struct ContractsForCompanyRequest {
pub contracts_for_company: i64,
pub landing_company: Option<LandingCompany>,
pub loginid: Option<String>,
pub passthrough: Option<Value>,
pub req_id: Option<i64>,
}
Expand description
Get the list of currently available contracts for a given landing company.
Fields§
§contracts_for_company: i64
Must be 1
\n
landing_company: Option<LandingCompany>
[Optional] Indicates which landing company to get a list of contracts for. If you are logged in, your account’s landing company will override this field.\n
loginid: Option<String>
[Optional] The login id of the user. If left unspecified, it defaults to the initial authorized token’s login id.\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 ContractsForCompanyRequest
impl Clone for ContractsForCompanyRequest
Source§fn clone(&self) -> ContractsForCompanyRequest
fn clone(&self) -> ContractsForCompanyRequest
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 ContractsForCompanyRequest
impl Debug for ContractsForCompanyRequest
Source§impl<'de> Deserialize<'de> for ContractsForCompanyRequest
impl<'de> Deserialize<'de> for ContractsForCompanyRequest
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 ContractsForCompanyRequest
impl RefUnwindSafe for ContractsForCompanyRequest
impl Send for ContractsForCompanyRequest
impl Sync for ContractsForCompanyRequest
impl Unpin for ContractsForCompanyRequest
impl UnwindSafe for ContractsForCompanyRequest
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