dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
11 lines (10 loc) • 392 B
TypeScript
import { XMLElement } from '../../common/soap/xmlElement';
import { DayOfWeek } from './dayOfWeek';
import { TimeOfDay } from './timeOfDay';
export declare class DayPart extends XMLElement {
protected static XSI_TYPE: string;
dayOfWeek: DayOfWeek;
startTime: TimeOfDay;
endTime: TimeOfDay;
constructor(dayOfWeek?: DayOfWeek, startTime?: TimeOfDay, endTime?: TimeOfDay);
}