fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
51 lines • 1.58 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.
*/
/**
*
* @export
* @interface ModerationAPICommentLog
*/
export interface ModerationAPICommentLog {
/**
*
* @type {Date}
* @memberof ModerationAPICommentLog
*/
date: Date;
/**
*
* @type {string}
* @memberof ModerationAPICommentLog
*/
username?: string;
/**
*
* @type {string}
* @memberof ModerationAPICommentLog
*/
actionName: string;
/**
*
* @type {string}
* @memberof ModerationAPICommentLog
*/
messageHTML: string;
}
/**
* Check if a given object implements the ModerationAPICommentLog interface.
*/
export declare function instanceOfModerationAPICommentLog(value: object): value is ModerationAPICommentLog;
export declare function ModerationAPICommentLogFromJSON(json: any): ModerationAPICommentLog;
export declare function ModerationAPICommentLogFromJSONTyped(json: any, ignoreDiscriminator: boolean): ModerationAPICommentLog;
export declare function ModerationAPICommentLogToJSON(json: any): ModerationAPICommentLog;
export declare function ModerationAPICommentLogToJSONTyped(value?: ModerationAPICommentLog | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=ModerationAPICommentLog.d.ts.map