import * as $dara from '@darabonba/typescript'; export declare class ListEventBridgeIntegrationsResponseBodyPageBeanEventBridgeIntegrations extends $dara.Model { /** * @remarks * The description of the EventBridge integration. * * @example * test */ description?: string; /** * @remarks * The ID of the EventBridge integration. * * @example * 123 */ id?: number; /** * @remarks * The name of the EventBridge integration. * * @example * EventBridge_Test */ name?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListEventBridgeIntegrationsResponseBodyPageBean extends $dara.Model { /** * @remarks * The EventBridge integrations. */ eventBridgeIntegrations?: ListEventBridgeIntegrationsResponseBodyPageBeanEventBridgeIntegrations[]; /** * @remarks * The number of the returned page. * * @example * 1 */ page?: number; /** * @remarks * The number of entries returned per page. * * @example * 15 */ size?: number; /** * @remarks * The total number of EventBridge integrations that are returned. * * @example * 1 */ total?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListEventBridgeIntegrationsResponseBody extends $dara.Model { /** * @remarks * The information about EventBridge integrations that is returned on each page. */ pageBean?: ListEventBridgeIntegrationsResponseBodyPageBean; /** * @remarks * The ID of the request. * * @example * 2B289756-E791-5842-BCBD-AD414C****** */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }