Name | Type | Description | Notes |
---|---|---|---|
status | bool | [optional] | |
message | str | [optional] | |
security_rule | SecurityGroupRuleFields | [optional] |
from hyperstack.models.security_group_rule import SecurityGroupRule
# TODO update the JSON string below
json = "{}"
# create an instance of SecurityGroupRule from a JSON string
security_group_rule_instance = SecurityGroupRule.from_json(json)
# print the JSON string representation of the object
print SecurityGroupRule.to_json()
# convert the object into a dict
security_group_rule_dict = security_group_rule_instance.to_dict()
# create an instance of SecurityGroupRule from a dict
security_group_rule_form_dict = security_group_rule.from_dict(security_group_rule_dict)