Interface AdsAccount

interface AdsAccount {
    account_id: number;
    account_name: string;
    can_view_budget: number | boolean;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

account_id: number

Account ID

account_name: string

Account name

can_view_budget: number | boolean

Can user view account budget

Generated using TypeDoc