/**
 * Flowtype definitions for Post
 * Generated by Flowgen from a Typescript Definition
 * Flowgen v1.14.1
 */

import { ContentRawDice } from "./ContentRawDice";
import { ContentRawPoll } from "./ContentRawPoll";
import { UserActivity } from "./UserActivity";
export type Post = {
  id: string,
  activity?: UserActivity,
  discussion_id: string,
  can_be_deleted: boolean,
  can_be_rated: boolean,
  can_be_reminded: boolean,
  content: string,
  content_raw?: ContentRawDice | ContentRawPoll | any,
  discussion_name?: string,
  post_type?: "advertisement" | "dice" | "poll" | "text",
  replies?: number[],
  inserted_at: string,
  username: string,
  ...
};
