Reference to a _Resource Constraint_s and its validation status.
Name | Type | Description | Notes |
---|---|---|---|
status | ConstraintStatusStatus | ||
constraint_id | str | A unique Resource Constraint id generated by the Waylay System | |
errors | List[ConstraintError] | [optional] |
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)