Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 1.83 KB

LocaleConventionWeightsDto.md

File metadata and controls

33 lines (26 loc) · 1.83 KB

LocaleConventionWeightsDto

Properties

Name Type Description Notes
locale_convention ToggleableWeightDto [optional]
address_format ToggleableWeightDto [optional]
date_format ToggleableWeightDto [optional]
currency_format ToggleableWeightDto [optional]
measurement_format ToggleableWeightDto [optional]
shortcut_key ToggleableWeightDto [optional]
telephone_format ToggleableWeightDto [optional]

Example

from phrasetms_client.models.locale_convention_weights_dto import LocaleConventionWeightsDto

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

# convert the object into a dict
locale_convention_weights_dto_dict = locale_convention_weights_dto_instance.to_dict()
# create an instance of LocaleConventionWeightsDto from a dict
locale_convention_weights_dto_from_dict = LocaleConventionWeightsDto.from_dict(locale_convention_weights_dto_dict)

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