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