@dmgt/google-ad-manager-api
Version:
Typed Google Ad Manager API
23 lines (22 loc) • 568 B
TypeScript
import { Results } from './Results';
export declare enum Status {
ACTIVE = "ACTIVE",
INACTIVE = "INACTIVE",
ARCHIVED = "ARCHIVED",
UNKNOWN = "UNKNOWN"
}
/**
* results
* @targetNSAlias `tns`
* @targetNamespace `https://www.google.com/apis/ads/publisher/v202408`
*/
export interface Results1 {
/** xsd:long */
cmsMetadataValueId?: number;
/** xsd:string */
valueName?: string;
/** key */
key?: Results;
/** CmsMetadataValueStatus|xsd:string|ACTIVE,INACTIVE,ARCHIVED,UNKNOWN */
status?: Status | keyof typeof Status;
}