Name | Type | Description | Notes |
---|---|---|---|
id | str | [optional] | |
uid | str | [optional] | |
inner_id | int | [optional] | |
type | str | [optional] | |
name | str | [optional] | |
provider | ProviderReference | [optional] | |
created_by | UserReference | [optional] | |
date_created | datetime | [optional] | |
net_rate_scheme | NetRateSchemeReference | [optional] | |
can_change_net_rate_scheme | bool | [optional] | |
analyse_language_parts | List[AnalyseLanguagePartV3Dto] | [optional] | |
settings | AbstractAnalyseSettingsDto | [optional] | |
outdated | bool | [optional] | |
import_status | ImportStatusDto | [optional] | |
pure_warnings | List[str] | [optional] | |
project | ProjectReference | [optional] |
from phrasetms_client.models.analyse_v3_dto import AnalyseV3Dto
# TODO update the JSON string below
json = "{}"
# create an instance of AnalyseV3Dto from a JSON string
analyse_v3_dto_instance = AnalyseV3Dto.from_json(json)
# print the JSON string representation of the object
print AnalyseV3Dto.to_json()
# convert the object into a dict
analyse_v3_dto_dict = analyse_v3_dto_instance.to_dict()
# create an instance of AnalyseV3Dto from a dict
analyse_v3_dto_from_dict = AnalyseV3Dto.from_dict(analyse_v3_dto_dict)