UNPKG

fastcomments-sdk

Version:

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

83 lines 2.48 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 { CustomConfigParameters } from './CustomConfigParameters'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface GetV2PageReactUsers200Response */ export interface GetV2PageReactUsers200Response { /** * * @type {Array<string>} * @memberof GetV2PageReactUsers200Response */ userNames: Array<string>; /** * * @type {APIStatus} * @memberof GetV2PageReactUsers200Response */ status: APIStatus; /** * * @type {string} * @memberof GetV2PageReactUsers200Response */ reason: string; /** * * @type {string} * @memberof GetV2PageReactUsers200Response */ code: string; /** * * @type {string} * @memberof GetV2PageReactUsers200Response */ secondaryCode?: string; /** * * @type {number} * @memberof GetV2PageReactUsers200Response */ bannedUntil?: number; /** * * @type {number} * @memberof GetV2PageReactUsers200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetV2PageReactUsers200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetV2PageReactUsers200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetV2PageReactUsers200Response interface. */ export declare function instanceOfGetV2PageReactUsers200Response(value: object): value is GetV2PageReactUsers200Response; export declare function GetV2PageReactUsers200ResponseFromJSON(json: any): GetV2PageReactUsers200Response; export declare function GetV2PageReactUsers200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetV2PageReactUsers200Response; export declare function GetV2PageReactUsers200ResponseToJSON(json: any): GetV2PageReactUsers200Response; export declare function GetV2PageReactUsers200ResponseToJSONTyped(value?: GetV2PageReactUsers200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetV2PageReactUsers200Response.d.ts.map