UNPKG

fastcomments-sdk

Version:

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

83 lines 2.43 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 GetV2PageReactUsersResponse1 */ export interface GetV2PageReactUsersResponse1 { /** * * @type {Array<string>} * @memberof GetV2PageReactUsersResponse1 */ userNames: Array<string>; /** * * @type {APIStatus} * @memberof GetV2PageReactUsersResponse1 */ status: APIStatus; /** * * @type {string} * @memberof GetV2PageReactUsersResponse1 */ reason: string; /** * * @type {string} * @memberof GetV2PageReactUsersResponse1 */ code: string; /** * * @type {string} * @memberof GetV2PageReactUsersResponse1 */ secondaryCode?: string; /** * * @type {number} * @memberof GetV2PageReactUsersResponse1 */ bannedUntil?: number; /** * * @type {number} * @memberof GetV2PageReactUsersResponse1 */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetV2PageReactUsersResponse1 */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetV2PageReactUsersResponse1 */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetV2PageReactUsersResponse1 interface. */ export declare function instanceOfGetV2PageReactUsersResponse1(value: object): value is GetV2PageReactUsersResponse1; export declare function GetV2PageReactUsersResponse1FromJSON(json: any): GetV2PageReactUsersResponse1; export declare function GetV2PageReactUsersResponse1FromJSONTyped(json: any, ignoreDiscriminator: boolean): GetV2PageReactUsersResponse1; export declare function GetV2PageReactUsersResponse1ToJSON(json: any): GetV2PageReactUsersResponse1; export declare function GetV2PageReactUsersResponse1ToJSONTyped(value?: GetV2PageReactUsersResponse1 | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetV2PageReactUsersResponse1.d.ts.map