| Name |
Type |
Description |
Notes |
| id |
int |
The ID of the training record. |
[optional] |
| employee_id |
str |
The ID of the employee associated with the training, returned as a string. |
[optional] |
| completed |
date |
Completed is a date in the format yyyy-mm-dd. |
[optional] |
| notes |
str |
Notes left on the training record. Null when not set. |
[optional] |
| instructor |
str |
Name of the instructor. Null when not set or when disabled by company training settings. |
[optional] |
| credits |
str |
Credits earned for the training record, returned as a string. Null when not set or when disabled by company training settings. |
[optional] |
| hours |
str |
Hours associated with the training record, returned as a string. Null when not set or when disabled by company training settings. |
[optional] |
| cost |
str |
The cost in the format '{amount} {currency}', e.g. '50.00 USD'. May be null or empty string when not set. |
[optional] |
| type |
TrainingRecordType |
|
[optional] |
from bamboohr_sdk.models.training_record import TrainingRecord
# TODO update the JSON string below
json = "{}"
# create an instance of TrainingRecord from a JSON string
training_record_instance = TrainingRecord.from_json(json)
# print the JSON string representation of the object
print(TrainingRecord.to_json())
# convert the object into a dict
training_record_dict = training_record_instance.to_dict()
# create an instance of TrainingRecord from a dict
training_record_from_dict = TrainingRecord.from_dict(training_record_dict)
[Back to Model list] [Back to API list] [Back to README]