pub struct CreditPayrollIncomeGetRequestOptions {
pub item_ids: Option<Vec<String>>,
}Expand description
An optional object for /credit/payroll_income/get request options.
Fields§
§item_ids: Option<Vec<String>>An array of item_ids whose payroll information is returned. Each item_id should uniquely identify a payroll income item. If this field is not provided, all item_ids associated with the user_token will returned in the response.
Trait Implementations§
Source§impl Clone for CreditPayrollIncomeGetRequestOptions
impl Clone for CreditPayrollIncomeGetRequestOptions
Source§fn clone(&self) -> CreditPayrollIncomeGetRequestOptions
fn clone(&self) -> CreditPayrollIncomeGetRequestOptions
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 Default for CreditPayrollIncomeGetRequestOptions
impl Default for CreditPayrollIncomeGetRequestOptions
Source§fn default() -> CreditPayrollIncomeGetRequestOptions
fn default() -> CreditPayrollIncomeGetRequestOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreditPayrollIncomeGetRequestOptions
impl<'de> Deserialize<'de> for CreditPayrollIncomeGetRequestOptions
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 CreditPayrollIncomeGetRequestOptions
impl RefUnwindSafe for CreditPayrollIncomeGetRequestOptions
impl Send for CreditPayrollIncomeGetRequestOptions
impl Sync for CreditPayrollIncomeGetRequestOptions
impl Unpin for CreditPayrollIncomeGetRequestOptions
impl UnwindSafe for CreditPayrollIncomeGetRequestOptions
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