UNPKG

fastcomments-sdk

Version:

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

40 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 { APIStatus } from './APIStatus'; /** * * @export * @interface GetPageReactUsersResponse */ export interface GetPageReactUsersResponse { /** * * @type {APIStatus} * @memberof GetPageReactUsersResponse */ status: APIStatus; /** * * @type {Array<string>} * @memberof GetPageReactUsersResponse */ userNames?: Array<string>; } /** * Check if a given object implements the GetPageReactUsersResponse interface. */ export declare function instanceOfGetPageReactUsersResponse(value: object): value is GetPageReactUsersResponse; export declare function GetPageReactUsersResponseFromJSON(json: any): GetPageReactUsersResponse; export declare function GetPageReactUsersResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetPageReactUsersResponse; export declare function GetPageReactUsersResponseToJSON(json: any): GetPageReactUsersResponse; export declare function GetPageReactUsersResponseToJSONTyped(value?: GetPageReactUsersResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetPageReactUsersResponse.d.ts.map