UNPKG

fastcomments-sdk

Version:

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

89 lines 2.45 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 GetPreBanSummaryResponse */ export interface GetPreBanSummaryResponse { /** * * @type {APIStatus} * @memberof GetPreBanSummaryResponse */ status: APIStatus; /** * * @type {Array<string>} * @memberof GetPreBanSummaryResponse */ usernames: Array<string>; /** * * @type {number} * @memberof GetPreBanSummaryResponse */ count: number; /** * * @type {string} * @memberof GetPreBanSummaryResponse */ reason: string; /** * * @type {string} * @memberof GetPreBanSummaryResponse */ code: string; /** * * @type {string} * @memberof GetPreBanSummaryResponse */ secondaryCode?: string; /** * * @type {number} * @memberof GetPreBanSummaryResponse */ bannedUntil?: number; /** * * @type {number} * @memberof GetPreBanSummaryResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetPreBanSummaryResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetPreBanSummaryResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetPreBanSummaryResponse interface. */ export declare function instanceOfGetPreBanSummaryResponse(value: object): value is GetPreBanSummaryResponse; export declare function GetPreBanSummaryResponseFromJSON(json: any): GetPreBanSummaryResponse; export declare function GetPreBanSummaryResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetPreBanSummaryResponse; export declare function GetPreBanSummaryResponseToJSON(json: any): GetPreBanSummaryResponse; export declare function GetPreBanSummaryResponseToJSONTyped(value?: GetPreBanSummaryResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetPreBanSummaryResponse.d.ts.map