// Copyright 2016 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package com.google.api.ads.dfp.jaxws.v201605; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** * * Represents the additional settings of a programmatic order. * * * <p>Java class for ProgrammaticSettings complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ProgrammaticSettings"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="adxBuyerNetworkId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/> * <element name="buyerId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/> * <element name="buyerPlatform" type="{https://www.google.com/apis/ads/publisher/v201605}BuyerPlatform" minOccurs="0"/> * <element name="billingTermsType" type="{https://www.google.com/apis/ads/publisher/v201605}BillingTermsType" minOccurs="0"/> * <element name="status" type="{https://www.google.com/apis/ads/publisher/v201605}ProgrammaticStatus" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ProgrammaticSettings", propOrder = { "adxBuyerNetworkId", "buyerId", "buyerPlatform", "billingTermsType", "status" }) public class ProgrammaticSettings { protected Long adxBuyerNetworkId; protected Long buyerId; @XmlSchemaType(name = "string") protected BuyerPlatform buyerPlatform; @XmlSchemaType(name = "string") protected BillingTermsType billingTermsType; @XmlSchemaType(name = "string") protected ProgrammaticStatus status; /** * Gets the value of the adxBuyerNetworkId property. * * @return * possible object is * {@link Long } * */ public Long getAdxBuyerNetworkId() { return adxBuyerNetworkId; } /** * Sets the value of the adxBuyerNetworkId property. * * @param value * allowed object is * {@link Long } * */ public void setAdxBuyerNetworkId(Long value) { this.adxBuyerNetworkId = value; } /** * Gets the value of the buyerId property. * * @return * possible object is * {@link Long } * */ public Long getBuyerId() { return buyerId; } /** * Sets the value of the buyerId property. * * @param value * allowed object is * {@link Long } * */ public void setBuyerId(Long value) { this.buyerId = value; } /** * Gets the value of the buyerPlatform property. * * @return * possible object is * {@link BuyerPlatform } * */ public BuyerPlatform getBuyerPlatform() { return buyerPlatform; } /** * Sets the value of the buyerPlatform property. * * @param value * allowed object is * {@link BuyerPlatform } * */ public void setBuyerPlatform(BuyerPlatform value) { this.buyerPlatform = value; } /** * Gets the value of the billingTermsType property. * * @return * possible object is * {@link BillingTermsType } * */ public BillingTermsType getBillingTermsType() { return billingTermsType; } /** * Sets the value of the billingTermsType property. * * @param value * allowed object is * {@link BillingTermsType } * */ public void setBillingTermsType(BillingTermsType value) { this.billingTermsType = value; } /** * Gets the value of the status property. * * @return * possible object is * {@link ProgrammaticStatus } * */ public ProgrammaticStatus getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link ProgrammaticStatus } * */ public void setStatus(ProgrammaticStatus value) { this.status = value; } }