dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
17 lines (16 loc) • 730 B
TypeScript
import { PremiumRate } from '../soap/premiumRate';
import { PremiumRatePage } from '../soap/premiumRatePage';
import { Statement } from '../soap/statement';
import { DfpService } from '../lib/dfpService';
import { DfpUser } from '../lib/dfpUser';
export declare class PremiumRateService extends DfpService {
protected static SERVICE_NAME: string;
static ENDPOINT: string;
private static CLASS_MAP;
constructor(user: DfpUser, options?: {
[id: string]: any;
});
createPremiumRates(premiumRates: PremiumRate[]): Promise<PremiumRate[]>;
getPremiumRatesByStatement(filterStatement: Statement): Promise<PremiumRatePage>;
updatePremiumRates(premiumRates: PremiumRate[]): Promise<PremiumRate[]>;
}