|
| 1 | + |
| 2 | +package com.microsoft.bingads.v13.adinsight; |
| 3 | + |
| 4 | +import java.util.ArrayList; |
| 5 | +import java.util.List; |
| 6 | +import jakarta.xml.bind.annotation.XmlAccessType; |
| 7 | +import jakarta.xml.bind.annotation.XmlAccessorType; |
| 8 | +import jakarta.xml.bind.annotation.XmlElement; |
| 9 | +import jakarta.xml.bind.annotation.XmlType; |
| 10 | +import com.fasterxml.jackson.annotation.JsonCreator; |
| 11 | + |
| 12 | +/** |
| 13 | + * <p>Java class for ArrayOfCampaignBidLandscapePoint complex type. |
| 14 | + * |
| 15 | + * <p>The following schema fragment specifies the expected content contained within this class. |
| 16 | + * |
| 17 | + * <pre>{@code |
| 18 | + * <complexType name="ArrayOfCampaignBidLandscapePoint"> |
| 19 | + * <complexContent> |
| 20 | + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
| 21 | + * <sequence> |
| 22 | + * <element name="CampaignBidLandscapePoint" type="{https://bingads.microsoft.com/AdInsight/v13}CampaignBidLandscapePoint" maxOccurs="unbounded" minOccurs="0"/> |
| 23 | + * </sequence> |
| 24 | + * </restriction> |
| 25 | + * </complexContent> |
| 26 | + * </complexType> |
| 27 | + * }</pre> |
| 28 | + * |
| 29 | + * |
| 30 | + */ |
| 31 | +@XmlAccessorType(XmlAccessType.FIELD) |
| 32 | +@XmlType(name = "ArrayOfCampaignBidLandscapePoint", propOrder = { |
| 33 | + "campaignBidLandscapePoints" |
| 34 | +}) |
| 35 | +public class ArrayOfCampaignBidLandscapePoint { |
| 36 | + |
| 37 | + @XmlElement(name = "CampaignBidLandscapePoint", nillable = true) |
| 38 | + protected List<CampaignBidLandscapePoint> campaignBidLandscapePoints; |
| 39 | + public ArrayOfCampaignBidLandscapePoint() |
| 40 | + { |
| 41 | + this.campaignBidLandscapePoints = new ArrayList<CampaignBidLandscapePoint>(); |
| 42 | + } |
| 43 | + @JsonCreator |
| 44 | + public ArrayOfCampaignBidLandscapePoint(List<CampaignBidLandscapePoint> campaignbidlandscapepoints) |
| 45 | + { |
| 46 | + this.campaignBidLandscapePoints = campaignbidlandscapepoints; |
| 47 | + } |
| 48 | + |
| 49 | + /** |
| 50 | + * Gets the value of the campaignBidLandscapePoints property. |
| 51 | + * |
| 52 | + * <p> |
| 53 | + * This accessor method returns a reference to the live list, |
| 54 | + * not a snapshot. Therefore any modification you make to the |
| 55 | + * returned list will be present inside the Jakarta XML Binding object. |
| 56 | + * This is why there is not a {@code set} method for the campaignBidLandscapePoints property. |
| 57 | + * |
| 58 | + * <p> |
| 59 | + * For example, to add a new item, do as follows: |
| 60 | + * <pre> |
| 61 | + * getCampaignBidLandscapePoints().add(newItem); |
| 62 | + * </pre> |
| 63 | + * |
| 64 | + * |
| 65 | + * <p> |
| 66 | + * Objects of the following type(s) are allowed in the list |
| 67 | + * {@link CampaignBidLandscapePoint } |
| 68 | + * |
| 69 | + * |
| 70 | + * @return |
| 71 | + * The value of the campaignBidLandscapePoints property. |
| 72 | + */ |
| 73 | + public List<CampaignBidLandscapePoint> getCampaignBidLandscapePoints() { |
| 74 | + if (campaignBidLandscapePoints == null) { |
| 75 | + campaignBidLandscapePoints = new ArrayList<>(); |
| 76 | + } |
| 77 | + return this.campaignBidLandscapePoints; |
| 78 | + } |
| 79 | + |
| 80 | +} |
0 commit comments