Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.18 KB

ConstraintStatus.md

File metadata and controls

32 lines (23 loc) · 1.18 KB

ConstraintStatus

Reference to a _Resource Constraint_s and its validation status.

Properties

Name Type Description Notes
status ConstraintStatusStatus
constraint_id str A unique Resource Constraint id generated by the Waylay System
errors List[ConstraintError] [optional]

Example

from waylay.services.resources.models.constraint_status import ConstraintStatus

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

# convert the object into a dict
constraint_status_dict = constraint_status_instance.to_dict()
# create an instance of ConstraintStatus from a dict
constraint_status_form_dict = constraint_status.from_dict(constraint_status_dict)

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