UNPKG

fastcomments-sdk

Version:

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

77 lines 2.39 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 PostSetCommentSpamStatusResponse */ export interface PostSetCommentSpamStatusResponse { /** * * @type {APIStatus} * @memberof PostSetCommentSpamStatusResponse */ status: APIStatus; /** * * @type {string} * @memberof PostSetCommentSpamStatusResponse */ reason: string; /** * * @type {string} * @memberof PostSetCommentSpamStatusResponse */ code: string; /** * * @type {string} * @memberof PostSetCommentSpamStatusResponse */ secondaryCode?: string; /** * * @type {number} * @memberof PostSetCommentSpamStatusResponse */ bannedUntil?: number; /** * * @type {number} * @memberof PostSetCommentSpamStatusResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof PostSetCommentSpamStatusResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof PostSetCommentSpamStatusResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the PostSetCommentSpamStatusResponse interface. */ export declare function instanceOfPostSetCommentSpamStatusResponse(value: object): value is PostSetCommentSpamStatusResponse; export declare function PostSetCommentSpamStatusResponseFromJSON(json: any): PostSetCommentSpamStatusResponse; export declare function PostSetCommentSpamStatusResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostSetCommentSpamStatusResponse; export declare function PostSetCommentSpamStatusResponseToJSON(json: any): PostSetCommentSpamStatusResponse; export declare function PostSetCommentSpamStatusResponseToJSONTyped(value?: PostSetCommentSpamStatusResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PostSetCommentSpamStatusResponse.d.ts.map