Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 1.6 KB

AsyncRequestDto.md

File metadata and controls

33 lines (26 loc) · 1.6 KB

AsyncRequestDto

Properties

Name Type Description Notes
id str [optional]
created_by UserReference [optional]
date_created datetime [optional]
action str [optional]
async_response AsyncResponseDto [optional]
parent AsyncRequestDto [optional]
project ProjectReference [optional]

Example

from phrasetms_client.models.async_request_dto import AsyncRequestDto

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

# convert the object into a dict
async_request_dto_dict = async_request_dto_instance.to_dict()
# create an instance of AsyncRequestDto from a dict
async_request_dto_from_dict = AsyncRequestDto.from_dict(async_request_dto_dict)

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