UNPKG

fastcomments-sdk

Version:

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

83 lines 2.62 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 PostSetCommentApprovalStatusResponse */ export interface PostSetCommentApprovalStatusResponse { /** * * @type {boolean} * @memberof PostSetCommentApprovalStatusResponse */ didResetFlaggedCount?: boolean; /** * * @type {APIStatus} * @memberof PostSetCommentApprovalStatusResponse */ status: APIStatus; /** * * @type {string} * @memberof PostSetCommentApprovalStatusResponse */ reason: string; /** * * @type {string} * @memberof PostSetCommentApprovalStatusResponse */ code: string; /** * * @type {string} * @memberof PostSetCommentApprovalStatusResponse */ secondaryCode?: string; /** * * @type {number} * @memberof PostSetCommentApprovalStatusResponse */ bannedUntil?: number; /** * * @type {number} * @memberof PostSetCommentApprovalStatusResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof PostSetCommentApprovalStatusResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof PostSetCommentApprovalStatusResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the PostSetCommentApprovalStatusResponse interface. */ export declare function instanceOfPostSetCommentApprovalStatusResponse(value: object): value is PostSetCommentApprovalStatusResponse; export declare function PostSetCommentApprovalStatusResponseFromJSON(json: any): PostSetCommentApprovalStatusResponse; export declare function PostSetCommentApprovalStatusResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostSetCommentApprovalStatusResponse; export declare function PostSetCommentApprovalStatusResponseToJSON(json: any): PostSetCommentApprovalStatusResponse; export declare function PostSetCommentApprovalStatusResponseToJSONTyped(value?: PostSetCommentApprovalStatusResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PostSetCommentApprovalStatusResponse.d.ts.map