UNPKG

fastcomments-sdk

Version:

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

84 lines 2.45 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 { UserNotification } from './UserNotification'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface GetNotificationsResponse1 */ export interface GetNotificationsResponse1 { /** * * @type {APIStatus} * @memberof GetNotificationsResponse1 */ status: APIStatus; /** * * @type {Array<UserNotification>} * @memberof GetNotificationsResponse1 */ notifications: Array<UserNotification>; /** * * @type {string} * @memberof GetNotificationsResponse1 */ reason: string; /** * * @type {string} * @memberof GetNotificationsResponse1 */ code: string; /** * * @type {string} * @memberof GetNotificationsResponse1 */ secondaryCode?: string; /** * * @type {number} * @memberof GetNotificationsResponse1 */ bannedUntil?: number; /** * * @type {number} * @memberof GetNotificationsResponse1 */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetNotificationsResponse1 */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetNotificationsResponse1 */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetNotificationsResponse1 interface. */ export declare function instanceOfGetNotificationsResponse1(value: object): value is GetNotificationsResponse1; export declare function GetNotificationsResponse1FromJSON(json: any): GetNotificationsResponse1; export declare function GetNotificationsResponse1FromJSONTyped(json: any, ignoreDiscriminator: boolean): GetNotificationsResponse1; export declare function GetNotificationsResponse1ToJSON(json: any): GetNotificationsResponse1; export declare function GetNotificationsResponse1ToJSONTyped(value?: GetNotificationsResponse1 | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetNotificationsResponse1.d.ts.map