UNPKG

fastcomments-sdk

Version:

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

84 lines 2.56 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 { APIBanUserChangeLog } from './APIBanUserChangeLog'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface PostBanUserFromCommentResponse */ export interface PostBanUserFromCommentResponse { /** * * @type {APIStatus} * @memberof PostBanUserFromCommentResponse */ status: APIStatus; /** * * @type {APIBanUserChangeLog} * @memberof PostBanUserFromCommentResponse */ changelog?: APIBanUserChangeLog; /** * * @type {string} * @memberof PostBanUserFromCommentResponse */ code: string; /** * * @type {string} * @memberof PostBanUserFromCommentResponse */ reason: string; /** * * @type {string} * @memberof PostBanUserFromCommentResponse */ secondaryCode?: string; /** * * @type {number} * @memberof PostBanUserFromCommentResponse */ bannedUntil?: number; /** * * @type {number} * @memberof PostBanUserFromCommentResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof PostBanUserFromCommentResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof PostBanUserFromCommentResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the PostBanUserFromCommentResponse interface. */ export declare function instanceOfPostBanUserFromCommentResponse(value: object): value is PostBanUserFromCommentResponse; export declare function PostBanUserFromCommentResponseFromJSON(json: any): PostBanUserFromCommentResponse; export declare function PostBanUserFromCommentResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostBanUserFromCommentResponse; export declare function PostBanUserFromCommentResponseToJSON(json: any): PostBanUserFromCommentResponse; export declare function PostBanUserFromCommentResponseToJSONTyped(value?: PostBanUserFromCommentResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PostBanUserFromCommentResponse.d.ts.map