One campaign or advertising earning payable to the authenticated influencer.

interface InfluencerPayout {
    amount: number;
    breakdown?: InfluencerPayoutBreakdown;
    campaign?: Record<string, any>;
    campaign_id: string;
    currency: string;
    id: string;
    payout_date?: null | string;
    source_label: string;
    source_reference_id?: null | string;
    source_type: InfluencerPayoutSourceType;
    status: "failed" | "pending" | "completed";
    user_id: string;
}

Properties

amount: number
campaign?: Record<string, any>
campaign_id: string
currency: string
id: string
payout_date?: null | string
source_label: string
source_reference_id?: null | string
status: "failed" | "pending" | "completed"
user_id: string

Generated using TypeDoc