import { LastModifiedDateTime } from './LastModifiedDateTime'; export declare enum Status { ACTIVE = "ACTIVE", INACTIVE = "INACTIVE", ARCHIVED = "ARCHIVED", UNKNOWN = "UNKNOWN" } /** * contentBundles * @targetNSAlias `tns` * @targetNamespace `https://www.google.com/apis/ads/publisher/v202602` */ export interface ContentBundles { /** xsd:long */ id?: number; /** xsd:string */ name?: string; /** ContentBundleStatus|xsd:string|ACTIVE,INACTIVE,ARCHIVED,UNKNOWN */ status?: Status | keyof typeof Status; /** lastModifiedDateTime */ lastModifiedDateTime?: LastModifiedDateTime; }