Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.08 KB

QuoteUnitsDto.md

File metadata and controls

28 lines (21 loc) · 1.08 KB

QuoteUnitsDto

Properties

Name Type Description Notes
analyse_language_part IdReference
value float [optional]

Example

from phrasetms_client.models.quote_units_dto import QuoteUnitsDto

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

# convert the object into a dict
quote_units_dto_dict = quote_units_dto_instance.to_dict()
# create an instance of QuoteUnitsDto from a dict
quote_units_dto_from_dict = QuoteUnitsDto.from_dict(quote_units_dto_dict)

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