You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Signifies that the Organization has signed the agreement or not.
Example
fromlilt.models.create_converter_config_parametersimportCreateConverterConfigParameters# TODO update the JSON string belowjson="{}"# create an instance of CreateConverterConfigParameters from a JSON stringcreate_converter_config_parameters_instance=CreateConverterConfigParameters.from_json(json)
# print the JSON string representation of the objectprint(CreateConverterConfigParameters.to_json())
# convert the object into a dictcreate_converter_config_parameters_dict=create_converter_config_parameters_instance.to_dict()
# create an instance of CreateConverterConfigParameters from a dictcreate_converter_config_parameters_from_dict=CreateConverterConfigParameters.from_dict(create_converter_config_parameters_dict)