Interface CommentDataResponseDTO

interface CommentDataResponseDTO {
    content: string;
    createdTimestamp: number;
    hidden: boolean;
    id: string;
    reactions: {
        [key: string]: {
            [key: string]: ReactionUserResponseData;
        };
    };
    replies: CommentDataResponseDTO[];
    updatedTimestamp: number;
    user: UserCompanyBasicInfoResponseDTO;
}

Properties

content: string
createdTimestamp: number
hidden: boolean
id: string
reactions: {
    [key: string]: {
        [key: string]: ReactionUserResponseData;
    };
}

Type declaration

updatedTimestamp: number