UNPKG

fastcomments-sdk

Version:

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

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