Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.25 KB

ResourceConstraintCreationResponse.md

File metadata and controls

31 lines (22 loc) · 1.25 KB

ResourceConstraintCreationResponse

Properties

Name Type Description Notes
status_code int
uri str
entity ResourceConstraintWithIdEntity

Example

from waylay.services.resources.models.resource_constraint_creation_response import ResourceConstraintCreationResponse

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

# convert the object into a dict
resource_constraint_creation_response_dict = resource_constraint_creation_response_instance.to_dict()
# create an instance of ResourceConstraintCreationResponse from a dict
resource_constraint_creation_response_form_dict = resource_constraint_creation_response.from_dict(resource_constraint_creation_response_dict)

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