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