Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 1.59 KB

StyleWeightsDto.md

File metadata and controls

32 lines (25 loc) · 1.59 KB

StyleWeightsDto

Properties

Name Type Description Notes
style ToggleableWeightDto [optional]
awkward ToggleableWeightDto [optional]
company_style ToggleableWeightDto [optional]
inconsistent_style ToggleableWeightDto [optional]
third_party_style ToggleableWeightDto [optional]
unidiomatic ToggleableWeightDto [optional]

Example

from phrasetms_client.models.style_weights_dto import StyleWeightsDto

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

# convert the object into a dict
style_weights_dto_dict = style_weights_dto_instance.to_dict()
# create an instance of StyleWeightsDto from a dict
style_weights_dto_from_dict = StyleWeightsDto.from_dict(style_weights_dto_dict)

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