Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 1.58 KB

DesignWeightsDto.md

File metadata and controls

32 lines (25 loc) · 1.58 KB

DesignWeightsDto

Properties

Name Type Description Notes
design ToggleableWeightDto [optional]
length ToggleableWeightDto [optional]
local_formatting ToggleableWeightDto [optional]
markup ToggleableWeightDto [optional]
missing_text ToggleableWeightDto [optional]
truncation ToggleableWeightDto [optional]

Example

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)

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