import { Targeting } from './Targeting';
import { StartDateTime } from './StartDateTime';
/**
 * trafficForecastSegments
 * @targetNSAlias `tns`
 * @targetNamespace `https://www.google.com/apis/ads/publisher/v202505`
 */
export interface TrafficForecastSegments {
    /** xsd:long */
    id?: number;
    /** xsd:string */
    name?: string;
    /** targeting */
    targeting?: Targeting;
    /** xsd:int */
    activeForecastAdjustmentCount?: number;
    /** creationDateTime */
    creationDateTime?: StartDateTime;
}
