/** * 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 { OAuthRefreshTokenInformation } from './OAuthRefreshTokenInformation'; /** * Metadata for a paginated list of refresh token metadata that give OAuth 2.0 clients access to access a user's resources in Synapse. * @export * @interface OAuthRefreshTokenInformationList */ export interface OAuthRefreshTokenInformationList { /** * * @type {Array} * @memberof OAuthRefreshTokenInformationList */ results?: Array; /** * The token to get the next page of results. * @type {string} * @memberof OAuthRefreshTokenInformationList */ nextPageToken?: string; } /** * Check if a given object implements the OAuthRefreshTokenInformationList interface. */ export declare function instanceOfOAuthRefreshTokenInformationList(value: object): value is OAuthRefreshTokenInformationList; export declare function OAuthRefreshTokenInformationListFromJSON(json: any): OAuthRefreshTokenInformationList; export declare function OAuthRefreshTokenInformationListFromJSONTyped(json: any, ignoreDiscriminator: boolean): OAuthRefreshTokenInformationList; export declare function OAuthRefreshTokenInformationListToJSON(json: any): OAuthRefreshTokenInformationList; export declare function OAuthRefreshTokenInformationListToJSONTyped(value?: OAuthRefreshTokenInformationList | null, ignoreDiscriminator?: boolean): any;