gads
Version:
An unofficial JS client library for the SOAP-based DFP Ads API
13 lines (12 loc) • 439 B
TypeScript
import { BaseObject } from './baseObject';
import { BillingCap } from './billingCap';
import { BillingSchedule } from './billingSchedule';
import { BillingSource } from './billingSource';
export interface CompanySettings extends BaseObject {
billingCap?: BillingCap;
billingSchedule?: BillingSchedule;
billingSource?: BillingSource;
advertiserDiscount?: number;
valueAddedTax?: number;
agencyCommission?: number;
}