Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.19 KB

File metadata and controls

30 lines (21 loc) · 1.19 KB

Assetsv3SetBannerStateRequest

SetBannerStateRequest - Set state of asset inventory banner.

Properties

Name Type Description Notes
hide_assets_banner bool bool to set if banner to hidden or not. [optional]

Example

from ibm_gdsc_sdk_saas.models.assetsv3_set_banner_state_request import Assetsv3SetBannerStateRequest

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

# convert the object into a dict
assetsv3_set_banner_state_request_dict = assetsv3_set_banner_state_request_instance.to_dict()
# create an instance of Assetsv3SetBannerStateRequest from a dict
assetsv3_set_banner_state_request_from_dict = Assetsv3SetBannerStateRequest.from_dict(assetsv3_set_banner_state_request_dict)

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