UNPKG

fastcomments-sdk

Version:

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

40 lines 1.5 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 GetV2PageReactUsersResponse */ export interface GetV2PageReactUsersResponse { /** * * @type {Array<string>} * @memberof GetV2PageReactUsersResponse */ userNames: Array<string>; /** * * @type {APIStatus} * @memberof GetV2PageReactUsersResponse */ status: APIStatus; } /** * Check if a given object implements the GetV2PageReactUsersResponse interface. */ export declare function instanceOfGetV2PageReactUsersResponse(value: object): value is GetV2PageReactUsersResponse; export declare function GetV2PageReactUsersResponseFromJSON(json: any): GetV2PageReactUsersResponse; export declare function GetV2PageReactUsersResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetV2PageReactUsersResponse; export declare function GetV2PageReactUsersResponseToJSON(json: any): GetV2PageReactUsersResponse; export declare function GetV2PageReactUsersResponseToJSONTyped(value?: GetV2PageReactUsersResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetV2PageReactUsersResponse.d.ts.map