/** * 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 { OAuthClient } from './OAuthClient'; /** * Metadata for a list page OAuth 2.0 clients * @export * @interface OAuthClientList */ export interface OAuthClientList { /** * * @type {Array} * @memberof OAuthClientList */ results?: Array; /** * The token to get the next page of results. * @type {string} * @memberof OAuthClientList */ nextPageToken?: string; } /** * Check if a given object implements the OAuthClientList interface. */ export declare function instanceOfOAuthClientList(value: object): value is OAuthClientList; export declare function OAuthClientListFromJSON(json: any): OAuthClientList; export declare function OAuthClientListFromJSONTyped(json: any, ignoreDiscriminator: boolean): OAuthClientList; export declare function OAuthClientListToJSON(json: any): OAuthClientList; export declare function OAuthClientListToJSONTyped(value?: OAuthClientList | null, ignoreDiscriminator?: boolean): any;