export interface PublicAwsCheckout {
  key: string;
  type: uri_type;
  proc: string;
  created?: Date | null;
}
id?: string | null;
  origin_id?: string | null;
  author?: string | null;
  image_url?: string | null;
  image_key?: string | null;
  title?: string | null;
  subtitle?: string | null;
  body?: string | null;
  action_url?: string | null;
  avatar_url?: string | null;
  acknowledge_url?: string | null;
  modified?: Date | null;
  created?: Date | null;
  background_color?: string | null;
  font_color?: string | null;
  tags: string;
}
