fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
76 lines • 1.85 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 './custom-config-parameters';
import type { DeleteCommentAction } from './delete-comment-action';
import type { ImportedAPIStatusFAILED } from './imported-apistatus-failed';
/**
*
* @export
* @interface DeleteComment200Response
*/
export interface DeleteComment200Response {
/**
*
* @type {DeleteCommentAction}
* @memberof DeleteComment200Response
*/
'action': DeleteCommentAction;
/**
*
* @type {ImportedAPIStatusFAILED}
* @memberof DeleteComment200Response
*/
'status': ImportedAPIStatusFAILED;
/**
*
* @type {string}
* @memberof DeleteComment200Response
*/
'reason': string;
/**
*
* @type {string}
* @memberof DeleteComment200Response
*/
'code': string;
/**
*
* @type {string}
* @memberof DeleteComment200Response
*/
'secondaryCode'?: string;
/**
*
* @type {number}
* @memberof DeleteComment200Response
*/
'bannedUntil'?: number;
/**
*
* @type {number}
* @memberof DeleteComment200Response
*/
'maxCharacterLength'?: number;
/**
*
* @type {string}
* @memberof DeleteComment200Response
*/
'translatedError'?: string;
/**
*
* @type {CustomConfigParameters}
* @memberof DeleteComment200Response
*/
'customConfig'?: CustomConfigParameters;
}
//# sourceMappingURL=delete-comment200-response.d.ts.map