Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.15 KB

MissingNumbersWarningDtoAllOf.md

File metadata and controls

27 lines (20 loc) · 1.15 KB

MissingNumbersWarningDtoAllOf

Properties

Name Type Description Notes
missing_numbers List[str] [optional]

Example

from phrasetms_client.models.missing_numbers_warning_dto_all_of import MissingNumbersWarningDtoAllOf

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

# convert the object into a dict
missing_numbers_warning_dto_all_of_dict = missing_numbers_warning_dto_all_of_instance.to_dict()
# create an instance of MissingNumbersWarningDtoAllOf from a dict
missing_numbers_warning_dto_all_of_from_dict = MissingNumbersWarningDtoAllOf.from_dict(missing_numbers_warning_dto_all_of_dict)

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