dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
9 lines (8 loc) • 318 B
TypeScript
import { BaseRate } from './baseRate';
import { Money } from './money';
export declare class ProductTemplateBaseRate extends BaseRate {
protected static XSI_TYPE: string;
productTemplateId: number;
rate: Money;
constructor(productTemplateId?: number, rate?: Money, rateCardId?: number, id?: number);
}