You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ID of the status to assign to the application. Use the Get Applicant Statuses endpoint to get available status IDs.
Example
frombamboohr_sdk.models.update_applicant_status_requestimportUpdateApplicantStatusRequest# TODO update the JSON string belowjson="{}"# create an instance of UpdateApplicantStatusRequest from a JSON stringupdate_applicant_status_request_instance=UpdateApplicantStatusRequest.from_json(json)
# print the JSON string representation of the objectprint(UpdateApplicantStatusRequest.to_json())
# convert the object into a dictupdate_applicant_status_request_dict=update_applicant_status_request_instance.to_dict()
# create an instance of UpdateApplicantStatusRequest from a dictupdate_applicant_status_request_from_dict=UpdateApplicantStatusRequest.from_dict(update_applicant_status_request_dict)