/** * 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. */ /** * Request body for listing the user webhooks. * @export * @interface ListUserWebhooksRequest */ export interface ListUserWebhooksRequest { /** * Forward this token to get the next page of results. * @type {string} * @memberof ListUserWebhooksRequest */ nextPageToken?: string; } /** * Check if a given object implements the ListUserWebhooksRequest interface. */ export declare function instanceOfListUserWebhooksRequest(value: object): value is ListUserWebhooksRequest; export declare function ListUserWebhooksRequestFromJSON(json: any): ListUserWebhooksRequest; export declare function ListUserWebhooksRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListUserWebhooksRequest; export declare function ListUserWebhooksRequestToJSON(json: any): ListUserWebhooksRequest; export declare function ListUserWebhooksRequestToJSONTyped(value?: ListUserWebhooksRequest | null, ignoreDiscriminator?: boolean): any;