dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
15 lines (14 loc) • 680 B
TypeScript
import { XMLElement } from '../../common/soap/xmlElement';
import { BillingCap } from './billingCap';
import { BillingSchedule } from './billingSchedule';
import { BillingSource } from './billingSource';
export declare class CompanySettings extends XMLElement {
protected static XSI_TYPE: string;
billingCap: BillingCap;
billingSchedule: BillingSchedule;
billingSource: BillingSource;
advertiserDiscount: number;
valueAddedTax: number;
agencyCommission: number;
constructor(billingCap?: BillingCap, billingSchedule?: BillingSchedule, billingSource?: BillingSource, advertiserDiscount?: number, valueAddedTax?: number, agencyCommission?: number);
}