Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.04 KB

ExtraNumbersWarningDto.md

File metadata and controls

27 lines (20 loc) · 1.04 KB

ExtraNumbersWarningDto

Properties

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

Example

from phrasetms_client.models.extra_numbers_warning_dto import ExtraNumbersWarningDto

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

# convert the object into a dict
extra_numbers_warning_dto_dict = extra_numbers_warning_dto_instance.to_dict()
# create an instance of ExtraNumbersWarningDto from a dict
extra_numbers_warning_dto_from_dict = ExtraNumbersWarningDto.from_dict(extra_numbers_warning_dto_dict)

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