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] |
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)