Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.26 KB

AnalyseRecalculateResponseDto.md

File metadata and controls

27 lines (20 loc) · 1.26 KB

AnalyseRecalculateResponseDto

Properties

Name Type Description Notes
analyses List[AsyncAnalyseResponseDto] [optional]

Example

from phrasetms_client.models.analyse_recalculate_response_dto import AnalyseRecalculateResponseDto

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

# convert the object into a dict
analyse_recalculate_response_dto_dict = analyse_recalculate_response_dto_instance.to_dict()
# create an instance of AnalyseRecalculateResponseDto from a dict
analyse_recalculate_response_dto_from_dict = AnalyseRecalculateResponseDto.from_dict(analyse_recalculate_response_dto_dict)

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