Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.35 KB

File metadata and controls

35 lines (26 loc) · 1.35 KB

Assetsv3AssetChangeLog

Properties

Name Type Description Notes
action_taken str [optional]
activity str [optional]
after List[Assetsv3BeforeAfter] [optional]
before List[Assetsv3BeforeAfter] [optional]
var_date str [optional]
performed_by str [optional]
rule List[Assetsv3RuleLog] [optional]

Example

from ibm_gdsc_sdk_saas.models.assetsv3_asset_change_log import Assetsv3AssetChangeLog

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

# convert the object into a dict
assetsv3_asset_change_log_dict = assetsv3_asset_change_log_instance.to_dict()
# create an instance of Assetsv3AssetChangeLog from a dict
assetsv3_asset_change_log_from_dict = Assetsv3AssetChangeLog.from_dict(assetsv3_asset_change_log_dict)

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