dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
12 lines (11 loc) • 403 B
TypeScript
import { XMLElement } from '../../common/soap/xmlElement';
import { LabelType } from './labelType';
export declare class Label extends XMLElement {
protected static XSI_TYPE: string;
id: number;
name: string;
description: string;
isActive: boolean;
types: LabelType[];
constructor(id?: number, name?: string, description?: string, isActive?: boolean, types?: LabelType[]);
}