Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.09 KB

File metadata and controls

29 lines (20 loc) · 1.09 KB

UpdateTrainingCategoryRequest

Properties

Name Type Description Notes
name str Name of the training category.

Example

from bamboohr_sdk.models.update_training_category_request import UpdateTrainingCategoryRequest

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

# convert the object into a dict
update_training_category_request_dict = update_training_category_request_instance.to_dict()
# create an instance of UpdateTrainingCategoryRequest from a dict
update_training_category_request_from_dict = UpdateTrainingCategoryRequest.from_dict(update_training_category_request_dict)

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