UNPKG

fastcomments-sdk

Version:

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

41 lines 1.46 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 PageUsersInfoResponse */ export interface PageUsersInfoResponse { /** * * @type {Array<PageUserEntry>} * @memberof PageUsersInfoResponse */ users: Array<PageUserEntry>; /** * * @type {APIStatus} * @memberof PageUsersInfoResponse */ status: APIStatus; } /** * Check if a given object implements the PageUsersInfoResponse interface. */ export declare function instanceOfPageUsersInfoResponse(value: object): value is PageUsersInfoResponse; export declare function PageUsersInfoResponseFromJSON(json: any): PageUsersInfoResponse; export declare function PageUsersInfoResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PageUsersInfoResponse; export declare function PageUsersInfoResponseToJSON(json: any): PageUsersInfoResponse; export declare function PageUsersInfoResponseToJSONTyped(value?: PageUsersInfoResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PageUsersInfoResponse.d.ts.map