Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 1.84 KB

FluencyWeightsDto.md

File metadata and controls

34 lines (27 loc) · 1.84 KB

FluencyWeightsDto

Properties

Name Type Description Notes
fluency ToggleableWeightDto [optional]
punctuation ToggleableWeightDto [optional]
spelling ToggleableWeightDto [optional]
grammar ToggleableWeightDto [optional]
grammatical_register ToggleableWeightDto [optional]
inconsistency ToggleableWeightDto [optional]
cross_reference ToggleableWeightDto [optional]
character_encoding ToggleableWeightDto [optional]

Example

from phrasetms_client.models.fluency_weights_dto import FluencyWeightsDto

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

# convert the object into a dict
fluency_weights_dto_dict = fluency_weights_dto_instance.to_dict()
# create an instance of FluencyWeightsDto from a dict
fluency_weights_dto_from_dict = FluencyWeightsDto.from_dict(fluency_weights_dto_dict)

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