import { StartDateTime } from './StartDateTime'; import { TotalBudget } from './TotalBudget'; import { AppliedLabels } from './AppliedLabels'; import { CustomFieldValues } from './CustomFieldValues'; export declare enum Status { DRAFT = "DRAFT", PENDING_APPROVAL = "PENDING_APPROVAL", APPROVED = "APPROVED", DISAPPROVED = "DISAPPROVED", PAUSED = "PAUSED", CANCELED = "CANCELED", DELETED = "DELETED", UNKNOWN = "UNKNOWN" } /** * orders * @targetNSAlias `tns` * @targetNamespace `https://www.google.com/apis/ads/publisher/v202502` */ export interface Orders { /** xsd:long */ id?: number; /** xsd:string */ name?: string; /** startDateTime */ startDateTime?: StartDateTime; /** endDateTime */ endDateTime?: StartDateTime; /** xsd:boolean */ unlimitedEndDateTime?: boolean; /** OrderStatus|xsd:string|DRAFT,PENDING_APPROVAL,APPROVED,DISAPPROVED,PAUSED,CANCELED,DELETED,UNKNOWN */ status?: Status | keyof typeof Status; /** xsd:boolean */ isArchived?: boolean; /** xsd:string */ notes?: string; /** xsd:int */ externalOrderId?: number; /** xsd:string */ poNumber?: string; /** xsd:string */ currencyCode?: string; /** xsd:long */ advertiserId?: number; /** xsd:long */ advertiserContactIds?: Array; /** xsd:long */ agencyId?: number; /** xsd:long */ agencyContactIds?: Array; /** xsd:long */ creatorId?: number; /** xsd:long */ traffickerId?: number; /** xsd:long */ secondaryTraffickerIds?: Array; /** xsd:long */ salespersonId?: number; /** xsd:long */ secondarySalespersonIds?: Array; /** xsd:long */ totalImpressionsDelivered?: number; /** xsd:long */ totalClicksDelivered?: number; /** xsd:long */ totalViewableImpressionsDelivered?: number; /** totalBudget */ totalBudget?: TotalBudget; /** appliedLabels[] */ appliedLabels?: Array; /** effectiveAppliedLabels[] */ effectiveAppliedLabels?: Array; /** xsd:string */ lastModifiedByApp?: string; /** xsd:boolean */ isProgrammatic?: boolean; /** xsd:long */ appliedTeamIds?: Array; /** lastModifiedDateTime */ lastModifiedDateTime?: StartDateTime; /** customFieldValues[] */ customFieldValues?: Array; }