nodejs-google-adwords
Version:
Google Ads API Client Library for Node.js
24 lines (23 loc) • 519 B
TypeScript
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 };