google-adwords-node
Version:
Google Ads API Client Library for Node.js
15 lines (14 loc) • 353 B
TypeScript
import { IDisplayAttribute } from './LabelAttribute';
import { Label } from '../enum';
interface ILabel {
id?: string;
name?: string;
readonly status?: Label.Status;
readonly attribute?: IDisplayAttribute;
attributes?: {
'xsi:type': Label.Type;
};
}
interface ITextLabel extends ILabel {
}
export { ILabel, ITextLabel };