@likeminds.community/feed-js
Version:
LikeMinds Javascript SDK for chat APIs
21 lines (20 loc) • 729 B
TypeScript
declare class ReplyCommentRequest {
postId: string;
commentId: string;
text: string;
tempId?: string;
constructor(postId: string, commentId: string, text: string, tempId: string);
static builder(): ReplyCommentRequestBuilder;
}
export declare class ReplyCommentRequestBuilder {
postId: string | undefined;
commentId: string | undefined;
text: string | undefined;
private tempId;
setPostId(postId: string): ReplyCommentRequestBuilder;
setCommentId(commentId: string): ReplyCommentRequestBuilder;
setText(text: string): ReplyCommentRequestBuilder;
setTempId(tempId: string): ReplyCommentRequestBuilder;
build(): ReplyCommentRequest;
}
export default ReplyCommentRequest;