import { CreativeTranscode } from './CreativeTranscode';
import { SamError } from './SamError';
/**
 * adDecisionCreatives
 * @targetNSAlias `tns`
 * @targetNamespace `https://www.google.com/apis/ads/publisher/v202502`
 */
export interface AdDecisionCreatives {
    /** xsd:int */
    sequence?: number;
    /** xsd:long */
    slateDurationMills?: number;
    /** xsd:long */
    creativeDurationMills?: number;
    /** creativeTranscode */
    creativeTranscode?: CreativeTranscode;
    /** xsd:string */
    googleVideoId?: string;
    /** samError */
    samError?: SamError;
    /** xsd:boolean */
    isTranscoded?: boolean;
    /** xsd:boolean */
    isDropped?: boolean;
}
