UNPKG

fastcomments-sdk

Version:

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

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