package com.microsoft.bingads.v10.campaignmanagement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for SitePlacement complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="SitePlacement"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Bid" type="{https://bingads.microsoft.com/CampaignManagement/v10}Bid" minOccurs="0"/> * <element name="Id" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/> * <element name="PlacementId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/> * <element name="Status" type="{https://bingads.microsoft.com/CampaignManagement/v10}SitePlacementStatus" minOccurs="0"/> * <element name="Url" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SitePlacement", propOrder = { "bid", "id", "placementId", "status", "url" }) public class SitePlacement { @XmlElement(name = "Bid", nillable = true) protected Bid bid; @XmlElement(name = "Id", nillable = true) protected Long id; @XmlElement(name = "PlacementId", nillable = true) protected Long placementId; @XmlElement(name = "Status", nillable = true) @XmlSchemaType(name = "string") protected SitePlacementStatus status; @XmlElement(name = "Url", nillable = true) protected String url; /** * Gets the value of the bid property. * * @return * possible object is * {@link Bid } * */ public Bid getBid() { return bid; } /** * Sets the value of the bid property. * * @param value * allowed object is * {@link Bid } * */ public void setBid(Bid value) { this.bid = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link Long } * */ public Long getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link Long } * */ public void setId(Long value) { this.id = value; } /** * Gets the value of the placementId property. * * @return * possible object is * {@link Long } * */ public Long getPlacementId() { return placementId; } /** * Sets the value of the placementId property. * * @param value * allowed object is * {@link Long } * */ public void setPlacementId(Long value) { this.placementId = value; } /** * Gets the value of the status property. * * @return * possible object is * {@link SitePlacementStatus } * */ public SitePlacementStatus getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link SitePlacementStatus } * */ public void setStatus(SitePlacementStatus value) { this.status = value; } /** * Gets the value of the url property. * * @return * possible object is * {@link String } * */ public String getUrl() { return url; } /** * Sets the value of the url property. * * @param value * allowed object is * {@link String } * */ public void setUrl(String value) { this.url = value; } }