UNPKG

fastcomments-sdk

Version:

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

103 lines 3.08 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 UpdateUserNotificationStatusResponse */ export interface UpdateUserNotificationStatusResponse { /** * * @type {APIStatus} * @memberof UpdateUserNotificationStatusResponse */ status: APIStatus; /** * * @type {number} * @memberof UpdateUserNotificationStatusResponse */ matchedCount: number; /** * * @type {number} * @memberof UpdateUserNotificationStatusResponse */ modifiedCount: number; /** * * @type {string} * @memberof UpdateUserNotificationStatusResponse */ note: UpdateUserNotificationStatusResponseNoteEnum; /** * * @type {string} * @memberof UpdateUserNotificationStatusResponse */ reason: string; /** * * @type {string} * @memberof UpdateUserNotificationStatusResponse */ code: string; /** * * @type {string} * @memberof UpdateUserNotificationStatusResponse */ secondaryCode?: string; /** * * @type {number} * @memberof UpdateUserNotificationStatusResponse */ bannedUntil?: number; /** * * @type {number} * @memberof UpdateUserNotificationStatusResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof UpdateUserNotificationStatusResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof UpdateUserNotificationStatusResponse */ customConfig?: CustomConfigParameters; } /** * @export * @enum {string} */ export declare enum UpdateUserNotificationStatusResponseNoteEnum { ignored_since_impersonated = "ignored-since-impersonated", demo_noop = "demo-noop" } /** * Check if a given object implements the UpdateUserNotificationStatusResponse interface. */ export declare function instanceOfUpdateUserNotificationStatusResponse(value: object): value is UpdateUserNotificationStatusResponse; export declare function UpdateUserNotificationStatusResponseFromJSON(json: any): UpdateUserNotificationStatusResponse; export declare function UpdateUserNotificationStatusResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateUserNotificationStatusResponse; export declare function UpdateUserNotificationStatusResponseToJSON(json: any): UpdateUserNotificationStatusResponse; export declare function UpdateUserNotificationStatusResponseToJSONTyped(value?: UpdateUserNotificationStatusResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UpdateUserNotificationStatusResponse.d.ts.map