Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.47 KB

File metadata and controls

31 lines (22 loc) · 1.47 KB

Guardiumconnectorv3UpdateStreamingResponse

UpdateStreamingResponse is the response message object returned when updating the streaming status in GI.

Properties

Name Type Description Notes
response str Response message. [optional]
response_code str Translatable reponse code or empty string if there is no response. [optional]

Example

from ibm_gdsc_sdk_saas.models.guardiumconnectorv3_update_streaming_response import Guardiumconnectorv3UpdateStreamingResponse

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

# convert the object into a dict
guardiumconnectorv3_update_streaming_response_dict = guardiumconnectorv3_update_streaming_response_instance.to_dict()
# create an instance of Guardiumconnectorv3UpdateStreamingResponse from a dict
guardiumconnectorv3_update_streaming_response_from_dict = Guardiumconnectorv3UpdateStreamingResponse.from_dict(guardiumconnectorv3_update_streaming_response_dict)

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