Table of Contents

Loading

Properties

Name Type Description Notes
loading_type LoadingType [optional]
id int [optional]

Example

from ideastatica_rcs_api.models.loading import Loading

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

# convert the object into a dict
loading_dict = loading_instance.to_dict()
# create an instance of Loading from a dict
loading_from_dict = Loading.from_dict(loading_dict)

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