nodejs-google-adwords
Version:
Google Ads API Client Library for Node.js
15 lines (14 loc) • 429 B
TypeScript
import { IAccountLabel } from './AccountLabel';
interface IManagedCustomerRaw {
name: string;
readonly customerId: string;
canManageClients: boolean;
currencyCode: string;
dateTimeZone: string;
testAccount: boolean;
readonly accountLabels: IAccountLabel[];
readonly excludeHiddenAccounts: boolean;
}
interface IManagedCustomer extends Partial<IManagedCustomerRaw> {
}
export { IManagedCustomer };