Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.06 KB

File metadata and controls

30 lines (21 loc) · 1.06 KB

SectionSystemMetadata

Schema for section.system_metadata JSONB field.

Properties

Name Type Description Notes
information_statistics InformationStatistics [optional]

Example

from ksapi.models.section_system_metadata import SectionSystemMetadata

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

# convert the object into a dict
section_system_metadata_dict = section_system_metadata_instance.to_dict()
# create an instance of SectionSystemMetadata from a dict
section_system_metadata_from_dict = SectionSystemMetadata.from_dict(section_system_metadata_dict)

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