Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.2 KB

ExtraNumbersV3WarningDto.md

File metadata and controls

28 lines (21 loc) · 1.2 KB

ExtraNumbersV3WarningDto

Properties

Name Type Description Notes
number str [optional]
positions List[Position] [optional]

Example

from phrasetms_client.models.extra_numbers_v3_warning_dto import ExtraNumbersV3WarningDto

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

# convert the object into a dict
extra_numbers_v3_warning_dto_dict = extra_numbers_v3_warning_dto_instance.to_dict()
# create an instance of ExtraNumbersV3WarningDto from a dict
extra_numbers_v3_warning_dto_from_dict = ExtraNumbersV3WarningDto.from_dict(extra_numbers_v3_warning_dto_dict)

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