Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.41 KB

File metadata and controls

31 lines (22 loc) · 1.41 KB

Notificationsv3GetFoldersRequest

Get folders from the integratioin provided. The configuration properties vary by integration and must match the required content.

Properties

Name Type Description Notes
folder_name str The folder_name field is provided to fetch all folders in the folder_name provided. [optional]
integration_id str The integration id to get the folders for. [optional]

Example

from ibm_gdsc_sdk_saas.models.notificationsv3_get_folders_request import Notificationsv3GetFoldersRequest

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

# convert the object into a dict
notificationsv3_get_folders_request_dict = notificationsv3_get_folders_request_instance.to_dict()
# create an instance of Notificationsv3GetFoldersRequest from a dict
notificationsv3_get_folders_request_from_dict = Notificationsv3GetFoldersRequest.from_dict(notificationsv3_get_folders_request_dict)

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