Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.43 KB

ResourceConstraintWithIdEntity.md

File metadata and controls

33 lines (24 loc) · 1.43 KB

ResourceConstraintWithIdEntity

Properties

Name Type Description Notes
id str A unique Resource Constraint id generated by the Waylay System
name str Name for the Resource Constraint
description str A description for the Resource Constraint [optional]
tags List[str] [optional]
attributes List[AttributeItem] List of attribute descriptions

Example

from waylay.services.resources.models.resource_constraint_with_id_entity import ResourceConstraintWithIdEntity

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

# convert the object into a dict
resource_constraint_with_id_entity_dict = resource_constraint_with_id_entity_instance.to_dict()
# create an instance of ResourceConstraintWithIdEntity from a dict
resource_constraint_with_id_entity_form_dict = resource_constraint_with_id_entity.from_dict(resource_constraint_with_id_entity_dict)

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