Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.03 KB

CreateReferenceFileNoteDto.md

File metadata and controls

27 lines (20 loc) · 1.03 KB

CreateReferenceFileNoteDto

Properties

Name Type Description Notes
note str

Example

from phrasetms_client.models.create_reference_file_note_dto import CreateReferenceFileNoteDto

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

# convert the object into a dict
create_reference_file_note_dto_dict = create_reference_file_note_dto_instance.to_dict()
# create an instance of CreateReferenceFileNoteDto from a dict
create_reference_file_note_dto_from_dict = CreateReferenceFileNoteDto.from_dict(create_reference_file_note_dto_dict)

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