Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.02 KB

File metadata and controls

30 lines (21 loc) · 1.02 KB

AnnotationSettingSpec

Properties

Name Type Description Notes
form_schema List[object]
target_ref GroupKind

Example

from halo_client.models.annotation_setting_spec import AnnotationSettingSpec

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

# convert the object into a dict
annotation_setting_spec_dict = annotation_setting_spec_instance.to_dict()
# create an instance of AnnotationSettingSpec from a dict
annotation_setting_spec_from_dict = AnnotationSettingSpec.from_dict(annotation_setting_spec_dict)

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