Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.02 KB

ReferenceFileAccessDto.md

File metadata and controls

27 lines (20 loc) · 1.02 KB

ReferenceFileAccessDto

Properties

Name Type Description Notes
can_create bool [optional]

Example

from phrasetms_client.models.reference_file_access_dto import ReferenceFileAccessDto

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

# convert the object into a dict
reference_file_access_dto_dict = reference_file_access_dto_instance.to_dict()
# create an instance of ReferenceFileAccessDto from a dict
reference_file_access_dto_from_dict = ReferenceFileAccessDto.from_dict(reference_file_access_dto_dict)

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