Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.07 KB

File metadata and controls

29 lines (20 loc) · 1.07 KB

BenefitDeductionTypeId

The deduction type ID. Integer for leaf types (e.g. 1 for 401(k)); string slug for grouped parent types (e.g. "pretax_subtype").

Properties

Name Type Description Notes

Example

from bamboohr_sdk.models.benefit_deduction_type_id import BenefitDeductionTypeId

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

# convert the object into a dict
benefit_deduction_type_id_dict = benefit_deduction_type_id_instance.to_dict()
# create an instance of BenefitDeductionTypeId from a dict
benefit_deduction_type_id_from_dict = BenefitDeductionTypeId.from_dict(benefit_deduction_type_id_dict)

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