Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.29 KB

File metadata and controls

31 lines (22 loc) · 1.29 KB

Guardiumconnectorv3BlockUserResponse

Returns the response of the block user action.

Properties

Name Type Description Notes
block_result bool Result of block action. [optional]
err str Error message. [optional]

Example

from ibm_gdsc_sdk_saas.models.guardiumconnectorv3_block_user_response import Guardiumconnectorv3BlockUserResponse

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

# convert the object into a dict
guardiumconnectorv3_block_user_response_dict = guardiumconnectorv3_block_user_response_instance.to_dict()
# create an instance of Guardiumconnectorv3BlockUserResponse from a dict
guardiumconnectorv3_block_user_response_from_dict = Guardiumconnectorv3BlockUserResponse.from_dict(guardiumconnectorv3_block_user_response_dict)

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