ChangeRequest

Properties

Name Type Description Notes
description str The description of the Change Request. [optional]
name str The name of the Change Request.
uid str The unique identifier, represented as a UUID, of the Change Request.

Example

from scc_firewall_manager_sdk.models.change_request import ChangeRequest

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

# convert the object into a dict
change_request_dict = change_request_instance.to_dict()
# create an instance of ChangeRequest from a dict
change_request_form_dict = change_request.from_dict(change_request_dict)

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