Name | Type | Description | Notes |
---|---|---|---|
design | ToggleableWeightDto | [optional] | |
length | ToggleableWeightDto | [optional] | |
local_formatting | ToggleableWeightDto | [optional] | |
markup | ToggleableWeightDto | [optional] | |
missing_text | ToggleableWeightDto | [optional] | |
truncation | ToggleableWeightDto | [optional] |
from phrasetms_client.models.design_weights_dto import DesignWeightsDto
# TODO update the JSON string below
json = "{}"
# create an instance of DesignWeightsDto from a JSON string
design_weights_dto_instance = DesignWeightsDto.from_json(json)
# print the JSON string representation of the object
print DesignWeightsDto.to_json()
# convert the object into a dict
design_weights_dto_dict = design_weights_dto_instance.to_dict()
# create an instance of DesignWeightsDto from a dict
design_weights_dto_from_dict = DesignWeightsDto.from_dict(design_weights_dto_dict)