@likeminds.community/feed-js
Version:
LikeMinds Javascript SDK for chat APIs
18 lines (17 loc) • 569 B
TypeScript
declare class EditCommentRequest {
postId: string;
commentId: string;
text: string;
constructor(postId: string, commentId: string, text: string);
static builder(): EditCommentRequestBuilder;
}
export declare class EditCommentRequestBuilder {
private postId;
private commentId;
private text;
setPostId(postId: string): EditCommentRequestBuilder;
setCommentId(commentId: string): EditCommentRequestBuilder;
setText(text: string): EditCommentRequestBuilder;
build(): EditCommentRequest;
}
export default EditCommentRequest;