fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
51 lines • 1.67 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 DeletedCommentResultComment
*/
export interface DeletedCommentResultComment {
/**
*
* @type {boolean}
* @memberof DeletedCommentResultComment
*/
isDeleted?: boolean;
/**
*
* @type {string}
* @memberof DeletedCommentResultComment
*/
commentHTML: string;
/**
*
* @type {string}
* @memberof DeletedCommentResultComment
*/
commenterName: string;
/**
*
* @type {string}
* @memberof DeletedCommentResultComment
*/
userId?: string | null;
}
/**
* Check if a given object implements the DeletedCommentResultComment interface.
*/
export declare function instanceOfDeletedCommentResultComment(value: object): value is DeletedCommentResultComment;
export declare function DeletedCommentResultCommentFromJSON(json: any): DeletedCommentResultComment;
export declare function DeletedCommentResultCommentFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeletedCommentResultComment;
export declare function DeletedCommentResultCommentToJSON(json: any): DeletedCommentResultComment;
export declare function DeletedCommentResultCommentToJSONTyped(value?: DeletedCommentResultComment | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=DeletedCommentResultComment.d.ts.map