pub struct ConsumerLendingEmployerSchema {Show 14 fields
pub status: String,
pub type_: Option<String>,
pub name: Option<String>,
pub employer_seg_code: Option<String>,
pub address: ConsumerLendingAddressSchema,
pub phone_number: Option<f64>,
pub title: Option<String>,
pub start_date: Option<String>,
pub end_date: Option<String>,
pub hours_per_week: Option<f64>,
pub months_on_job: Option<f64>,
pub years_in_profession: Option<f64>,
pub ownership: Option<ConsumerLendingEmploymentOwnershipSchema>,
pub incomes: Option<Vec<ConsumerLendingIncomeSchema>>,
}
Fields§
§status: String
§type_: Option<String>
§name: Option<String>
§employer_seg_code: Option<String>
Employer SEG code
address: ConsumerLendingAddressSchema
Address
phone_number: Option<f64>
§title: Option<String>
§start_date: Option<String>
Start date in ISO 8601 format
end_date: Option<String>
End date in ISO 8601 format
hours_per_week: Option<f64>
Hours per week
months_on_job: Option<f64>
Number of months on the job
years_in_profession: Option<f64>
Number of years in profession
ownership: Option<ConsumerLendingEmploymentOwnershipSchema>
Employer ownership
incomes: Option<Vec<ConsumerLendingIncomeSchema>>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ConsumerLendingEmployerSchema
impl<'de> Deserialize<'de> for ConsumerLendingEmployerSchema
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 ConsumerLendingEmployerSchema
impl RefUnwindSafe for ConsumerLendingEmployerSchema
impl Send for ConsumerLendingEmployerSchema
impl Sync for ConsumerLendingEmployerSchema
impl Unpin for ConsumerLendingEmployerSchema
impl UnwindSafe for ConsumerLendingEmployerSchema
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