fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
47 lines • 1.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 { APIStatus } from './APIStatus';
/**
*
* @export
* @interface ResetUserNotificationsResponse
*/
export interface ResetUserNotificationsResponse {
/**
*
* @type {APIStatus}
* @memberof ResetUserNotificationsResponse
*/
status: APIStatus;
/**
*
* @type {string}
* @memberof ResetUserNotificationsResponse
*/
code?: ResetUserNotificationsResponseCodeEnum;
}
/**
* @export
* @enum {string}
*/
export declare enum ResetUserNotificationsResponseCodeEnum {
ignored_since_impersonated = "ignored-since-impersonated"
}
/**
* Check if a given object implements the ResetUserNotificationsResponse interface.
*/
export declare function instanceOfResetUserNotificationsResponse(value: object): value is ResetUserNotificationsResponse;
export declare function ResetUserNotificationsResponseFromJSON(json: any): ResetUserNotificationsResponse;
export declare function ResetUserNotificationsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResetUserNotificationsResponse;
export declare function ResetUserNotificationsResponseToJSON(json: any): ResetUserNotificationsResponse;
export declare function ResetUserNotificationsResponseToJSONTyped(value?: ResetUserNotificationsResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=ResetUserNotificationsResponse.d.ts.map