Name | Type | Description | Notes |
---|---|---|---|
verity | ToggleableWeightDto | [optional] | |
culture_specific_reference | ToggleableWeightDto | [optional] |
from phrasetms_client.models.verity_weights_dto import VerityWeightsDto
# TODO update the JSON string below
json = "{}"
# create an instance of VerityWeightsDto from a JSON string
verity_weights_dto_instance = VerityWeightsDto.from_json(json)
# print the JSON string representation of the object
print VerityWeightsDto.to_json()
# convert the object into a dict
verity_weights_dto_dict = verity_weights_dto_instance.to_dict()
# create an instance of VerityWeightsDto from a dict
verity_weights_dto_from_dict = VerityWeightsDto.from_dict(verity_weights_dto_dict)