Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.62 KB

File metadata and controls

35 lines (26 loc) · 1.62 KB

ApplicationsListApplicationsInnerApplicant

Information about the applicant

Properties

Name Type Description Notes
id int Applicant ID [optional]
first_name str Applicant's first name [optional]
last_name str Applicant's last name [optional]
avatar str URL to applicant's avatar image, or null [optional]
email str Applicant's email address [optional]
source str Source of the application [optional]

Example

from bamboohr_sdk.models.applications_list_applications_inner_applicant import ApplicationsListApplicationsInnerApplicant

# TODO update the JSON string below
json = "{}"
# create an instance of ApplicationsListApplicationsInnerApplicant from a JSON string
applications_list_applications_inner_applicant_instance = ApplicationsListApplicationsInnerApplicant.from_json(json)
# print the JSON string representation of the object
print(ApplicationsListApplicationsInnerApplicant.to_json())

# convert the object into a dict
applications_list_applications_inner_applicant_dict = applications_list_applications_inner_applicant_instance.to_dict()
# create an instance of ApplicationsListApplicationsInnerApplicant from a dict
applications_list_applications_inner_applicant_from_dict = ApplicationsListApplicationsInnerApplicant.from_dict(applications_list_applications_inner_applicant_dict)

[Back to Model list] [Back to API list] [Back to README]