Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.31 KB

ForbiddenStringWarningDtoAllOf.md

File metadata and controls

28 lines (21 loc) · 1.31 KB

ForbiddenStringWarningDtoAllOf

Properties

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

Example

from phrasetms_client.models.forbidden_string_warning_dto_all_of import ForbiddenStringWarningDtoAllOf

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

# convert the object into a dict
forbidden_string_warning_dto_all_of_dict = forbidden_string_warning_dto_all_of_instance.to_dict()
# create an instance of ForbiddenStringWarningDtoAllOf from a dict
forbidden_string_warning_dto_all_of_from_dict = ForbiddenStringWarningDtoAllOf.from_dict(forbidden_string_warning_dto_all_of_dict)

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