Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.16 KB

File metadata and controls

29 lines (20 loc) · 1.16 KB

UpdateApplicantStatusRequest

Properties

Name Type Description Notes
status int The ID of the status to assign to the application. Use the Get Applicant Statuses endpoint to get available status IDs.

Example

from bamboohr_sdk.models.update_applicant_status_request import UpdateApplicantStatusRequest

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

# convert the object into a dict
update_applicant_status_request_dict = update_applicant_status_request_instance.to_dict()
# create an instance of UpdateApplicantStatusRequest from a dict
update_applicant_status_request_from_dict = UpdateApplicantStatusRequest.from_dict(update_applicant_status_request_dict)

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