Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 937 Bytes

REGEX.md

File metadata and controls

27 lines (20 loc) · 937 Bytes

REGEX

Properties

Name Type Description Notes
rules List[RegexpCheckRuleDtoV2] [optional]

Example

from phrasetms_client.models.regex import REGEX

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

# convert the object into a dict
regex_dict = regex_instance.to_dict()
# create an instance of REGEX from a dict
regex_from_dict = REGEX.from_dict(regex_dict)

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