Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 991 Bytes

File metadata and controls

30 lines (21 loc) · 991 Bytes

UpdateCustodianBody

Properties

Name Type Description Notes
data_store_id str
custodian str

Example

from ibm_gdsc_sdk_saas.models.update_custodian_body import UpdateCustodianBody

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

# convert the object into a dict
update_custodian_body_dict = update_custodian_body_instance.to_dict()
# create an instance of UpdateCustodianBody from a dict
update_custodian_body_from_dict = UpdateCustodianBody.from_dict(update_custodian_body_dict)

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