@likeminds.community/feed-js
Version:
LikeMinds Javascript SDK for chat APIs
18 lines (17 loc) • 598 B
TypeScript
declare class DeleteCommentRequest {
postId: string;
commentId: string;
reason?: string;
constructor(postId: string, commentId: string, reason?: string);
static builder(): DeleteCommentRequestBuilder;
}
export declare class DeleteCommentRequestBuilder {
private postId;
private commentId;
private reason?;
setPostId(postId: string): DeleteCommentRequestBuilder;
setCommentId(commentId: string): DeleteCommentRequestBuilder;
setReason(reason: string): DeleteCommentRequestBuilder;
build(): DeleteCommentRequest;
}
export default DeleteCommentRequest;