Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 988 Bytes

File metadata and controls

30 lines (21 loc) · 988 Bytes

ProfileObjectFields

Properties

Name Type Description Notes
description str [optional]
name str

Example

from hyperstack.models.profile_object_fields import ProfileObjectFields

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

# convert the object into a dict
profile_object_fields_dict = profile_object_fields_instance.to_dict()
# create an instance of ProfileObjectFields from a dict
profile_object_fields_from_dict = ProfileObjectFields.from_dict(profile_object_fields_dict)

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