/** * This is auto-generated file, don't modify this file manually */ import { AdsAccessRole } from './AdsAccessRole'; import { AdsAccountType } from './AdsAccountType'; export interface AdsAccount { access_role?: AdsAccessRole; /** * Account ID */ account_id?: number; /** * Information whether account is active */ account_status?: 0 | 1; account_type?: AdsAccountType; /** * Account name */ account_name?: string; /** * Can user view account budget */ can_view_budget?: boolean; }