fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
77 lines • 2.26 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 { CustomConfigParameters } from './CustomConfigParameters';
import type { APIStatus } from './APIStatus';
/**
*
* @export
* @interface UpdateNotificationResponse
*/
export interface UpdateNotificationResponse {
/**
*
* @type {APIStatus}
* @memberof UpdateNotificationResponse
*/
status: APIStatus;
/**
*
* @type {string}
* @memberof UpdateNotificationResponse
*/
reason: string;
/**
*
* @type {string}
* @memberof UpdateNotificationResponse
*/
code: string;
/**
*
* @type {string}
* @memberof UpdateNotificationResponse
*/
secondaryCode?: string;
/**
*
* @type {number}
* @memberof UpdateNotificationResponse
*/
bannedUntil?: number;
/**
*
* @type {number}
* @memberof UpdateNotificationResponse
*/
maxCharacterLength?: number;
/**
*
* @type {string}
* @memberof UpdateNotificationResponse
*/
translatedError?: string;
/**
*
* @type {CustomConfigParameters}
* @memberof UpdateNotificationResponse
*/
customConfig?: CustomConfigParameters;
}
/**
* Check if a given object implements the UpdateNotificationResponse interface.
*/
export declare function instanceOfUpdateNotificationResponse(value: object): value is UpdateNotificationResponse;
export declare function UpdateNotificationResponseFromJSON(json: any): UpdateNotificationResponse;
export declare function UpdateNotificationResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateNotificationResponse;
export declare function UpdateNotificationResponseToJSON(json: any): UpdateNotificationResponse;
export declare function UpdateNotificationResponseToJSONTyped(value?: UpdateNotificationResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=UpdateNotificationResponse.d.ts.map