|
| 1 | +// |
| 2 | +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 |
| 3 | +// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> |
| 4 | +// Any modifications to this file will be lost upon recompilation of the source schema. |
| 5 | +// Generated on: 2019.05.21 at 03:44:38 PM CEST |
| 6 | +// |
| 7 | + |
| 8 | + |
| 9 | +package com.ixopay.client.model.callback; |
| 10 | + |
| 11 | +import java.math.BigDecimal; |
| 12 | +import javax.xml.bind.annotation.XmlAccessType; |
| 13 | +import javax.xml.bind.annotation.XmlAccessorType; |
| 14 | +import javax.xml.bind.annotation.XmlSchemaType; |
| 15 | +import javax.xml.bind.annotation.XmlType; |
| 16 | +import javax.xml.datatype.XMLGregorianCalendar; |
| 17 | + |
| 18 | + |
| 19 | +/** |
| 20 | + * <p>Java class for chargebackReversalDataType complex type. |
| 21 | + * |
| 22 | + * <p>The following schema fragment specifies the expected content contained within this class. |
| 23 | + * |
| 24 | + * <pre> |
| 25 | + * <complexType name="chargebackReversalDataType"> |
| 26 | + * <complexContent> |
| 27 | + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
| 28 | + * <sequence> |
| 29 | + * <element name="originalReferenceId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
| 30 | + * <element name="originalTransactionId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
| 31 | + * <element name="chargebackReferenceId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
| 32 | + * <element name="amount" type="{http://gateway.ixopay.com/Schema/V2/Callback}amountType" minOccurs="0"/> |
| 33 | + * <element name="currency" type="{http://gateway.ixopay.com/Schema/V2/Callback}currencyType" minOccurs="0"/> |
| 34 | + * <element name="reason" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
| 35 | + * <element name="reversalDateTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> |
| 36 | + * </sequence> |
| 37 | + * </restriction> |
| 38 | + * </complexContent> |
| 39 | + * </complexType> |
| 40 | + * </pre> |
| 41 | + * |
| 42 | + * |
| 43 | + */ |
| 44 | +@XmlAccessorType(XmlAccessType.FIELD) |
| 45 | +@XmlType(name = "chargebackReversalDataType", propOrder = { |
| 46 | + "originalReferenceId", |
| 47 | + "originalTransactionId", |
| 48 | + "chargebackReferenceId", |
| 49 | + "amount", |
| 50 | + "currency", |
| 51 | + "reason", |
| 52 | + "reversalDateTime" |
| 53 | +}) |
| 54 | +public class ChargebackReversalDataType { |
| 55 | + |
| 56 | + protected String originalReferenceId; |
| 57 | + protected String originalTransactionId; |
| 58 | + protected String chargebackReferenceId; |
| 59 | + protected BigDecimal amount; |
| 60 | + protected String currency; |
| 61 | + protected String reason; |
| 62 | + @XmlSchemaType(name = "dateTime") |
| 63 | + protected XMLGregorianCalendar reversalDateTime; |
| 64 | + |
| 65 | + /** |
| 66 | + * Default no-arg constructor |
| 67 | + * |
| 68 | + */ |
| 69 | + public ChargebackReversalDataType() { |
| 70 | + super(); |
| 71 | + } |
| 72 | + |
| 73 | + /** |
| 74 | + * Fully-initialising value constructor |
| 75 | + * |
| 76 | + */ |
| 77 | + public ChargebackReversalDataType(final String originalReferenceId, final String originalTransactionId, final String chargebackReferenceId, final BigDecimal amount, final String currency, final String reason, final XMLGregorianCalendar reversalDateTime) { |
| 78 | + this.originalReferenceId = originalReferenceId; |
| 79 | + this.originalTransactionId = originalTransactionId; |
| 80 | + this.chargebackReferenceId = chargebackReferenceId; |
| 81 | + this.amount = amount; |
| 82 | + this.currency = currency; |
| 83 | + this.reason = reason; |
| 84 | + this.reversalDateTime = reversalDateTime; |
| 85 | + } |
| 86 | + |
| 87 | + /** |
| 88 | + * Gets the value of the originalReferenceId property. |
| 89 | + * |
| 90 | + * @return |
| 91 | + * possible object is |
| 92 | + * {@link String } |
| 93 | + * |
| 94 | + */ |
| 95 | + public String getOriginalReferenceId() { |
| 96 | + return originalReferenceId; |
| 97 | + } |
| 98 | + |
| 99 | + /** |
| 100 | + * Sets the value of the originalReferenceId property. |
| 101 | + * |
| 102 | + * @param value |
| 103 | + * allowed object is |
| 104 | + * {@link String } |
| 105 | + * |
| 106 | + */ |
| 107 | + public void setOriginalReferenceId(String value) { |
| 108 | + this.originalReferenceId = value; |
| 109 | + } |
| 110 | + |
| 111 | + /** |
| 112 | + * Gets the value of the originalTransactionId property. |
| 113 | + * |
| 114 | + * @return |
| 115 | + * possible object is |
| 116 | + * {@link String } |
| 117 | + * |
| 118 | + */ |
| 119 | + public String getOriginalTransactionId() { |
| 120 | + return originalTransactionId; |
| 121 | + } |
| 122 | + |
| 123 | + /** |
| 124 | + * Sets the value of the originalTransactionId property. |
| 125 | + * |
| 126 | + * @param value |
| 127 | + * allowed object is |
| 128 | + * {@link String } |
| 129 | + * |
| 130 | + */ |
| 131 | + public void setOriginalTransactionId(String value) { |
| 132 | + this.originalTransactionId = value; |
| 133 | + } |
| 134 | + |
| 135 | + /** |
| 136 | + * Gets the value of the chargebackReferenceId property. |
| 137 | + * |
| 138 | + * @return |
| 139 | + * possible object is |
| 140 | + * {@link String } |
| 141 | + * |
| 142 | + */ |
| 143 | + public String getChargebackReferenceId() { |
| 144 | + return chargebackReferenceId; |
| 145 | + } |
| 146 | + |
| 147 | + /** |
| 148 | + * Sets the value of the chargebackReferenceId property. |
| 149 | + * |
| 150 | + * @param value |
| 151 | + * allowed object is |
| 152 | + * {@link String } |
| 153 | + * |
| 154 | + */ |
| 155 | + public void setChargebackReferenceId(String value) { |
| 156 | + this.chargebackReferenceId = value; |
| 157 | + } |
| 158 | + |
| 159 | + /** |
| 160 | + * Gets the value of the amount property. |
| 161 | + * |
| 162 | + * @return |
| 163 | + * possible object is |
| 164 | + * {@link BigDecimal } |
| 165 | + * |
| 166 | + */ |
| 167 | + public BigDecimal getAmount() { |
| 168 | + return amount; |
| 169 | + } |
| 170 | + |
| 171 | + /** |
| 172 | + * Sets the value of the amount property. |
| 173 | + * |
| 174 | + * @param value |
| 175 | + * allowed object is |
| 176 | + * {@link BigDecimal } |
| 177 | + * |
| 178 | + */ |
| 179 | + public void setAmount(BigDecimal value) { |
| 180 | + this.amount = value; |
| 181 | + } |
| 182 | + |
| 183 | + /** |
| 184 | + * Gets the value of the currency property. |
| 185 | + * |
| 186 | + * @return |
| 187 | + * possible object is |
| 188 | + * {@link String } |
| 189 | + * |
| 190 | + */ |
| 191 | + public String getCurrency() { |
| 192 | + return currency; |
| 193 | + } |
| 194 | + |
| 195 | + /** |
| 196 | + * Sets the value of the currency property. |
| 197 | + * |
| 198 | + * @param value |
| 199 | + * allowed object is |
| 200 | + * {@link String } |
| 201 | + * |
| 202 | + */ |
| 203 | + public void setCurrency(String value) { |
| 204 | + this.currency = value; |
| 205 | + } |
| 206 | + |
| 207 | + /** |
| 208 | + * Gets the value of the reason property. |
| 209 | + * |
| 210 | + * @return |
| 211 | + * possible object is |
| 212 | + * {@link String } |
| 213 | + * |
| 214 | + */ |
| 215 | + public String getReason() { |
| 216 | + return reason; |
| 217 | + } |
| 218 | + |
| 219 | + /** |
| 220 | + * Sets the value of the reason property. |
| 221 | + * |
| 222 | + * @param value |
| 223 | + * allowed object is |
| 224 | + * {@link String } |
| 225 | + * |
| 226 | + */ |
| 227 | + public void setReason(String value) { |
| 228 | + this.reason = value; |
| 229 | + } |
| 230 | + |
| 231 | + /** |
| 232 | + * Gets the value of the reversalDateTime property. |
| 233 | + * |
| 234 | + * @return |
| 235 | + * possible object is |
| 236 | + * {@link XMLGregorianCalendar } |
| 237 | + * |
| 238 | + */ |
| 239 | + public XMLGregorianCalendar getReversalDateTime() { |
| 240 | + return reversalDateTime; |
| 241 | + } |
| 242 | + |
| 243 | + /** |
| 244 | + * Sets the value of the reversalDateTime property. |
| 245 | + * |
| 246 | + * @param value |
| 247 | + * allowed object is |
| 248 | + * {@link XMLGregorianCalendar } |
| 249 | + * |
| 250 | + */ |
| 251 | + public void setReversalDateTime(XMLGregorianCalendar value) { |
| 252 | + this.reversalDateTime = value; |
| 253 | + } |
| 254 | + |
| 255 | +} |
0 commit comments