import { LastModifiedDateTime } from './LastModifiedDateTime'; /** * creativeSet * @targetNSAlias `tns` * @targetNamespace `https://www.google.com/apis/ads/publisher/v202602` */ export interface CreativeSet { /** xsd:long */ id?: number; /** xsd:string */ name?: string; /** xsd:long */ masterCreativeId?: number; /** xsd:long */ companionCreativeIds?: Array; /** lastModifiedDateTime */ lastModifiedDateTime?: LastModifiedDateTime; }