dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
13 lines (12 loc) • 587 B
TypeScript
import { XMLElement } from '../../common/soap/xmlElement';
import { ExchangeRateRefreshRate } from './exchangeRateRefreshRate';
import { ExchangeRateDirection } from './exchangeRateDirection';
export declare class ExchangeRate extends XMLElement {
protected static XSI_TYPE: string;
id: number;
currencyCode: string;
refreshRate: ExchangeRateRefreshRate;
direction: ExchangeRateDirection;
exchangeRate: number;
constructor(id?: number, currencyCode?: string, refreshRate?: ExchangeRateRefreshRate, direction?: ExchangeRateDirection, exchangeRate?: number);
}