UNPKG

fastcomments-sdk

Version:

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

84 lines 2.68 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'; import type { UserNotificationCount } from './UserNotificationCount'; /** * * @export * @interface GetCachedNotificationCountResponse1 */ export interface GetCachedNotificationCountResponse1 { /** * * @type {APIStatus} * @memberof GetCachedNotificationCountResponse1 */ status: APIStatus; /** * * @type {UserNotificationCount} * @memberof GetCachedNotificationCountResponse1 */ data: UserNotificationCount; /** * * @type {string} * @memberof GetCachedNotificationCountResponse1 */ reason: string; /** * * @type {string} * @memberof GetCachedNotificationCountResponse1 */ code: string; /** * * @type {string} * @memberof GetCachedNotificationCountResponse1 */ secondaryCode?: string; /** * * @type {number} * @memberof GetCachedNotificationCountResponse1 */ bannedUntil?: number; /** * * @type {number} * @memberof GetCachedNotificationCountResponse1 */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetCachedNotificationCountResponse1 */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetCachedNotificationCountResponse1 */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetCachedNotificationCountResponse1 interface. */ export declare function instanceOfGetCachedNotificationCountResponse1(value: object): value is GetCachedNotificationCountResponse1; export declare function GetCachedNotificationCountResponse1FromJSON(json: any): GetCachedNotificationCountResponse1; export declare function GetCachedNotificationCountResponse1FromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCachedNotificationCountResponse1; export declare function GetCachedNotificationCountResponse1ToJSON(json: any): GetCachedNotificationCountResponse1; export declare function GetCachedNotificationCountResponse1ToJSONTyped(value?: GetCachedNotificationCountResponse1 | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetCachedNotificationCountResponse1.d.ts.map