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/v202502` */ 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; }