/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { Webhook } from './Webhook'; /** * Response body containing the list of webhook for a user. * @export * @interface ListUserWebhooksResponse */ export interface ListUserWebhooksResponse { /** * The Webhooks belonging to a given user. * @type {Array} * @memberof ListUserWebhooksResponse */ page?: Array; /** * Forward this token to get the next page of results. * @type {string} * @memberof ListUserWebhooksResponse */ nextPageToken?: string; } /** * Check if a given object implements the ListUserWebhooksResponse interface. */ export declare function instanceOfListUserWebhooksResponse(value: object): value is ListUserWebhooksResponse; export declare function ListUserWebhooksResponseFromJSON(json: any): ListUserWebhooksResponse; export declare function ListUserWebhooksResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListUserWebhooksResponse; export declare function ListUserWebhooksResponseToJSON(json: any): ListUserWebhooksResponse; export declare function ListUserWebhooksResponseToJSONTyped(value?: ListUserWebhooksResponse | null, ignoreDiscriminator?: boolean): any;