Table of Contents

ConLoadEffect

Properties

Name Type Description Notes
is_percentage bool [optional]
member_loadings List[ConLoadEffectMemberLoad] [optional]
id int [optional]
name str [optional]
active bool [optional]

Example

from ideastatica_connection_api.models.con_load_effect import ConLoadEffect

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

# convert the object into a dict
con_load_effect_dict = con_load_effect_instance.to_dict()
# create an instance of ConLoadEffect from a dict
con_load_effect_from_dict = ConLoadEffect.from_dict(con_load_effect_dict)

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