Subscription detail which needs to be updated
Name | Type | Description | Notes |
---|---|---|---|
patch | List[ConnectionPatchOp] | List of patch operations |
from openapi_client.models.connection_patch_request import ConnectionPatchRequest
# TODO update the JSON string below
json = "{}"
# create an instance of ConnectionPatchRequest from a JSON string
connection_patch_request_instance = ConnectionPatchRequest.from_json(json)
# print the JSON string representation of the object
print(ConnectionPatchRequest.to_json())
# convert the object into a dict
connection_patch_request_dict = connection_patch_request_instance.to_dict()
# create an instance of ConnectionPatchRequest from a dict
connection_patch_request_from_dict = ConnectionPatchRequest.from_dict(connection_patch_request_dict)