UNPKG

fastcomments-sdk

Version:

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

83 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 GetNotificationCountResponse1 */ export interface GetNotificationCountResponse1 { /** * * @type {APIStatus} * @memberof GetNotificationCountResponse1 */ status: APIStatus; /** * * @type {number} * @memberof GetNotificationCountResponse1 */ count: number; /** * * @type {string} * @memberof GetNotificationCountResponse1 */ reason: string; /** * * @type {string} * @memberof GetNotificationCountResponse1 */ code: string; /** * * @type {string} * @memberof GetNotificationCountResponse1 */ secondaryCode?: string; /** * * @type {number} * @memberof GetNotificationCountResponse1 */ bannedUntil?: number; /** * * @type {number} * @memberof GetNotificationCountResponse1 */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetNotificationCountResponse1 */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetNotificationCountResponse1 */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetNotificationCountResponse1 interface. */ export declare function instanceOfGetNotificationCountResponse1(value: object): value is GetNotificationCountResponse1; export declare function GetNotificationCountResponse1FromJSON(json: any): GetNotificationCountResponse1; export declare function GetNotificationCountResponse1FromJSONTyped(json: any, ignoreDiscriminator: boolean): GetNotificationCountResponse1; export declare function GetNotificationCountResponse1ToJSON(json: any): GetNotificationCountResponse1; export declare function GetNotificationCountResponse1ToJSONTyped(value?: GetNotificationCountResponse1 | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetNotificationCountResponse1.d.ts.map