nodejs-google-adwords
Version:
Google Ads API Client Library for Node.js
19 lines (18 loc) • 414 B
TypeScript
import { IDisplayAttribute } from './LabelAttribute';
declare namespace Label {
enum status {
ENABLED = "ENABLED",
REMOVED = "REMOVED",
UNKNOWN = "UNKNOWN"
}
}
interface ILabel {
id?: string;
name: string;
status?: Label.status;
attribute: IDisplayAttribute;
'Label.Type'?: string;
}
interface ITextLabel extends ILabel {
}
export { ILabel, Label, ITextLabel };