Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 896 Bytes

File metadata and controls

31 lines (22 loc) · 896 Bytes

Validation

Properties

Name Type Description Notes
type str
regex str [optional]
regex_message str [optional]

Example

from boldsign.models.validation import Validation

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

# convert the object into a dict
validation_dict = validation_instance.to_dict()
# create an instance of Validation from a dict
validation_from_dict = Validation.from_dict(validation_dict)

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