UNPKG

fastcomments-sdk

Version:

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

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