dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
14 lines (13 loc) • 528 B
TypeScript
import { XMLElement } from '../../common/soap/xmlElement';
import { ActivityStatus } from './activityStatus';
import { ActivityType } from './activityType';
export declare class Activity extends XMLElement {
protected static XSI_TYPE: string;
id: number;
activityGroupId: number;
name: string;
expectedURL: string;
status: ActivityStatus;
type: ActivityType;
constructor(id?: number, activityGroupId?: number, name?: string, expectedURL?: string, status?: ActivityStatus, type?: ActivityType);
}