fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
84 lines • 2.72 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';
import type { UserNotificationCount } from './UserNotificationCount';
/**
*
* @export
* @interface GetCachedNotificationCount200Response
*/
export interface GetCachedNotificationCount200Response {
/**
*
* @type {APIStatus}
* @memberof GetCachedNotificationCount200Response
*/
status: APIStatus;
/**
*
* @type {UserNotificationCount}
* @memberof GetCachedNotificationCount200Response
*/
data: UserNotificationCount;
/**
*
* @type {string}
* @memberof GetCachedNotificationCount200Response
*/
reason: string;
/**
*
* @type {string}
* @memberof GetCachedNotificationCount200Response
*/
code: string;
/**
*
* @type {string}
* @memberof GetCachedNotificationCount200Response
*/
secondaryCode?: string;
/**
*
* @type {number}
* @memberof GetCachedNotificationCount200Response
*/
bannedUntil?: number;
/**
*
* @type {number}
* @memberof GetCachedNotificationCount200Response
*/
maxCharacterLength?: number;
/**
*
* @type {string}
* @memberof GetCachedNotificationCount200Response
*/
translatedError?: string;
/**
*
* @type {CustomConfigParameters}
* @memberof GetCachedNotificationCount200Response
*/
customConfig?: CustomConfigParameters;
}
/**
* Check if a given object implements the GetCachedNotificationCount200Response interface.
*/
export declare function instanceOfGetCachedNotificationCount200Response(value: object): value is GetCachedNotificationCount200Response;
export declare function GetCachedNotificationCount200ResponseFromJSON(json: any): GetCachedNotificationCount200Response;
export declare function GetCachedNotificationCount200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCachedNotificationCount200Response;
export declare function GetCachedNotificationCount200ResponseToJSON(json: any): GetCachedNotificationCount200Response;
export declare function GetCachedNotificationCount200ResponseToJSONTyped(value?: GetCachedNotificationCount200Response | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetCachedNotificationCount200Response.d.ts.map