UNPKG

fastcomments-sdk

Version:

FastComments API Client - A SDK for interacting with the FastComments API

53 lines 1.75 kB
/** * fastcomments * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.0.0 * * * 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 { PageUserEntry } from './PageUserEntry'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface PageUsersOfflineResponse */ export interface PageUsersOfflineResponse { /** * * @type {string} * @memberof PageUsersOfflineResponse */ nextAfterUserId: string | null; /** * * @type {string} * @memberof PageUsersOfflineResponse */ nextAfterName: string | null; /** * * @type {Array<PageUserEntry>} * @memberof PageUsersOfflineResponse */ users: Array<PageUserEntry>; /** * * @type {APIStatus} * @memberof PageUsersOfflineResponse */ status: APIStatus; } /** * Check if a given object implements the PageUsersOfflineResponse interface. */ export declare function instanceOfPageUsersOfflineResponse(value: object): value is PageUsersOfflineResponse; export declare function PageUsersOfflineResponseFromJSON(json: any): PageUsersOfflineResponse; export declare function PageUsersOfflineResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PageUsersOfflineResponse; export declare function PageUsersOfflineResponseToJSON(json: any): PageUsersOfflineResponse; export declare function PageUsersOfflineResponseToJSONTyped(value?: PageUsersOfflineResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PageUsersOfflineResponse.d.ts.map