UNPKG

fastcomments-sdk

Version:

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

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