Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.11 KB

ReadOnly.md

File metadata and controls

32 lines (24 loc) · 1.11 KB

ReadOnly

Properties

Name Type Description Notes
id str the identifier for the resource. [optional]
updated_at datetime when the resource was last modified. [optional] [readonly]
created_at datetime When the resource was created. [optional] [readonly]
user str Who owns the resource. [optional]
username str [optional] [readonly]

Example

from neurosynth_compose_sdk.models.read_only import ReadOnly

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

# convert the object into a dict
read_only_dict = read_only_instance.to_dict()
# create an instance of ReadOnly from a dict
read_only_form_dict = read_only.from_dict(read_only_dict)

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