pub struct EmployerSchema {
pub id: String,
pub type_: String,
pub reference_id: Option<String>,
pub name: String,
pub address: Option<AccountApplicationAddressSchema>,
}
Fields§
§id: String
Internal employer ID
type_: String
Type of employment.
reference_id: Option<String>
External employer reference ID. e.g. select employee group number.
name: String
Employer name
address: Option<AccountApplicationAddressSchema>
Trait Implementations§
Source§impl Debug for EmployerSchema
impl Debug for EmployerSchema
Source§impl<'de> Deserialize<'de> for EmployerSchema
impl<'de> Deserialize<'de> for EmployerSchema
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
Source§impl Display for EmployerSchema
impl Display for EmployerSchema
Auto Trait Implementations§
impl Freeze for EmployerSchema
impl RefUnwindSafe for EmployerSchema
impl Send for EmployerSchema
impl Sync for EmployerSchema
impl Unpin for EmployerSchema
impl UnwindSafe for EmployerSchema
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