Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.22 KB

ProjectReferenceFilesRequestDto.md

File metadata and controls

27 lines (20 loc) · 1.22 KB

ProjectReferenceFilesRequestDto

Properties

Name Type Description Notes
reference_files List[IdReference]

Example

from phrasetms_client.models.project_reference_files_request_dto import ProjectReferenceFilesRequestDto

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

# convert the object into a dict
project_reference_files_request_dto_dict = project_reference_files_request_dto_instance.to_dict()
# create an instance of ProjectReferenceFilesRequestDto from a dict
project_reference_files_request_dto_from_dict = ProjectReferenceFilesRequestDto.from_dict(project_reference_files_request_dto_dict)

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