UNPKG

fastcomments-sdk

Version:

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

89 lines 2.6 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 GetCommentBanStatus200Response */ export interface GetCommentBanStatus200Response { /** * * @type {APIStatus} * @memberof GetCommentBanStatus200Response */ status: APIStatus; /** * * @type {string} * @memberof GetCommentBanStatus200Response */ emailDomain: string | null; /** * * @type {boolean} * @memberof GetCommentBanStatus200Response */ canIPBan: boolean | null; /** * * @type {string} * @memberof GetCommentBanStatus200Response */ reason: string; /** * * @type {string} * @memberof GetCommentBanStatus200Response */ code: string; /** * * @type {string} * @memberof GetCommentBanStatus200Response */ secondaryCode?: string; /** * * @type {number} * @memberof GetCommentBanStatus200Response */ bannedUntil?: number; /** * * @type {number} * @memberof GetCommentBanStatus200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetCommentBanStatus200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetCommentBanStatus200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetCommentBanStatus200Response interface. */ export declare function instanceOfGetCommentBanStatus200Response(value: object): value is GetCommentBanStatus200Response; export declare function GetCommentBanStatus200ResponseFromJSON(json: any): GetCommentBanStatus200Response; export declare function GetCommentBanStatus200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCommentBanStatus200Response; export declare function GetCommentBanStatus200ResponseToJSON(json: any): GetCommentBanStatus200Response; export declare function GetCommentBanStatus200ResponseToJSONTyped(value?: GetCommentBanStatus200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetCommentBanStatus200Response.d.ts.map