UNPKG

fastcomments-sdk

Version:

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

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