fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
83 lines • 2.53 kB
TypeScript
/**
* 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 GetUserNotificationCountResponse1
*/
export interface GetUserNotificationCountResponse1 {
/**
*
* @type {APIStatus}
* @memberof GetUserNotificationCountResponse1
*/
status: APIStatus;
/**
*
* @type {number}
* @memberof GetUserNotificationCountResponse1
*/
count: number;
/**
*
* @type {string}
* @memberof GetUserNotificationCountResponse1
*/
reason: string;
/**
*
* @type {string}
* @memberof GetUserNotificationCountResponse1
*/
code: string;
/**
*
* @type {string}
* @memberof GetUserNotificationCountResponse1
*/
secondaryCode?: string;
/**
*
* @type {number}
* @memberof GetUserNotificationCountResponse1
*/
bannedUntil?: number;
/**
*
* @type {number}
* @memberof GetUserNotificationCountResponse1
*/
maxCharacterLength?: number;
/**
*
* @type {string}
* @memberof GetUserNotificationCountResponse1
*/
translatedError?: string;
/**
*
* @type {CustomConfigParameters}
* @memberof GetUserNotificationCountResponse1
*/
customConfig?: CustomConfigParameters;
}
/**
* Check if a given object implements the GetUserNotificationCountResponse1 interface.
*/
export declare function instanceOfGetUserNotificationCountResponse1(value: object): value is GetUserNotificationCountResponse1;
export declare function GetUserNotificationCountResponse1FromJSON(json: any): GetUserNotificationCountResponse1;
export declare function GetUserNotificationCountResponse1FromJSONTyped(json: any, ignoreDiscriminator: boolean): GetUserNotificationCountResponse1;
export declare function GetUserNotificationCountResponse1ToJSON(json: any): GetUserNotificationCountResponse1;
export declare function GetUserNotificationCountResponse1ToJSONTyped(value?: GetUserNotificationCountResponse1 | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetUserNotificationCountResponse1.d.ts.map