Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.22 KB

File metadata and controls

30 lines (21 loc) · 1.22 KB

AddPackageSectionItemChildAgesCommand

Properties

Name Type Description Notes
age int [optional]
units int [optional]

Example

from feratel_client.models.add_package_section_item_child_ages_command import AddPackageSectionItemChildAgesCommand

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

# convert the object into a dict
add_package_section_item_child_ages_command_dict = add_package_section_item_child_ages_command_instance.to_dict()
# create an instance of AddPackageSectionItemChildAgesCommand from a dict
add_package_section_item_child_ages_command_from_dict = AddPackageSectionItemChildAgesCommand.from_dict(add_package_section_item_child_ages_command_dict)

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