export type CommentActions = { /** * When the comment was upvoted or downvoted. */ voted_at?: string; /** * When the comment was saved. */ saved_at?: string; /** * True if upvoted, false if downvoted. Upvote is greater than downvote. */ vote_is_upvote?: boolean; };