@dmgt/google-ad-manager-api
Version:
Typed Google Ad Manager API
25 lines (22 loc) • 534 B
text/typescript
import { Results } from './Results'
export 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
}