Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1 KB

File metadata and controls

30 lines (21 loc) · 1 KB

FileMetadata

Properties

Name Type Description Notes
default bool A flag indicating if the file is used as default configuration or not [optional]
user_visible bool A flag indicating if the file is user-visible or not [optional]

Example

from cyperf.models.file_metadata import FileMetadata

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

# convert the object into a dict
file_metadata_dict = file_metadata_instance.to_dict()
# create an instance of FileMetadata from a dict
file_metadata_from_dict = FileMetadata.from_dict(file_metadata_dict)

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