interface Pot {
    amount_collected_hidden: boolean;
    association: boolean;
    date_created_ts: number;
    date_end_ts: null | number;
    description: null | string;
    id: string;
    name: string;
    objectif: null | number;
    profit_acct: null | ProfitAccount;
    profit_ghost: null | ProfitAccount;
    public_donation_url: string;
    public_pot_url: string;
    slug: string;
    stat_amount_donation: null | number;
    stat_nb_donation: number;
    status_closed: boolean;
    status_online: boolean;
    status_public: boolean;
    video: null | string;
    visual_main_url: null | string;
    visual_secondary_url: null | string;
    with_tax_receipt: boolean;
}

Properties

amount_collected_hidden: boolean
association: boolean
date_created_ts: number
date_end_ts: null | number
description: null | string
id: string
name: string
objectif: null | number
profit_acct: null | ProfitAccount
profit_ghost: null | ProfitAccount
public_donation_url: string
public_pot_url: string
slug: string
stat_amount_donation: null | number
stat_nb_donation: number
status_closed: boolean
status_online: boolean
status_public: boolean
video: null | string
visual_main_url: null | string
visual_secondary_url: null | string
with_tax_receipt: boolean