Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.04 KB

File metadata and controls

32 lines (23 loc) · 1.04 KB

AnnotationSetting

Properties

Name Type Description Notes
api_version str
kind str
metadata Metadata
spec AnnotationSettingSpec

Example

from halo_client.models.annotation_setting import AnnotationSetting

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

# convert the object into a dict
annotation_setting_dict = annotation_setting_instance.to_dict()
# create an instance of AnnotationSetting from a dict
annotation_setting_from_dict = AnnotationSetting.from_dict(annotation_setting_dict)

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