dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
14 lines (13 loc) • 632 B
TypeScript
import { XMLElement } from '../../common/soap/xmlElement';
import { PremiumFeature } from './premiumFeature';
import { RateType } from './rateType';
import { PremiumAdjustmentType } from './premiumAdjustmentType';
export declare class PremiumRateValue extends XMLElement {
protected static XSI_TYPE: string;
premiumRateId: number;
premiumFeature: PremiumFeature;
rateType: RateType;
adjustmentType: PremiumAdjustmentType;
adjustmentSize: number;
constructor(premiumRateId?: number, premiumFeature?: PremiumFeature, rateType?: RateType, adjustmentType?: PremiumAdjustmentType, adjustmentSize?: number);
}