|
| 1 | + |
| 2 | +package com.microsoft.bingads.v13.campaignmanagement; |
| 3 | + |
| 4 | +import jakarta.xml.bind.annotation.XmlAccessType; |
| 5 | +import jakarta.xml.bind.annotation.XmlAccessorType; |
| 6 | +import jakarta.xml.bind.annotation.XmlElement; |
| 7 | +import jakarta.xml.bind.annotation.XmlType; |
| 8 | + |
| 9 | + |
| 10 | +/** |
| 11 | + * <p>Java class for AdRecommendationCustomizedProperty complex type. |
| 12 | + * |
| 13 | + * <p>The following schema fragment specifies the expected content contained within this class. |
| 14 | + * |
| 15 | + * <pre>{@code |
| 16 | + * <complexType name="AdRecommendationCustomizedProperty"> |
| 17 | + * <complexContent> |
| 18 | + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
| 19 | + * <sequence> |
| 20 | + * <element name="AssetTypeName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
| 21 | + * <element name="PropertyName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
| 22 | + * <element name="PropertyValue" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
| 23 | + * </sequence> |
| 24 | + * </restriction> |
| 25 | + * </complexContent> |
| 26 | + * </complexType> |
| 27 | + * }</pre> |
| 28 | + * |
| 29 | + * |
| 30 | + */ |
| 31 | +@XmlAccessorType(XmlAccessType.FIELD) |
| 32 | +@XmlType(name = "AdRecommendationCustomizedProperty", propOrder = { |
| 33 | + "assetTypeName", |
| 34 | + "propertyName", |
| 35 | + "propertyValue" |
| 36 | +}) |
| 37 | +public class AdRecommendationCustomizedProperty { |
| 38 | + |
| 39 | + @XmlElement(name = "AssetTypeName", nillable = true) |
| 40 | + protected String assetTypeName; |
| 41 | + @XmlElement(name = "PropertyName", nillable = true) |
| 42 | + protected String propertyName; |
| 43 | + @XmlElement(name = "PropertyValue", nillable = true) |
| 44 | + protected String propertyValue; |
| 45 | + |
| 46 | + /** |
| 47 | + * Gets the value of the assetTypeName property. |
| 48 | + * |
| 49 | + * @return |
| 50 | + * possible object is |
| 51 | + * {@link String } |
| 52 | + * |
| 53 | + */ |
| 54 | + public String getAssetTypeName() { |
| 55 | + return assetTypeName; |
| 56 | + } |
| 57 | + |
| 58 | + /** |
| 59 | + * Sets the value of the assetTypeName property. |
| 60 | + * |
| 61 | + * @param value |
| 62 | + * allowed object is |
| 63 | + * {@link String } |
| 64 | + * |
| 65 | + */ |
| 66 | + public void setAssetTypeName(String value) { |
| 67 | + this.assetTypeName = value; |
| 68 | + } |
| 69 | + |
| 70 | + /** |
| 71 | + * Gets the value of the propertyName property. |
| 72 | + * |
| 73 | + * @return |
| 74 | + * possible object is |
| 75 | + * {@link String } |
| 76 | + * |
| 77 | + */ |
| 78 | + public String getPropertyName() { |
| 79 | + return propertyName; |
| 80 | + } |
| 81 | + |
| 82 | + /** |
| 83 | + * Sets the value of the propertyName property. |
| 84 | + * |
| 85 | + * @param value |
| 86 | + * allowed object is |
| 87 | + * {@link String } |
| 88 | + * |
| 89 | + */ |
| 90 | + public void setPropertyName(String value) { |
| 91 | + this.propertyName = value; |
| 92 | + } |
| 93 | + |
| 94 | + /** |
| 95 | + * Gets the value of the propertyValue property. |
| 96 | + * |
| 97 | + * @return |
| 98 | + * possible object is |
| 99 | + * {@link String } |
| 100 | + * |
| 101 | + */ |
| 102 | + public String getPropertyValue() { |
| 103 | + return propertyValue; |
| 104 | + } |
| 105 | + |
| 106 | + /** |
| 107 | + * Sets the value of the propertyValue property. |
| 108 | + * |
| 109 | + * @param value |
| 110 | + * allowed object is |
| 111 | + * {@link String } |
| 112 | + * |
| 113 | + */ |
| 114 | + public void setPropertyValue(String value) { |
| 115 | + this.propertyValue = value; |
| 116 | + } |
| 117 | + |
| 118 | +} |
0 commit comments