Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 973 Bytes

Metadata.md

File metadata and controls

30 lines (22 loc) · 973 Bytes

Metadata

data included in every list response

Properties

Name Type Description Notes
total_count int total number of entries [optional] [readonly]
unique_count int count of elements for unique entries [optional] [readonly]

Example

from neurostore_sdk.models.metadata import Metadata

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

# convert the object into a dict
metadata_dict = metadata_instance.to_dict()
# create an instance of Metadata from a dict
metadata_form_dict = metadata.from_dict(metadata_dict)

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