UNPKG

nodejs-google-adwords

Version:
24 lines (23 loc) 519 B
import { IDisplayAttribute } from './LabelAttribute'; declare namespace Label { enum status { ENABLED = "ENABLED", REMOVED = "REMOVED", UNKNOWN = "UNKNOWN" } enum Type { TextLabel = "TextLabel" } } interface ILabel { id?: string; name?: string; readonly status?: Label.status; readonly attribute?: IDisplayAttribute; attributes?: { 'xsi:type': Label.Type; }; } interface ITextLabel extends ILabel { } export { ILabel, Label, ITextLabel };