@dmgt/google-ad-manager-api
Version:
Typed Google Ad Manager API
20 lines (18 loc) • 462 B
text/typescript
import { LastModifiedDateTime } from './LastModifiedDateTime'
/**
* creativeSet
* @targetNSAlias `tns`
* @targetNamespace `https://www.google.com/apis/ads/publisher/v202502`
*/
export interface CreativeSet {
/** xsd:long */
id?: number
/** xsd:string */
name?: string
/** xsd:long */
masterCreativeId?: number
/** xsd:long */
companionCreativeIds?: Array<number>
/** lastModifiedDateTime */
lastModifiedDateTime?: LastModifiedDateTime
}