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
fromcyperf.models.param_metadata_type_info_stringimportParamMetadataTypeInfoString# TODO update the JSON string belowjson="{}"# create an instance of ParamMetadataTypeInfoString from a JSON stringparam_metadata_type_info_string_instance=ParamMetadataTypeInfoString.from_json(json)
# print the JSON string representation of the objectprint(ParamMetadataTypeInfoString.to_json())
# convert the object into a dictparam_metadata_type_info_string_dict=param_metadata_type_info_string_instance.to_dict()
# create an instance of ParamMetadataTypeInfoString from a dictparam_metadata_type_info_string_from_dict=ParamMetadataTypeInfoString.from_dict(param_metadata_type_info_string_dict)