UNPKG

fastcomments-sdk

Version:

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

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