UNPKG

fastcomments-sdk

Version:

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

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