export type UserPayoutHistoryEntry = {
    /**
     * The date of this transaction
     */
    created?: string;
    /**
     * The amount of this transaction in USD
     */
    amount?: number;
    /**
     * The status of this transaction
     */
    status?: string;
};
