Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.34 KB

File metadata and controls

31 lines (22 loc) · 1.34 KB

Auditv3PutActivityRecordResponse

PutActivityRecordResponse indicates if the activity log record was created.

Properties

Name Type Description Notes
result str Result is "" if an activity log record is created, otherwise an error is returned. [optional]
status RpcStatus [optional]

Example

from ibm_gdsc_sdk_saas.models.auditv3_put_activity_record_response import Auditv3PutActivityRecordResponse

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

# convert the object into a dict
auditv3_put_activity_record_response_dict = auditv3_put_activity_record_response_instance.to_dict()
# create an instance of Auditv3PutActivityRecordResponse from a dict
auditv3_put_activity_record_response_from_dict = Auditv3PutActivityRecordResponse.from_dict(auditv3_put_activity_record_response_dict)

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