/** * 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 { AccessTokenRecord } from './AccessTokenRecord'; /** * Metadata for a paginated list of personal access token records. * @export * @interface AccessTokenRecordList */ export interface AccessTokenRecordList { /** * * @type {Array} * @memberof AccessTokenRecordList */ results?: Array; /** * The token to get the next page of results. * @type {string} * @memberof AccessTokenRecordList */ nextPageToken?: string; } /** * Check if a given object implements the AccessTokenRecordList interface. */ export declare function instanceOfAccessTokenRecordList(value: object): value is AccessTokenRecordList; export declare function AccessTokenRecordListFromJSON(json: any): AccessTokenRecordList; export declare function AccessTokenRecordListFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccessTokenRecordList; export declare function AccessTokenRecordListToJSON(json: any): AccessTokenRecordList; export declare function AccessTokenRecordListToJSONTyped(value?: AccessTokenRecordList | null, ignoreDiscriminator?: boolean): any;