Java class for authIndicatorEnum. + * + *
The following schema fragment specifies the expected content contained within this class. + *
+ *
+ * <simpleType name="authIndicatorEnum"> + * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> + * <enumeration value="pre"/> + * <enumeration value="final"/> + * </restriction> + * </simpleType> + *+ * + */ +@XmlType(name = "authIndicatorEnum") +@XmlEnum +public enum AuthIndicatorEnum { + + @XmlEnumValue("pre") + PRE("pre"), + @XmlEnumValue("final") + FINAL("final"); + private final String value; + + AuthIndicatorEnum(String v) { + value = v; + } + + public String value() { + return value; + } + + public static AuthIndicatorEnum fromValue(String v) { + for (AuthIndicatorEnum c: AuthIndicatorEnum.values()) { + if (c.value.equals(v)) { + return c; + } + } + throw new IllegalArgumentException(v); + } + +} diff --git a/src/main/java/net/authorize/api/contract/v1/AuthenticateTestRequest.java b/src/main/java/net/authorize/api/contract/v1/AuthenticateTestRequest.java index 6a378af6..d1fa55c0 100644 --- a/src/main/java/net/authorize/api/contract/v1/AuthenticateTestRequest.java +++ b/src/main/java/net/authorize/api/contract/v1/AuthenticateTestRequest.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/AuthenticateTestResponse.java b/src/main/java/net/authorize/api/contract/v1/AuthenticateTestResponse.java index c6cf33a9..f195b11e 100644 --- a/src/main/java/net/authorize/api/contract/v1/AuthenticateTestResponse.java +++ b/src/main/java/net/authorize/api/contract/v1/AuthenticateTestResponse.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/AuthorizationIndicatorType.java b/src/main/java/net/authorize/api/contract/v1/AuthorizationIndicatorType.java new file mode 100644 index 00000000..1d76070a --- /dev/null +++ b/src/main/java/net/authorize/api/contract/v1/AuthorizationIndicatorType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2024.08.29 at 03:15:31 AM IST +// + + +package net.authorize.api.contract.v1; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *
Java class for authorizationIndicatorType complex type. + * + *
The following schema fragment specifies the expected content contained within this class. + * + *
+ * <complexType name="authorizationIndicatorType"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="authorizationIndicator" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}authIndicatorEnum" minOccurs="0"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> + *+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "authorizationIndicatorType", propOrder = { + "authorizationIndicator" +}) +public class AuthorizationIndicatorType { + + @XmlSchemaType(name = "string") + protected AuthIndicatorEnum authorizationIndicator; + + /** + * Gets the value of the authorizationIndicator property. + * + * @return + * possible object is + * {@link AuthIndicatorEnum } + * + */ + public AuthIndicatorEnum getAuthorizationIndicator() { + return authorizationIndicator; + } + + /** + * Sets the value of the authorizationIndicator property. + * + * @param value + * allowed object is + * {@link AuthIndicatorEnum } + * + */ + public void setAuthorizationIndicator(AuthIndicatorEnum value) { + this.authorizationIndicator = value; + } + +} diff --git a/src/main/java/net/authorize/api/contract/v1/BankAccountMaskedType.java b/src/main/java/net/authorize/api/contract/v1/BankAccountMaskedType.java index b3307f24..e7d079c1 100644 --- a/src/main/java/net/authorize/api/contract/v1/BankAccountMaskedType.java +++ b/src/main/java/net/authorize/api/contract/v1/BankAccountMaskedType.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -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; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/BankAccountType.java b/src/main/java/net/authorize/api/contract/v1/BankAccountType.java index e02f7a60..79cadd48 100644 --- a/src/main/java/net/authorize/api/contract/v1/BankAccountType.java +++ b/src/main/java/net/authorize/api/contract/v1/BankAccountType.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -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; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/BankAccountTypeEnum.java b/src/main/java/net/authorize/api/contract/v1/BankAccountTypeEnum.java index 7522a992..e0fbc11d 100644 --- a/src/main/java/net/authorize/api/contract/v1/BankAccountTypeEnum.java +++ b/src/main/java/net/authorize/api/contract/v1/BankAccountTypeEnum.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlEnumValue; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/BatchDetailsType.java b/src/main/java/net/authorize/api/contract/v1/BatchDetailsType.java index 24e4b9ee..1a5e543c 100644 --- a/src/main/java/net/authorize/api/contract/v1/BatchDetailsType.java +++ b/src/main/java/net/authorize/api/contract/v1/BatchDetailsType.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -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; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; diff --git a/src/main/java/net/authorize/api/contract/v1/BatchStatisticType.java b/src/main/java/net/authorize/api/contract/v1/BatchStatisticType.java index bfe9c34a..fc8e0fb5 100644 --- a/src/main/java/net/authorize/api/contract/v1/BatchStatisticType.java +++ b/src/main/java/net/authorize/api/contract/v1/BatchStatisticType.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/CardArt.java b/src/main/java/net/authorize/api/contract/v1/CardArt.java index 241b3e54..32a2593b 100644 --- a/src/main/java/net/authorize/api/contract/v1/CardArt.java +++ b/src/main/java/net/authorize/api/contract/v1/CardArt.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/CardTypeEnum.java b/src/main/java/net/authorize/api/contract/v1/CardTypeEnum.java index 583c5092..e7372ed7 100644 --- a/src/main/java/net/authorize/api/contract/v1/CardTypeEnum.java +++ b/src/main/java/net/authorize/api/contract/v1/CardTypeEnum.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlEnumValue; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/CcAuthenticationType.java b/src/main/java/net/authorize/api/contract/v1/CcAuthenticationType.java index 236cbd44..60af222a 100644 --- a/src/main/java/net/authorize/api/contract/v1/CcAuthenticationType.java +++ b/src/main/java/net/authorize/api/contract/v1/CcAuthenticationType.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/ContactDetailType.java b/src/main/java/net/authorize/api/contract/v1/ContactDetailType.java index 7710e25c..1f34a23e 100644 --- a/src/main/java/net/authorize/api/contract/v1/ContactDetailType.java +++ b/src/main/java/net/authorize/api/contract/v1/ContactDetailType.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.11.14 at 11:09:15 AM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/CreateCustomerPaymentProfileRequest.java b/src/main/java/net/authorize/api/contract/v1/CreateCustomerPaymentProfileRequest.java index cb6c35d6..ff1585b2 100644 --- a/src/main/java/net/authorize/api/contract/v1/CreateCustomerPaymentProfileRequest.java +++ b/src/main/java/net/authorize/api/contract/v1/CreateCustomerPaymentProfileRequest.java @@ -2,18 +2,18 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/CreateCustomerPaymentProfileResponse.java b/src/main/java/net/authorize/api/contract/v1/CreateCustomerPaymentProfileResponse.java index d2b55419..bf2074cb 100644 --- a/src/main/java/net/authorize/api/contract/v1/CreateCustomerPaymentProfileResponse.java +++ b/src/main/java/net/authorize/api/contract/v1/CreateCustomerPaymentProfileResponse.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/CreateCustomerProfileFromTransactionRequest.java b/src/main/java/net/authorize/api/contract/v1/CreateCustomerProfileFromTransactionRequest.java index 06fa8c36..cff06f20 100644 --- a/src/main/java/net/authorize/api/contract/v1/CreateCustomerProfileFromTransactionRequest.java +++ b/src/main/java/net/authorize/api/contract/v1/CreateCustomerProfileFromTransactionRequest.java @@ -2,18 +2,18 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/CreateCustomerProfileRequest.java b/src/main/java/net/authorize/api/contract/v1/CreateCustomerProfileRequest.java index d7cee20a..ce45a7fd 100644 --- a/src/main/java/net/authorize/api/contract/v1/CreateCustomerProfileRequest.java +++ b/src/main/java/net/authorize/api/contract/v1/CreateCustomerProfileRequest.java @@ -2,18 +2,18 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/CreateCustomerProfileResponse.java b/src/main/java/net/authorize/api/contract/v1/CreateCustomerProfileResponse.java index bfa1d6c6..baa683cc 100644 --- a/src/main/java/net/authorize/api/contract/v1/CreateCustomerProfileResponse.java +++ b/src/main/java/net/authorize/api/contract/v1/CreateCustomerProfileResponse.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/CreateCustomerProfileTransactionRequest.java b/src/main/java/net/authorize/api/contract/v1/CreateCustomerProfileTransactionRequest.java index 72aea293..96346015 100644 --- a/src/main/java/net/authorize/api/contract/v1/CreateCustomerProfileTransactionRequest.java +++ b/src/main/java/net/authorize/api/contract/v1/CreateCustomerProfileTransactionRequest.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/CreateCustomerProfileTransactionResponse.java b/src/main/java/net/authorize/api/contract/v1/CreateCustomerProfileTransactionResponse.java index 8468bfea..3f9c6aaf 100644 --- a/src/main/java/net/authorize/api/contract/v1/CreateCustomerProfileTransactionResponse.java +++ b/src/main/java/net/authorize/api/contract/v1/CreateCustomerProfileTransactionResponse.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/CreateCustomerShippingAddressRequest.java b/src/main/java/net/authorize/api/contract/v1/CreateCustomerShippingAddressRequest.java index 519c62a5..d21004ce 100644 --- a/src/main/java/net/authorize/api/contract/v1/CreateCustomerShippingAddressRequest.java +++ b/src/main/java/net/authorize/api/contract/v1/CreateCustomerShippingAddressRequest.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/CreateCustomerShippingAddressResponse.java b/src/main/java/net/authorize/api/contract/v1/CreateCustomerShippingAddressResponse.java index 4bb87a5b..d99fcd4f 100644 --- a/src/main/java/net/authorize/api/contract/v1/CreateCustomerShippingAddressResponse.java +++ b/src/main/java/net/authorize/api/contract/v1/CreateCustomerShippingAddressResponse.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/CreateFingerPrintRequest.java b/src/main/java/net/authorize/api/contract/v1/CreateFingerPrintRequest.java index 2c3f045f..4830c276 100644 --- a/src/main/java/net/authorize/api/contract/v1/CreateFingerPrintRequest.java +++ b/src/main/java/net/authorize/api/contract/v1/CreateFingerPrintRequest.java @@ -8,11 +8,11 @@ package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/CreateFingerPrintResponse.java b/src/main/java/net/authorize/api/contract/v1/CreateFingerPrintResponse.java index 2f6fd283..d08d0623 100644 --- a/src/main/java/net/authorize/api/contract/v1/CreateFingerPrintResponse.java +++ b/src/main/java/net/authorize/api/contract/v1/CreateFingerPrintResponse.java @@ -8,11 +8,11 @@ package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/CreateProfileResponse.java b/src/main/java/net/authorize/api/contract/v1/CreateProfileResponse.java index a4f0ad67..f1f1cb9f 100644 --- a/src/main/java/net/authorize/api/contract/v1/CreateProfileResponse.java +++ b/src/main/java/net/authorize/api/contract/v1/CreateProfileResponse.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/CreateTransactionRequest.java b/src/main/java/net/authorize/api/contract/v1/CreateTransactionRequest.java index 4846952f..ae931331 100644 --- a/src/main/java/net/authorize/api/contract/v1/CreateTransactionRequest.java +++ b/src/main/java/net/authorize/api/contract/v1/CreateTransactionRequest.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/CreateTransactionResponse.java b/src/main/java/net/authorize/api/contract/v1/CreateTransactionResponse.java index d79aa9cd..9fc7f7f5 100644 --- a/src/main/java/net/authorize/api/contract/v1/CreateTransactionResponse.java +++ b/src/main/java/net/authorize/api/contract/v1/CreateTransactionResponse.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/CreditCardMaskedType.java b/src/main/java/net/authorize/api/contract/v1/CreditCardMaskedType.java index f5feaae7..7a696a86 100644 --- a/src/main/java/net/authorize/api/contract/v1/CreditCardMaskedType.java +++ b/src/main/java/net/authorize/api/contract/v1/CreditCardMaskedType.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/CreditCardSimpleType.java b/src/main/java/net/authorize/api/contract/v1/CreditCardSimpleType.java index f30244cc..bdc516d8 100644 --- a/src/main/java/net/authorize/api/contract/v1/CreditCardSimpleType.java +++ b/src/main/java/net/authorize/api/contract/v1/CreditCardSimpleType.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/CreditCardTrackType.java b/src/main/java/net/authorize/api/contract/v1/CreditCardTrackType.java index 13f5c6c8..c283a864 100644 --- a/src/main/java/net/authorize/api/contract/v1/CreditCardTrackType.java +++ b/src/main/java/net/authorize/api/contract/v1/CreditCardTrackType.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/CreditCardType.java b/src/main/java/net/authorize/api/contract/v1/CreditCardType.java index c0668a9a..67693ec5 100644 --- a/src/main/java/net/authorize/api/contract/v1/CreditCardType.java +++ b/src/main/java/net/authorize/api/contract/v1/CreditCardType.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.09.24 at 04:52:54 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/CustomerAddressExType.java b/src/main/java/net/authorize/api/contract/v1/CustomerAddressExType.java index 5cc01b7e..6121c661 100644 --- a/src/main/java/net/authorize/api/contract/v1/CustomerAddressExType.java +++ b/src/main/java/net/authorize/api/contract/v1/CustomerAddressExType.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/CustomerAddressType.java b/src/main/java/net/authorize/api/contract/v1/CustomerAddressType.java index 3ee4a7e5..d318e91b 100644 --- a/src/main/java/net/authorize/api/contract/v1/CustomerAddressType.java +++ b/src/main/java/net/authorize/api/contract/v1/CustomerAddressType.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/CustomerDataType.java b/src/main/java/net/authorize/api/contract/v1/CustomerDataType.java index 588fa815..0b30c9c0 100644 --- a/src/main/java/net/authorize/api/contract/v1/CustomerDataType.java +++ b/src/main/java/net/authorize/api/contract/v1/CustomerDataType.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/CustomerPaymentProfileBaseType.java b/src/main/java/net/authorize/api/contract/v1/CustomerPaymentProfileBaseType.java index f7bc2ea9..953fddb6 100644 --- a/src/main/java/net/authorize/api/contract/v1/CustomerPaymentProfileBaseType.java +++ b/src/main/java/net/authorize/api/contract/v1/CustomerPaymentProfileBaseType.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/CustomerPaymentProfileExType.java b/src/main/java/net/authorize/api/contract/v1/CustomerPaymentProfileExType.java index 2de95579..b53b0095 100644 --- a/src/main/java/net/authorize/api/contract/v1/CustomerPaymentProfileExType.java +++ b/src/main/java/net/authorize/api/contract/v1/CustomerPaymentProfileExType.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/CustomerPaymentProfileListItemType.java b/src/main/java/net/authorize/api/contract/v1/CustomerPaymentProfileListItemType.java index 536d3e6e..f701f2de 100644 --- a/src/main/java/net/authorize/api/contract/v1/CustomerPaymentProfileListItemType.java +++ b/src/main/java/net/authorize/api/contract/v1/CustomerPaymentProfileListItemType.java @@ -2,16 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; +import java.math.BigDecimal; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; /** @@ -29,6 +30,16 @@ * <element name="customerProfileId" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="billTo" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}customerAddressType"/> * <element name="payment" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}paymentMaskedType"/> + * <element name="originalNetworkTransId" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}networkTransId" minOccurs="0"/> + * <element name="originalAuthAmount" minOccurs="0"> + * <simpleType> + * <restriction base="{http://www.w3.org/2001/XMLSchema}decimal"> + * <minInclusive value="0.00"/> + * <fractionDigits value="4"/> + * </restriction> + * </simpleType> + * </element> + * <element name="excludeFromAccountUpdater" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> @@ -43,7 +54,10 @@ "customerPaymentProfileId", "customerProfileId", "billTo", - "payment" + "payment", + "originalNetworkTransId", + "originalAuthAmount", + "excludeFromAccountUpdater" }) public class CustomerPaymentProfileListItemType { @@ -54,6 +68,9 @@ public class CustomerPaymentProfileListItemType { protected CustomerAddressType billTo; @XmlElement(required = true) protected PaymentMaskedType payment; + protected String originalNetworkTransId; + protected BigDecimal originalAuthAmount; + protected Boolean excludeFromAccountUpdater; /** * Gets the value of the defaultPaymentProfile property. @@ -159,4 +176,76 @@ public void setPayment(PaymentMaskedType value) { this.payment = value; } + /** + * Gets the value of the originalNetworkTransId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOriginalNetworkTransId() { + return originalNetworkTransId; + } + + /** + * Sets the value of the originalNetworkTransId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOriginalNetworkTransId(String value) { + this.originalNetworkTransId = value; + } + + /** + * Gets the value of the originalAuthAmount property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getOriginalAuthAmount() { + return originalAuthAmount; + } + + /** + * Sets the value of the originalAuthAmount property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setOriginalAuthAmount(BigDecimal value) { + this.originalAuthAmount = value; + } + + /** + * Gets the value of the excludeFromAccountUpdater property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isExcludeFromAccountUpdater() { + return excludeFromAccountUpdater; + } + + /** + * Sets the value of the excludeFromAccountUpdater property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setExcludeFromAccountUpdater(Boolean value) { + this.excludeFromAccountUpdater = value; + } + } diff --git a/src/main/java/net/authorize/api/contract/v1/CustomerPaymentProfileMaskedType.java b/src/main/java/net/authorize/api/contract/v1/CustomerPaymentProfileMaskedType.java index c3715b51..c99a17f6 100644 --- a/src/main/java/net/authorize/api/contract/v1/CustomerPaymentProfileMaskedType.java +++ b/src/main/java/net/authorize/api/contract/v1/CustomerPaymentProfileMaskedType.java @@ -2,16 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; +import java.math.BigDecimal; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; /** @@ -37,6 +38,16 @@ * </simpleType> * </element> * <element name="subscriptionIds" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}SubscriptionIdList" minOccurs="0"/> + * <element name="originalNetworkTransId" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}networkTransId" minOccurs="0"/> + * <element name="originalAuthAmount" minOccurs="0"> + * <simpleType> + * <restriction base="{http://www.w3.org/2001/XMLSchema}decimal"> + * <minInclusive value="0.00"/> + * <fractionDigits value="4"/> + * </restriction> + * </simpleType> + * </element> + * <element name="excludeFromAccountUpdater" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * </sequence> * </extension> * </complexContent> @@ -53,7 +64,10 @@ "payment", "driversLicense", "taxId", - "subscriptionIds" + "subscriptionIds", + "originalNetworkTransId", + "originalAuthAmount", + "excludeFromAccountUpdater" }) public class CustomerPaymentProfileMaskedType extends CustomerPaymentProfileBaseType @@ -67,6 +81,9 @@ public class CustomerPaymentProfileMaskedType protected DriversLicenseMaskedType driversLicense; protected String taxId; protected SubscriptionIdList subscriptionIds; + protected String originalNetworkTransId; + protected BigDecimal originalAuthAmount; + protected Boolean excludeFromAccountUpdater; /** * Gets the value of the customerProfileId property. @@ -236,4 +253,76 @@ public void setSubscriptionIds(SubscriptionIdList value) { this.subscriptionIds = value; } + /** + * Gets the value of the originalNetworkTransId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOriginalNetworkTransId() { + return originalNetworkTransId; + } + + /** + * Sets the value of the originalNetworkTransId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOriginalNetworkTransId(String value) { + this.originalNetworkTransId = value; + } + + /** + * Gets the value of the originalAuthAmount property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getOriginalAuthAmount() { + return originalAuthAmount; + } + + /** + * Sets the value of the originalAuthAmount property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setOriginalAuthAmount(BigDecimal value) { + this.originalAuthAmount = value; + } + + /** + * Gets the value of the excludeFromAccountUpdater property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isExcludeFromAccountUpdater() { + return excludeFromAccountUpdater; + } + + /** + * Sets the value of the excludeFromAccountUpdater property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setExcludeFromAccountUpdater(Boolean value) { + this.excludeFromAccountUpdater = value; + } + } diff --git a/src/main/java/net/authorize/api/contract/v1/CustomerPaymentProfileOrderFieldEnum.java b/src/main/java/net/authorize/api/contract/v1/CustomerPaymentProfileOrderFieldEnum.java index 5b61917f..4d94ff3f 100644 --- a/src/main/java/net/authorize/api/contract/v1/CustomerPaymentProfileOrderFieldEnum.java +++ b/src/main/java/net/authorize/api/contract/v1/CustomerPaymentProfileOrderFieldEnum.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlEnumValue; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/CustomerPaymentProfileSearchTypeEnum.java b/src/main/java/net/authorize/api/contract/v1/CustomerPaymentProfileSearchTypeEnum.java index 558f4107..b0431569 100644 --- a/src/main/java/net/authorize/api/contract/v1/CustomerPaymentProfileSearchTypeEnum.java +++ b/src/main/java/net/authorize/api/contract/v1/CustomerPaymentProfileSearchTypeEnum.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlEnumValue; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/CustomerPaymentProfileSorting.java b/src/main/java/net/authorize/api/contract/v1/CustomerPaymentProfileSorting.java index 0a4d50a3..c6db37ee 100644 --- a/src/main/java/net/authorize/api/contract/v1/CustomerPaymentProfileSorting.java +++ b/src/main/java/net/authorize/api/contract/v1/CustomerPaymentProfileSorting.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -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; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/CustomerPaymentProfileType.java b/src/main/java/net/authorize/api/contract/v1/CustomerPaymentProfileType.java index e15ad498..47f8d851 100644 --- a/src/main/java/net/authorize/api/contract/v1/CustomerPaymentProfileType.java +++ b/src/main/java/net/authorize/api/contract/v1/CustomerPaymentProfileType.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; /** @@ -35,6 +35,8 @@ * </simpleType> * </element> * <element name="defaultPaymentProfile" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> + * <element name="subsequentAuthInformation" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}subsequentAuthInformation" minOccurs="0"/> + * <element name="excludeFromAccountUpdater" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * </sequence> * </extension> * </complexContent> @@ -48,7 +50,9 @@ "payment", "driversLicense", "taxId", - "defaultPaymentProfile" + "defaultPaymentProfile", + "subsequentAuthInformation", + "excludeFromAccountUpdater" }) @XmlSeeAlso({ CustomerPaymentProfileExType.class @@ -61,6 +65,8 @@ public class CustomerPaymentProfileType protected DriversLicenseType driversLicense; protected String taxId; protected Boolean defaultPaymentProfile; + protected SubsequentAuthInformation subsequentAuthInformation; + protected Boolean excludeFromAccountUpdater; /** * Gets the value of the payment property. @@ -158,4 +164,52 @@ public void setDefaultPaymentProfile(Boolean value) { this.defaultPaymentProfile = value; } + /** + * Gets the value of the subsequentAuthInformation property. + * + * @return + * possible object is + * {@link SubsequentAuthInformation } + * + */ + public SubsequentAuthInformation getSubsequentAuthInformation() { + return subsequentAuthInformation; + } + + /** + * Sets the value of the subsequentAuthInformation property. + * + * @param value + * allowed object is + * {@link SubsequentAuthInformation } + * + */ + public void setSubsequentAuthInformation(SubsequentAuthInformation value) { + this.subsequentAuthInformation = value; + } + + /** + * Gets the value of the excludeFromAccountUpdater property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isExcludeFromAccountUpdater() { + return excludeFromAccountUpdater; + } + + /** + * Sets the value of the excludeFromAccountUpdater property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setExcludeFromAccountUpdater(Boolean value) { + this.excludeFromAccountUpdater = value; + } + } diff --git a/src/main/java/net/authorize/api/contract/v1/CustomerProfileBaseType.java b/src/main/java/net/authorize/api/contract/v1/CustomerProfileBaseType.java index 7cfe2e58..339a78d3 100644 --- a/src/main/java/net/authorize/api/contract/v1/CustomerProfileBaseType.java +++ b/src/main/java/net/authorize/api/contract/v1/CustomerProfileBaseType.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/CustomerProfileExType.java b/src/main/java/net/authorize/api/contract/v1/CustomerProfileExType.java index 171160f7..38b508fd 100644 --- a/src/main/java/net/authorize/api/contract/v1/CustomerProfileExType.java +++ b/src/main/java/net/authorize/api/contract/v1/CustomerProfileExType.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/CustomerProfileIdType.java b/src/main/java/net/authorize/api/contract/v1/CustomerProfileIdType.java index 4a200539..f1936894 100644 --- a/src/main/java/net/authorize/api/contract/v1/CustomerProfileIdType.java +++ b/src/main/java/net/authorize/api/contract/v1/CustomerProfileIdType.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/CustomerProfileInfoExType.java b/src/main/java/net/authorize/api/contract/v1/CustomerProfileInfoExType.java index b6211052..4e6bc983 100644 --- a/src/main/java/net/authorize/api/contract/v1/CustomerProfileInfoExType.java +++ b/src/main/java/net/authorize/api/contract/v1/CustomerProfileInfoExType.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/CustomerProfileMaskedType.java b/src/main/java/net/authorize/api/contract/v1/CustomerProfileMaskedType.java index 00e9482f..fb27844c 100644 --- a/src/main/java/net/authorize/api/contract/v1/CustomerProfileMaskedType.java +++ b/src/main/java/net/authorize/api/contract/v1/CustomerProfileMaskedType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // @@ -10,10 +10,10 @@ import java.util.ArrayList; import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/CustomerProfilePaymentType.java b/src/main/java/net/authorize/api/contract/v1/CustomerProfilePaymentType.java index 149d486f..4a7d9da0 100644 --- a/src/main/java/net/authorize/api/contract/v1/CustomerProfilePaymentType.java +++ b/src/main/java/net/authorize/api/contract/v1/CustomerProfilePaymentType.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/CustomerProfileSummaryType.java b/src/main/java/net/authorize/api/contract/v1/CustomerProfileSummaryType.java index 3c40dd4c..d22a703c 100644 --- a/src/main/java/net/authorize/api/contract/v1/CustomerProfileSummaryType.java +++ b/src/main/java/net/authorize/api/contract/v1/CustomerProfileSummaryType.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -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; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; diff --git a/src/main/java/net/authorize/api/contract/v1/CustomerProfileType.java b/src/main/java/net/authorize/api/contract/v1/CustomerProfileType.java index 492963d3..586db3c5 100644 --- a/src/main/java/net/authorize/api/contract/v1/CustomerProfileType.java +++ b/src/main/java/net/authorize/api/contract/v1/CustomerProfileType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // @@ -10,10 +10,10 @@ import java.util.ArrayList; import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/CustomerProfileTypeEnum.java b/src/main/java/net/authorize/api/contract/v1/CustomerProfileTypeEnum.java index 812452bb..6996b31a 100644 --- a/src/main/java/net/authorize/api/contract/v1/CustomerProfileTypeEnum.java +++ b/src/main/java/net/authorize/api/contract/v1/CustomerProfileTypeEnum.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlEnumValue; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/CustomerType.java b/src/main/java/net/authorize/api/contract/v1/CustomerType.java index bca652e1..dafeb43b 100644 --- a/src/main/java/net/authorize/api/contract/v1/CustomerType.java +++ b/src/main/java/net/authorize/api/contract/v1/CustomerType.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/CustomerTypeEnum.java b/src/main/java/net/authorize/api/contract/v1/CustomerTypeEnum.java index 9c5d46ab..b7d56bb8 100644 --- a/src/main/java/net/authorize/api/contract/v1/CustomerTypeEnum.java +++ b/src/main/java/net/authorize/api/contract/v1/CustomerTypeEnum.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlEnumValue; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/DecryptPaymentDataRequest.java b/src/main/java/net/authorize/api/contract/v1/DecryptPaymentDataRequest.java index a38e11b4..abfb2d48 100644 --- a/src/main/java/net/authorize/api/contract/v1/DecryptPaymentDataRequest.java +++ b/src/main/java/net/authorize/api/contract/v1/DecryptPaymentDataRequest.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/DecryptPaymentDataResponse.java b/src/main/java/net/authorize/api/contract/v1/DecryptPaymentDataResponse.java index 46e19f16..fb11b0f8 100644 --- a/src/main/java/net/authorize/api/contract/v1/DecryptPaymentDataResponse.java +++ b/src/main/java/net/authorize/api/contract/v1/DecryptPaymentDataResponse.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/DeleteCustomerPaymentProfileRequest.java b/src/main/java/net/authorize/api/contract/v1/DeleteCustomerPaymentProfileRequest.java index 829644b9..8eb09b81 100644 --- a/src/main/java/net/authorize/api/contract/v1/DeleteCustomerPaymentProfileRequest.java +++ b/src/main/java/net/authorize/api/contract/v1/DeleteCustomerPaymentProfileRequest.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/DeleteCustomerPaymentProfileResponse.java b/src/main/java/net/authorize/api/contract/v1/DeleteCustomerPaymentProfileResponse.java index ea7b2f15..0cf80535 100644 --- a/src/main/java/net/authorize/api/contract/v1/DeleteCustomerPaymentProfileResponse.java +++ b/src/main/java/net/authorize/api/contract/v1/DeleteCustomerPaymentProfileResponse.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/DeleteCustomerProfileRequest.java b/src/main/java/net/authorize/api/contract/v1/DeleteCustomerProfileRequest.java index 26190fa6..4985ac01 100644 --- a/src/main/java/net/authorize/api/contract/v1/DeleteCustomerProfileRequest.java +++ b/src/main/java/net/authorize/api/contract/v1/DeleteCustomerProfileRequest.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/DeleteCustomerProfileResponse.java b/src/main/java/net/authorize/api/contract/v1/DeleteCustomerProfileResponse.java index 6f737c9a..1d39019d 100644 --- a/src/main/java/net/authorize/api/contract/v1/DeleteCustomerProfileResponse.java +++ b/src/main/java/net/authorize/api/contract/v1/DeleteCustomerProfileResponse.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/DeleteCustomerShippingAddressRequest.java b/src/main/java/net/authorize/api/contract/v1/DeleteCustomerShippingAddressRequest.java index a64232f7..db46577d 100644 --- a/src/main/java/net/authorize/api/contract/v1/DeleteCustomerShippingAddressRequest.java +++ b/src/main/java/net/authorize/api/contract/v1/DeleteCustomerShippingAddressRequest.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/DeleteCustomerShippingAddressResponse.java b/src/main/java/net/authorize/api/contract/v1/DeleteCustomerShippingAddressResponse.java index 64f31a27..a0c855f8 100644 --- a/src/main/java/net/authorize/api/contract/v1/DeleteCustomerShippingAddressResponse.java +++ b/src/main/java/net/authorize/api/contract/v1/DeleteCustomerShippingAddressResponse.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/DeviceActivationEnum.java b/src/main/java/net/authorize/api/contract/v1/DeviceActivationEnum.java index f7307d4c..e53419b2 100644 --- a/src/main/java/net/authorize/api/contract/v1/DeviceActivationEnum.java +++ b/src/main/java/net/authorize/api/contract/v1/DeviceActivationEnum.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlEnumValue; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/DriversLicenseMaskedType.java b/src/main/java/net/authorize/api/contract/v1/DriversLicenseMaskedType.java index f44fda83..585746b3 100644 --- a/src/main/java/net/authorize/api/contract/v1/DriversLicenseMaskedType.java +++ b/src/main/java/net/authorize/api/contract/v1/DriversLicenseMaskedType.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/DriversLicenseType.java b/src/main/java/net/authorize/api/contract/v1/DriversLicenseType.java index 987e810f..4be68795 100644 --- a/src/main/java/net/authorize/api/contract/v1/DriversLicenseType.java +++ b/src/main/java/net/authorize/api/contract/v1/DriversLicenseType.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/EcheckTypeEnum.java b/src/main/java/net/authorize/api/contract/v1/EcheckTypeEnum.java index b40a3e50..8ce0af5a 100644 --- a/src/main/java/net/authorize/api/contract/v1/EcheckTypeEnum.java +++ b/src/main/java/net/authorize/api/contract/v1/EcheckTypeEnum.java @@ -2,14 +2,14 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/EmailSettingsType.java b/src/main/java/net/authorize/api/contract/v1/EmailSettingsType.java index 1cc88fae..10486851 100644 --- a/src/main/java/net/authorize/api/contract/v1/EmailSettingsType.java +++ b/src/main/java/net/authorize/api/contract/v1/EmailSettingsType.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/EmvTag.java b/src/main/java/net/authorize/api/contract/v1/EmvTag.java index d3d165a7..52a3b276 100644 --- a/src/main/java/net/authorize/api/contract/v1/EmvTag.java +++ b/src/main/java/net/authorize/api/contract/v1/EmvTag.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/EncodingType.java b/src/main/java/net/authorize/api/contract/v1/EncodingType.java index fb7e52aa..5f2a2e8c 100644 --- a/src/main/java/net/authorize/api/contract/v1/EncodingType.java +++ b/src/main/java/net/authorize/api/contract/v1/EncodingType.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlEnumValue; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/EncryptedTrackDataType.java b/src/main/java/net/authorize/api/contract/v1/EncryptedTrackDataType.java index 04735b63..645b3d0c 100644 --- a/src/main/java/net/authorize/api/contract/v1/EncryptedTrackDataType.java +++ b/src/main/java/net/authorize/api/contract/v1/EncryptedTrackDataType.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/EncryptionAlgorithmType.java b/src/main/java/net/authorize/api/contract/v1/EncryptionAlgorithmType.java index 373fe31f..3ca3c288 100644 --- a/src/main/java/net/authorize/api/contract/v1/EncryptionAlgorithmType.java +++ b/src/main/java/net/authorize/api/contract/v1/EncryptionAlgorithmType.java @@ -2,14 +2,14 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/EnumCollection.java b/src/main/java/net/authorize/api/contract/v1/EnumCollection.java index d1c454f7..fb13a116 100644 --- a/src/main/java/net/authorize/api/contract/v1/EnumCollection.java +++ b/src/main/java/net/authorize/api/contract/v1/EnumCollection.java @@ -2,18 +2,18 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/ErrorResponse.java b/src/main/java/net/authorize/api/contract/v1/ErrorResponse.java index f93121a0..0f881552 100644 --- a/src/main/java/net/authorize/api/contract/v1/ErrorResponse.java +++ b/src/main/java/net/authorize/api/contract/v1/ErrorResponse.java @@ -8,10 +8,10 @@ package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/ExtendedAmountType.java b/src/main/java/net/authorize/api/contract/v1/ExtendedAmountType.java index 3b81e17e..3d221c8d 100644 --- a/src/main/java/net/authorize/api/contract/v1/ExtendedAmountType.java +++ b/src/main/java/net/authorize/api/contract/v1/ExtendedAmountType.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/FDSFilterActionEnum.java b/src/main/java/net/authorize/api/contract/v1/FDSFilterActionEnum.java index 01ce162c..0d788ce3 100644 --- a/src/main/java/net/authorize/api/contract/v1/FDSFilterActionEnum.java +++ b/src/main/java/net/authorize/api/contract/v1/FDSFilterActionEnum.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlEnumValue; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/FDSFilterType.java b/src/main/java/net/authorize/api/contract/v1/FDSFilterType.java index c6f74c42..dd251f38 100644 --- a/src/main/java/net/authorize/api/contract/v1/FDSFilterType.java +++ b/src/main/java/net/authorize/api/contract/v1/FDSFilterType.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/FingerPrintSupportInformationType.java b/src/main/java/net/authorize/api/contract/v1/FingerPrintSupportInformationType.java index a42cca16..624f8a2d 100644 --- a/src/main/java/net/authorize/api/contract/v1/FingerPrintSupportInformationType.java +++ b/src/main/java/net/authorize/api/contract/v1/FingerPrintSupportInformationType.java @@ -9,10 +9,10 @@ package net.authorize.api.contract.v1; import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/FingerPrintType.java b/src/main/java/net/authorize/api/contract/v1/FingerPrintType.java index 70f220db..b1738b89 100644 --- a/src/main/java/net/authorize/api/contract/v1/FingerPrintType.java +++ b/src/main/java/net/authorize/api/contract/v1/FingerPrintType.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/FraudInformationType.java b/src/main/java/net/authorize/api/contract/v1/FraudInformationType.java index d5dbe4c2..5e43a2a0 100644 --- a/src/main/java/net/authorize/api/contract/v1/FraudInformationType.java +++ b/src/main/java/net/authorize/api/contract/v1/FraudInformationType.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/GetAUJobDetailsRequest.java b/src/main/java/net/authorize/api/contract/v1/GetAUJobDetailsRequest.java index 9bfd1ab4..b0304a6e 100644 --- a/src/main/java/net/authorize/api/contract/v1/GetAUJobDetailsRequest.java +++ b/src/main/java/net/authorize/api/contract/v1/GetAUJobDetailsRequest.java @@ -2,18 +2,18 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/GetAUJobDetailsResponse.java b/src/main/java/net/authorize/api/contract/v1/GetAUJobDetailsResponse.java index 208ca5a9..024d9fa6 100644 --- a/src/main/java/net/authorize/api/contract/v1/GetAUJobDetailsResponse.java +++ b/src/main/java/net/authorize/api/contract/v1/GetAUJobDetailsResponse.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/GetAUJobSummaryRequest.java b/src/main/java/net/authorize/api/contract/v1/GetAUJobSummaryRequest.java index cf369c7f..0f56c0e8 100644 --- a/src/main/java/net/authorize/api/contract/v1/GetAUJobSummaryRequest.java +++ b/src/main/java/net/authorize/api/contract/v1/GetAUJobSummaryRequest.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/GetAUJobSummaryResponse.java b/src/main/java/net/authorize/api/contract/v1/GetAUJobSummaryResponse.java index 7a927d30..cb3fe2c8 100644 --- a/src/main/java/net/authorize/api/contract/v1/GetAUJobSummaryResponse.java +++ b/src/main/java/net/authorize/api/contract/v1/GetAUJobSummaryResponse.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/GetBatchStatisticsRequest.java b/src/main/java/net/authorize/api/contract/v1/GetBatchStatisticsRequest.java index f2a0915c..3e769a94 100644 --- a/src/main/java/net/authorize/api/contract/v1/GetBatchStatisticsRequest.java +++ b/src/main/java/net/authorize/api/contract/v1/GetBatchStatisticsRequest.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/GetBatchStatisticsResponse.java b/src/main/java/net/authorize/api/contract/v1/GetBatchStatisticsResponse.java index 3621af41..e0ee205d 100644 --- a/src/main/java/net/authorize/api/contract/v1/GetBatchStatisticsResponse.java +++ b/src/main/java/net/authorize/api/contract/v1/GetBatchStatisticsResponse.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/GetCustomerPaymentProfileListRequest.java b/src/main/java/net/authorize/api/contract/v1/GetCustomerPaymentProfileListRequest.java index 85c24f26..5b652775 100644 --- a/src/main/java/net/authorize/api/contract/v1/GetCustomerPaymentProfileListRequest.java +++ b/src/main/java/net/authorize/api/contract/v1/GetCustomerPaymentProfileListRequest.java @@ -2,18 +2,18 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/GetCustomerPaymentProfileListResponse.java b/src/main/java/net/authorize/api/contract/v1/GetCustomerPaymentProfileListResponse.java index 339883bd..63c6c51a 100644 --- a/src/main/java/net/authorize/api/contract/v1/GetCustomerPaymentProfileListResponse.java +++ b/src/main/java/net/authorize/api/contract/v1/GetCustomerPaymentProfileListResponse.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/GetCustomerPaymentProfileNonceRequest.java b/src/main/java/net/authorize/api/contract/v1/GetCustomerPaymentProfileNonceRequest.java index dbf91eea..b165a0d5 100644 --- a/src/main/java/net/authorize/api/contract/v1/GetCustomerPaymentProfileNonceRequest.java +++ b/src/main/java/net/authorize/api/contract/v1/GetCustomerPaymentProfileNonceRequest.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.11.14 at 11:09:15 AM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/GetCustomerPaymentProfileNonceResponse.java b/src/main/java/net/authorize/api/contract/v1/GetCustomerPaymentProfileNonceResponse.java index 9bb6a3a8..c3233503 100644 --- a/src/main/java/net/authorize/api/contract/v1/GetCustomerPaymentProfileNonceResponse.java +++ b/src/main/java/net/authorize/api/contract/v1/GetCustomerPaymentProfileNonceResponse.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.11.14 at 11:09:15 AM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/GetCustomerPaymentProfileRequest.java b/src/main/java/net/authorize/api/contract/v1/GetCustomerPaymentProfileRequest.java index 0f0ed998..a0bfb648 100644 --- a/src/main/java/net/authorize/api/contract/v1/GetCustomerPaymentProfileRequest.java +++ b/src/main/java/net/authorize/api/contract/v1/GetCustomerPaymentProfileRequest.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/GetCustomerPaymentProfileResponse.java b/src/main/java/net/authorize/api/contract/v1/GetCustomerPaymentProfileResponse.java index 63fc015f..5d69d573 100644 --- a/src/main/java/net/authorize/api/contract/v1/GetCustomerPaymentProfileResponse.java +++ b/src/main/java/net/authorize/api/contract/v1/GetCustomerPaymentProfileResponse.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/GetCustomerProfileIdsRequest.java b/src/main/java/net/authorize/api/contract/v1/GetCustomerProfileIdsRequest.java index 04642bb7..1509e857 100644 --- a/src/main/java/net/authorize/api/contract/v1/GetCustomerProfileIdsRequest.java +++ b/src/main/java/net/authorize/api/contract/v1/GetCustomerProfileIdsRequest.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/GetCustomerProfileIdsResponse.java b/src/main/java/net/authorize/api/contract/v1/GetCustomerProfileIdsResponse.java index e78add20..b5a03574 100644 --- a/src/main/java/net/authorize/api/contract/v1/GetCustomerProfileIdsResponse.java +++ b/src/main/java/net/authorize/api/contract/v1/GetCustomerProfileIdsResponse.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/GetCustomerProfileRequest.java b/src/main/java/net/authorize/api/contract/v1/GetCustomerProfileRequest.java index 842fb0ae..4f5d854d 100644 --- a/src/main/java/net/authorize/api/contract/v1/GetCustomerProfileRequest.java +++ b/src/main/java/net/authorize/api/contract/v1/GetCustomerProfileRequest.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/GetCustomerProfileResponse.java b/src/main/java/net/authorize/api/contract/v1/GetCustomerProfileResponse.java index a6c55862..86deba94 100644 --- a/src/main/java/net/authorize/api/contract/v1/GetCustomerProfileResponse.java +++ b/src/main/java/net/authorize/api/contract/v1/GetCustomerProfileResponse.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/GetCustomerShippingAddressRequest.java b/src/main/java/net/authorize/api/contract/v1/GetCustomerShippingAddressRequest.java index bf5cfa29..a1aaacab 100644 --- a/src/main/java/net/authorize/api/contract/v1/GetCustomerShippingAddressRequest.java +++ b/src/main/java/net/authorize/api/contract/v1/GetCustomerShippingAddressRequest.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/GetCustomerShippingAddressResponse.java b/src/main/java/net/authorize/api/contract/v1/GetCustomerShippingAddressResponse.java index 3738786a..03c4821e 100644 --- a/src/main/java/net/authorize/api/contract/v1/GetCustomerShippingAddressResponse.java +++ b/src/main/java/net/authorize/api/contract/v1/GetCustomerShippingAddressResponse.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/GetHostedPaymentPageRequest.java b/src/main/java/net/authorize/api/contract/v1/GetHostedPaymentPageRequest.java index ca85d4fc..7d2996ca 100644 --- a/src/main/java/net/authorize/api/contract/v1/GetHostedPaymentPageRequest.java +++ b/src/main/java/net/authorize/api/contract/v1/GetHostedPaymentPageRequest.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/GetHostedPaymentPageResponse.java b/src/main/java/net/authorize/api/contract/v1/GetHostedPaymentPageResponse.java index 11139c70..f2cd12e6 100644 --- a/src/main/java/net/authorize/api/contract/v1/GetHostedPaymentPageResponse.java +++ b/src/main/java/net/authorize/api/contract/v1/GetHostedPaymentPageResponse.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/GetHostedProfilePageRequest.java b/src/main/java/net/authorize/api/contract/v1/GetHostedProfilePageRequest.java index a53e4583..86c899c9 100644 --- a/src/main/java/net/authorize/api/contract/v1/GetHostedProfilePageRequest.java +++ b/src/main/java/net/authorize/api/contract/v1/GetHostedProfilePageRequest.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/GetHostedProfilePageResponse.java b/src/main/java/net/authorize/api/contract/v1/GetHostedProfilePageResponse.java index 46cf3ac6..d5a68165 100644 --- a/src/main/java/net/authorize/api/contract/v1/GetHostedProfilePageResponse.java +++ b/src/main/java/net/authorize/api/contract/v1/GetHostedProfilePageResponse.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/GetMerchantDetailsRequest.java b/src/main/java/net/authorize/api/contract/v1/GetMerchantDetailsRequest.java index a2957aa8..538375d3 100644 --- a/src/main/java/net/authorize/api/contract/v1/GetMerchantDetailsRequest.java +++ b/src/main/java/net/authorize/api/contract/v1/GetMerchantDetailsRequest.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/GetMerchantDetailsResponse.java b/src/main/java/net/authorize/api/contract/v1/GetMerchantDetailsResponse.java index 04c79129..96dccf77 100644 --- a/src/main/java/net/authorize/api/contract/v1/GetMerchantDetailsResponse.java +++ b/src/main/java/net/authorize/api/contract/v1/GetMerchantDetailsResponse.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.11.14 at 11:09:15 AM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/GetSettledBatchListRequest.java b/src/main/java/net/authorize/api/contract/v1/GetSettledBatchListRequest.java index 81d480fc..b4916971 100644 --- a/src/main/java/net/authorize/api/contract/v1/GetSettledBatchListRequest.java +++ b/src/main/java/net/authorize/api/contract/v1/GetSettledBatchListRequest.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; diff --git a/src/main/java/net/authorize/api/contract/v1/GetSettledBatchListResponse.java b/src/main/java/net/authorize/api/contract/v1/GetSettledBatchListResponse.java index a5cf3672..595661ef 100644 --- a/src/main/java/net/authorize/api/contract/v1/GetSettledBatchListResponse.java +++ b/src/main/java/net/authorize/api/contract/v1/GetSettledBatchListResponse.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/GetTransactionDetailsRequest.java b/src/main/java/net/authorize/api/contract/v1/GetTransactionDetailsRequest.java index b045a622..fefbc46e 100644 --- a/src/main/java/net/authorize/api/contract/v1/GetTransactionDetailsRequest.java +++ b/src/main/java/net/authorize/api/contract/v1/GetTransactionDetailsRequest.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/GetTransactionDetailsResponse.java b/src/main/java/net/authorize/api/contract/v1/GetTransactionDetailsResponse.java index 3ea8a941..ae03de49 100644 --- a/src/main/java/net/authorize/api/contract/v1/GetTransactionDetailsResponse.java +++ b/src/main/java/net/authorize/api/contract/v1/GetTransactionDetailsResponse.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/GetTransactionListForCustomerRequest.java b/src/main/java/net/authorize/api/contract/v1/GetTransactionListForCustomerRequest.java index 9a3014ef..0482b8c3 100644 --- a/src/main/java/net/authorize/api/contract/v1/GetTransactionListForCustomerRequest.java +++ b/src/main/java/net/authorize/api/contract/v1/GetTransactionListForCustomerRequest.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/GetTransactionListRequest.java b/src/main/java/net/authorize/api/contract/v1/GetTransactionListRequest.java index efe6d300..e118da0d 100644 --- a/src/main/java/net/authorize/api/contract/v1/GetTransactionListRequest.java +++ b/src/main/java/net/authorize/api/contract/v1/GetTransactionListRequest.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/GetTransactionListResponse.java b/src/main/java/net/authorize/api/contract/v1/GetTransactionListResponse.java index 20514663..cd4867eb 100644 --- a/src/main/java/net/authorize/api/contract/v1/GetTransactionListResponse.java +++ b/src/main/java/net/authorize/api/contract/v1/GetTransactionListResponse.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/GetUnsettledTransactionListRequest.java b/src/main/java/net/authorize/api/contract/v1/GetUnsettledTransactionListRequest.java index 8cc02dd5..ea042977 100644 --- a/src/main/java/net/authorize/api/contract/v1/GetUnsettledTransactionListRequest.java +++ b/src/main/java/net/authorize/api/contract/v1/GetUnsettledTransactionListRequest.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/GetUnsettledTransactionListResponse.java b/src/main/java/net/authorize/api/contract/v1/GetUnsettledTransactionListResponse.java index 274c95b0..e568cf42 100644 --- a/src/main/java/net/authorize/api/contract/v1/GetUnsettledTransactionListResponse.java +++ b/src/main/java/net/authorize/api/contract/v1/GetUnsettledTransactionListResponse.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/HeldTransactionRequestType.java b/src/main/java/net/authorize/api/contract/v1/HeldTransactionRequestType.java index e5fe3b7a..4f122894 100644 --- a/src/main/java/net/authorize/api/contract/v1/HeldTransactionRequestType.java +++ b/src/main/java/net/authorize/api/contract/v1/HeldTransactionRequestType.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -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; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/ImpersonationAuthenticationType.java b/src/main/java/net/authorize/api/contract/v1/ImpersonationAuthenticationType.java index d8af02d2..976e4156 100644 --- a/src/main/java/net/authorize/api/contract/v1/ImpersonationAuthenticationType.java +++ b/src/main/java/net/authorize/api/contract/v1/ImpersonationAuthenticationType.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/IsAliveRequest.java b/src/main/java/net/authorize/api/contract/v1/IsAliveRequest.java index 4b8c0d42..3fc060b6 100644 --- a/src/main/java/net/authorize/api/contract/v1/IsAliveRequest.java +++ b/src/main/java/net/authorize/api/contract/v1/IsAliveRequest.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/IsAliveResponse.java b/src/main/java/net/authorize/api/contract/v1/IsAliveResponse.java index bc853d21..6ab3ea29 100644 --- a/src/main/java/net/authorize/api/contract/v1/IsAliveResponse.java +++ b/src/main/java/net/authorize/api/contract/v1/IsAliveResponse.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/KeyBlock.java b/src/main/java/net/authorize/api/contract/v1/KeyBlock.java index 1e521573..70e3bd10 100644 --- a/src/main/java/net/authorize/api/contract/v1/KeyBlock.java +++ b/src/main/java/net/authorize/api/contract/v1/KeyBlock.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/KeyManagementScheme.java b/src/main/java/net/authorize/api/contract/v1/KeyManagementScheme.java index 6526bbe3..6c62e807 100644 --- a/src/main/java/net/authorize/api/contract/v1/KeyManagementScheme.java +++ b/src/main/java/net/authorize/api/contract/v1/KeyManagementScheme.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -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; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/KeyValue.java b/src/main/java/net/authorize/api/contract/v1/KeyValue.java index c2229604..ca86768b 100644 --- a/src/main/java/net/authorize/api/contract/v1/KeyValue.java +++ b/src/main/java/net/authorize/api/contract/v1/KeyValue.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -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; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/LineItemType.java b/src/main/java/net/authorize/api/contract/v1/LineItemType.java index 415f909e..10f9b4c4 100644 --- a/src/main/java/net/authorize/api/contract/v1/LineItemType.java +++ b/src/main/java/net/authorize/api/contract/v1/LineItemType.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.11.14 at 11:09:15 AM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; /** @@ -139,7 +139,7 @@ * <element name="productCode" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> - * <maxLength value="15"/> + * <maxLength value="30"/> * </restriction> * </simpleType> * </element> diff --git a/src/main/java/net/authorize/api/contract/v1/ListOfAUDetailsType.java b/src/main/java/net/authorize/api/contract/v1/ListOfAUDetailsType.java index 81927bbf..43bdbd0c 100644 --- a/src/main/java/net/authorize/api/contract/v1/ListOfAUDetailsType.java +++ b/src/main/java/net/authorize/api/contract/v1/ListOfAUDetailsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // @@ -10,11 +10,11 @@ import java.util.ArrayList; import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElements; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlElements; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/LogoutRequest.java b/src/main/java/net/authorize/api/contract/v1/LogoutRequest.java index 805d7c4b..d0606e94 100644 --- a/src/main/java/net/authorize/api/contract/v1/LogoutRequest.java +++ b/src/main/java/net/authorize/api/contract/v1/LogoutRequest.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/LogoutResponse.java b/src/main/java/net/authorize/api/contract/v1/LogoutResponse.java index 5d07109b..068f6bb8 100644 --- a/src/main/java/net/authorize/api/contract/v1/LogoutResponse.java +++ b/src/main/java/net/authorize/api/contract/v1/LogoutResponse.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/MerchantAuthenticationType.java b/src/main/java/net/authorize/api/contract/v1/MerchantAuthenticationType.java index 261dffc6..72bda15a 100644 --- a/src/main/java/net/authorize/api/contract/v1/MerchantAuthenticationType.java +++ b/src/main/java/net/authorize/api/contract/v1/MerchantAuthenticationType.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/MerchantContactType.java b/src/main/java/net/authorize/api/contract/v1/MerchantContactType.java index 1a4a6ab0..46af9f60 100644 --- a/src/main/java/net/authorize/api/contract/v1/MerchantContactType.java +++ b/src/main/java/net/authorize/api/contract/v1/MerchantContactType.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/MerchantInitTransReasonEnum.java b/src/main/java/net/authorize/api/contract/v1/MerchantInitTransReasonEnum.java index 1e6a498a..1875a52c 100644 --- a/src/main/java/net/authorize/api/contract/v1/MerchantInitTransReasonEnum.java +++ b/src/main/java/net/authorize/api/contract/v1/MerchantInitTransReasonEnum.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.11.14 at 11:09:15 AM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlEnumValue; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/MessageTypeEnum.java b/src/main/java/net/authorize/api/contract/v1/MessageTypeEnum.java index 6b39caa8..963d244d 100644 --- a/src/main/java/net/authorize/api/contract/v1/MessageTypeEnum.java +++ b/src/main/java/net/authorize/api/contract/v1/MessageTypeEnum.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlEnumValue; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/MessagesType.java b/src/main/java/net/authorize/api/contract/v1/MessagesType.java index 96e94656..87e9ba25 100644 --- a/src/main/java/net/authorize/api/contract/v1/MessagesType.java +++ b/src/main/java/net/authorize/api/contract/v1/MessagesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // @@ -10,11 +10,11 @@ import java.util.ArrayList; import java.util.List; -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; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/MobileDeviceLoginRequest.java b/src/main/java/net/authorize/api/contract/v1/MobileDeviceLoginRequest.java index 5aebff44..dd2f889d 100644 --- a/src/main/java/net/authorize/api/contract/v1/MobileDeviceLoginRequest.java +++ b/src/main/java/net/authorize/api/contract/v1/MobileDeviceLoginRequest.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/MobileDeviceLoginResponse.java b/src/main/java/net/authorize/api/contract/v1/MobileDeviceLoginResponse.java index 15ab3495..cb461a89 100644 --- a/src/main/java/net/authorize/api/contract/v1/MobileDeviceLoginResponse.java +++ b/src/main/java/net/authorize/api/contract/v1/MobileDeviceLoginResponse.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/MobileDeviceRegistrationRequest.java b/src/main/java/net/authorize/api/contract/v1/MobileDeviceRegistrationRequest.java index 32c7951f..ad5ee75e 100644 --- a/src/main/java/net/authorize/api/contract/v1/MobileDeviceRegistrationRequest.java +++ b/src/main/java/net/authorize/api/contract/v1/MobileDeviceRegistrationRequest.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/MobileDeviceRegistrationResponse.java b/src/main/java/net/authorize/api/contract/v1/MobileDeviceRegistrationResponse.java index eea96904..90ecbd9d 100644 --- a/src/main/java/net/authorize/api/contract/v1/MobileDeviceRegistrationResponse.java +++ b/src/main/java/net/authorize/api/contract/v1/MobileDeviceRegistrationResponse.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/MobileDeviceType.java b/src/main/java/net/authorize/api/contract/v1/MobileDeviceType.java index b21b1040..7316183a 100644 --- a/src/main/java/net/authorize/api/contract/v1/MobileDeviceType.java +++ b/src/main/java/net/authorize/api/contract/v1/MobileDeviceType.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -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; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/NameAndAddressType.java b/src/main/java/net/authorize/api/contract/v1/NameAndAddressType.java index b8632525..db04f350 100644 --- a/src/main/java/net/authorize/api/contract/v1/NameAndAddressType.java +++ b/src/main/java/net/authorize/api/contract/v1/NameAndAddressType.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/ObjectFactory.java b/src/main/java/net/authorize/api/contract/v1/ObjectFactory.java index fce41cf2..34a54b2b 100644 --- a/src/main/java/net/authorize/api/contract/v1/ObjectFactory.java +++ b/src/main/java/net/authorize/api/contract/v1/ObjectFactory.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.11.14 at 11:09:15 AM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; +import jakarta.xml.bind.JAXBElement; +import jakarta.xml.bind.annotation.XmlElementDecl; +import jakarta.xml.bind.annotation.XmlRegistry; import javax.xml.namespace.QName; @@ -1464,6 +1464,14 @@ public PaymentEmvType createPaymentEmvType() { return new PaymentEmvType(); } + /** + * Create an instance of {@link AuthorizationIndicatorType } + * + */ + public AuthorizationIndicatorType createAuthorizationIndicatorType() { + return new AuthorizationIndicatorType(); + } + /** * Create an instance of {@link SubMerchantType } * diff --git a/src/main/java/net/authorize/api/contract/v1/OpaqueDataType.java b/src/main/java/net/authorize/api/contract/v1/OpaqueDataType.java index 9761a98d..589da42f 100644 --- a/src/main/java/net/authorize/api/contract/v1/OpaqueDataType.java +++ b/src/main/java/net/authorize/api/contract/v1/OpaqueDataType.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.11.14 at 11:09:15 AM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -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; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; diff --git a/src/main/java/net/authorize/api/contract/v1/OperationType.java b/src/main/java/net/authorize/api/contract/v1/OperationType.java index a705b9d9..1a36dc22 100644 --- a/src/main/java/net/authorize/api/contract/v1/OperationType.java +++ b/src/main/java/net/authorize/api/contract/v1/OperationType.java @@ -2,14 +2,14 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/OrderExType.java b/src/main/java/net/authorize/api/contract/v1/OrderExType.java index 1840eb7e..1f7c0abb 100644 --- a/src/main/java/net/authorize/api/contract/v1/OrderExType.java +++ b/src/main/java/net/authorize/api/contract/v1/OrderExType.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/OrderType.java b/src/main/java/net/authorize/api/contract/v1/OrderType.java index 41ed91dd..dd87eaa1 100644 --- a/src/main/java/net/authorize/api/contract/v1/OrderType.java +++ b/src/main/java/net/authorize/api/contract/v1/OrderType.java @@ -2,18 +2,18 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.11.14 at 11:09:15 AM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; diff --git a/src/main/java/net/authorize/api/contract/v1/OtherTaxType.java b/src/main/java/net/authorize/api/contract/v1/OtherTaxType.java index 43e3121c..c9bfe589 100644 --- a/src/main/java/net/authorize/api/contract/v1/OtherTaxType.java +++ b/src/main/java/net/authorize/api/contract/v1/OtherTaxType.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.11.14 at 11:09:15 AM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/Paging.java b/src/main/java/net/authorize/api/contract/v1/Paging.java index 2b43640f..97fc9454 100644 --- a/src/main/java/net/authorize/api/contract/v1/Paging.java +++ b/src/main/java/net/authorize/api/contract/v1/Paging.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/PayPalType.java b/src/main/java/net/authorize/api/contract/v1/PayPalType.java index 8e41501d..2a4eea68 100644 --- a/src/main/java/net/authorize/api/contract/v1/PayPalType.java +++ b/src/main/java/net/authorize/api/contract/v1/PayPalType.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/PaymentDetails.java b/src/main/java/net/authorize/api/contract/v1/PaymentDetails.java index 968e3379..227a2cdb 100644 --- a/src/main/java/net/authorize/api/contract/v1/PaymentDetails.java +++ b/src/main/java/net/authorize/api/contract/v1/PaymentDetails.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/PaymentEmvType.java b/src/main/java/net/authorize/api/contract/v1/PaymentEmvType.java index 298d6ba7..904a7a76 100644 --- a/src/main/java/net/authorize/api/contract/v1/PaymentEmvType.java +++ b/src/main/java/net/authorize/api/contract/v1/PaymentEmvType.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/PaymentMaskedType.java b/src/main/java/net/authorize/api/contract/v1/PaymentMaskedType.java index 9adc92a1..d412f0ab 100644 --- a/src/main/java/net/authorize/api/contract/v1/PaymentMaskedType.java +++ b/src/main/java/net/authorize/api/contract/v1/PaymentMaskedType.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/PaymentMethodEnum.java b/src/main/java/net/authorize/api/contract/v1/PaymentMethodEnum.java index 5afb81c6..2be3248f 100644 --- a/src/main/java/net/authorize/api/contract/v1/PaymentMethodEnum.java +++ b/src/main/java/net/authorize/api/contract/v1/PaymentMethodEnum.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlEnumValue; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/PaymentMethodsTypeEnum.java b/src/main/java/net/authorize/api/contract/v1/PaymentMethodsTypeEnum.java index d1cdede0..1dff715f 100644 --- a/src/main/java/net/authorize/api/contract/v1/PaymentMethodsTypeEnum.java +++ b/src/main/java/net/authorize/api/contract/v1/PaymentMethodsTypeEnum.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlEnumValue; +import jakarta.xml.bind.annotation.XmlType; /** @@ -33,6 +33,7 @@ * <enumeration value="VisaCheckout"/> * <enumeration value="ApplePay"/> * <enumeration value="AndroidPay"/> + * <enumeration value="GooglePay"/> * </restriction> * </simpleType> * @@ -64,7 +65,9 @@ public enum PaymentMethodsTypeEnum { @XmlEnumValue("ApplePay") APPLE_PAY("ApplePay"), @XmlEnumValue("AndroidPay") - ANDROID_PAY("AndroidPay"); + ANDROID_PAY("AndroidPay"), + @XmlEnumValue("GooglePay") + GOOGLE_PAY("GooglePay"); private final String value; PaymentMethodsTypeEnum(String v) { diff --git a/src/main/java/net/authorize/api/contract/v1/PaymentProfile.java b/src/main/java/net/authorize/api/contract/v1/PaymentProfile.java index 3906fa85..a8425167 100644 --- a/src/main/java/net/authorize/api/contract/v1/PaymentProfile.java +++ b/src/main/java/net/authorize/api/contract/v1/PaymentProfile.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/PaymentScheduleType.java b/src/main/java/net/authorize/api/contract/v1/PaymentScheduleType.java index a1e2d00a..ce3245a6 100644 --- a/src/main/java/net/authorize/api/contract/v1/PaymentScheduleType.java +++ b/src/main/java/net/authorize/api/contract/v1/PaymentScheduleType.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -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; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; diff --git a/src/main/java/net/authorize/api/contract/v1/PaymentSimpleType.java b/src/main/java/net/authorize/api/contract/v1/PaymentSimpleType.java index f4c23ca9..721d1cd0 100644 --- a/src/main/java/net/authorize/api/contract/v1/PaymentSimpleType.java +++ b/src/main/java/net/authorize/api/contract/v1/PaymentSimpleType.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/PaymentType.java b/src/main/java/net/authorize/api/contract/v1/PaymentType.java index cbb280f9..f182ef3e 100644 --- a/src/main/java/net/authorize/api/contract/v1/PaymentType.java +++ b/src/main/java/net/authorize/api/contract/v1/PaymentType.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/PermissionType.java b/src/main/java/net/authorize/api/contract/v1/PermissionType.java index 62aea276..8d2248f3 100644 --- a/src/main/java/net/authorize/api/contract/v1/PermissionType.java +++ b/src/main/java/net/authorize/api/contract/v1/PermissionType.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/PermissionsEnum.java b/src/main/java/net/authorize/api/contract/v1/PermissionsEnum.java index c729bf45..4f1ec54b 100644 --- a/src/main/java/net/authorize/api/contract/v1/PermissionsEnum.java +++ b/src/main/java/net/authorize/api/contract/v1/PermissionsEnum.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlEnumValue; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/ProcessingOptions.java b/src/main/java/net/authorize/api/contract/v1/ProcessingOptions.java index c46b0ea0..c47fa6c4 100644 --- a/src/main/java/net/authorize/api/contract/v1/ProcessingOptions.java +++ b/src/main/java/net/authorize/api/contract/v1/ProcessingOptions.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.11.14 at 11:09:15 AM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/ProcessorType.java b/src/main/java/net/authorize/api/contract/v1/ProcessorType.java index b5b4b810..46e7d6bf 100644 --- a/src/main/java/net/authorize/api/contract/v1/ProcessorType.java +++ b/src/main/java/net/authorize/api/contract/v1/ProcessorType.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/ProfileTransAmountType.java b/src/main/java/net/authorize/api/contract/v1/ProfileTransAmountType.java index 7bd867af..2ad82594 100644 --- a/src/main/java/net/authorize/api/contract/v1/ProfileTransAmountType.java +++ b/src/main/java/net/authorize/api/contract/v1/ProfileTransAmountType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // @@ -11,11 +11,11 @@ import java.math.BigDecimal; import java.util.ArrayList; import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/ProfileTransAuthCaptureType.java b/src/main/java/net/authorize/api/contract/v1/ProfileTransAuthCaptureType.java index ea2dae6b..33dad2ca 100644 --- a/src/main/java/net/authorize/api/contract/v1/ProfileTransAuthCaptureType.java +++ b/src/main/java/net/authorize/api/contract/v1/ProfileTransAuthCaptureType.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/ProfileTransAuthOnlyType.java b/src/main/java/net/authorize/api/contract/v1/ProfileTransAuthOnlyType.java index 020503a0..019158c4 100644 --- a/src/main/java/net/authorize/api/contract/v1/ProfileTransAuthOnlyType.java +++ b/src/main/java/net/authorize/api/contract/v1/ProfileTransAuthOnlyType.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/ProfileTransCaptureOnlyType.java b/src/main/java/net/authorize/api/contract/v1/ProfileTransCaptureOnlyType.java index a6581871..7c69e367 100644 --- a/src/main/java/net/authorize/api/contract/v1/ProfileTransCaptureOnlyType.java +++ b/src/main/java/net/authorize/api/contract/v1/ProfileTransCaptureOnlyType.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/ProfileTransOrderType.java b/src/main/java/net/authorize/api/contract/v1/ProfileTransOrderType.java index aef9be31..55eee30d 100644 --- a/src/main/java/net/authorize/api/contract/v1/ProfileTransOrderType.java +++ b/src/main/java/net/authorize/api/contract/v1/ProfileTransOrderType.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.11.14 at 11:09:15 AM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; /** @@ -35,6 +35,7 @@ * <element name="splitTenderId" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}numericString" minOccurs="0"/> * <element name="processingOptions" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}processingOptions" minOccurs="0"/> * <element name="subsequentAuthInformation" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}subsequentAuthInformation" minOccurs="0"/> + * <element name="authorizationIndicatorType" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}authorizationIndicatorType" minOccurs="0"/> * </sequence> * </extension> * </complexContent> @@ -54,7 +55,8 @@ "cardCode", "splitTenderId", "processingOptions", - "subsequentAuthInformation" + "subsequentAuthInformation", + "authorizationIndicatorType" }) @XmlSeeAlso({ ProfileTransAuthCaptureType.class, @@ -77,6 +79,7 @@ public class ProfileTransOrderType protected String splitTenderId; protected ProcessingOptions processingOptions; protected SubsequentAuthInformation subsequentAuthInformation; + protected AuthorizationIndicatorType authorizationIndicatorType; /** * Gets the value of the customerProfileId property. @@ -318,4 +321,28 @@ public void setSubsequentAuthInformation(SubsequentAuthInformation value) { this.subsequentAuthInformation = value; } + /** + * Gets the value of the authorizationIndicatorType property. + * + * @return + * possible object is + * {@link AuthorizationIndicatorType } + * + */ + public AuthorizationIndicatorType getAuthorizationIndicatorType() { + return authorizationIndicatorType; + } + + /** + * Sets the value of the authorizationIndicatorType property. + * + * @param value + * allowed object is + * {@link AuthorizationIndicatorType } + * + */ + public void setAuthorizationIndicatorType(AuthorizationIndicatorType value) { + this.authorizationIndicatorType = value; + } + } diff --git a/src/main/java/net/authorize/api/contract/v1/ProfileTransPriorAuthCaptureType.java b/src/main/java/net/authorize/api/contract/v1/ProfileTransPriorAuthCaptureType.java index d8707588..a97883d1 100644 --- a/src/main/java/net/authorize/api/contract/v1/ProfileTransPriorAuthCaptureType.java +++ b/src/main/java/net/authorize/api/contract/v1/ProfileTransPriorAuthCaptureType.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/ProfileTransRefundType.java b/src/main/java/net/authorize/api/contract/v1/ProfileTransRefundType.java index 8df16dcf..2aab698e 100644 --- a/src/main/java/net/authorize/api/contract/v1/ProfileTransRefundType.java +++ b/src/main/java/net/authorize/api/contract/v1/ProfileTransRefundType.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/ProfileTransVoidType.java b/src/main/java/net/authorize/api/contract/v1/ProfileTransVoidType.java index aadd025e..c7402320 100644 --- a/src/main/java/net/authorize/api/contract/v1/ProfileTransVoidType.java +++ b/src/main/java/net/authorize/api/contract/v1/ProfileTransVoidType.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/ProfileTransactionType.java b/src/main/java/net/authorize/api/contract/v1/ProfileTransactionType.java index 3f3b5671..a077700a 100644 --- a/src/main/java/net/authorize/api/contract/v1/ProfileTransactionType.java +++ b/src/main/java/net/authorize/api/contract/v1/ProfileTransactionType.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/ReturnedItemType.java b/src/main/java/net/authorize/api/contract/v1/ReturnedItemType.java index 24bf1172..7e79e572 100644 --- a/src/main/java/net/authorize/api/contract/v1/ReturnedItemType.java +++ b/src/main/java/net/authorize/api/contract/v1/ReturnedItemType.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -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; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; diff --git a/src/main/java/net/authorize/api/contract/v1/SearchCriteriaCustomerProfileType.java b/src/main/java/net/authorize/api/contract/v1/SearchCriteriaCustomerProfileType.java index 7538ecac..564d1752 100644 --- a/src/main/java/net/authorize/api/contract/v1/SearchCriteriaCustomerProfileType.java +++ b/src/main/java/net/authorize/api/contract/v1/SearchCriteriaCustomerProfileType.java @@ -8,11 +8,11 @@ package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/SecurePaymentContainerErrorType.java b/src/main/java/net/authorize/api/contract/v1/SecurePaymentContainerErrorType.java index 038980b3..03e6bbc0 100644 --- a/src/main/java/net/authorize/api/contract/v1/SecurePaymentContainerErrorType.java +++ b/src/main/java/net/authorize/api/contract/v1/SecurePaymentContainerErrorType.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/SecurePaymentContainerRequest.java b/src/main/java/net/authorize/api/contract/v1/SecurePaymentContainerRequest.java index ea443394..7e20bbb0 100644 --- a/src/main/java/net/authorize/api/contract/v1/SecurePaymentContainerRequest.java +++ b/src/main/java/net/authorize/api/contract/v1/SecurePaymentContainerRequest.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/SecurePaymentContainerResponse.java b/src/main/java/net/authorize/api/contract/v1/SecurePaymentContainerResponse.java index eaeb7e63..d71a830c 100644 --- a/src/main/java/net/authorize/api/contract/v1/SecurePaymentContainerResponse.java +++ b/src/main/java/net/authorize/api/contract/v1/SecurePaymentContainerResponse.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/SendCustomerTransactionReceiptRequest.java b/src/main/java/net/authorize/api/contract/v1/SendCustomerTransactionReceiptRequest.java index 56f309de..c090472c 100644 --- a/src/main/java/net/authorize/api/contract/v1/SendCustomerTransactionReceiptRequest.java +++ b/src/main/java/net/authorize/api/contract/v1/SendCustomerTransactionReceiptRequest.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/SendCustomerTransactionReceiptResponse.java b/src/main/java/net/authorize/api/contract/v1/SendCustomerTransactionReceiptResponse.java index a1030af5..2778c26e 100644 --- a/src/main/java/net/authorize/api/contract/v1/SendCustomerTransactionReceiptResponse.java +++ b/src/main/java/net/authorize/api/contract/v1/SendCustomerTransactionReceiptResponse.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/SettingNameEnum.java b/src/main/java/net/authorize/api/contract/v1/SettingNameEnum.java index 392115a4..9583a566 100644 --- a/src/main/java/net/authorize/api/contract/v1/SettingNameEnum.java +++ b/src/main/java/net/authorize/api/contract/v1/SettingNameEnum.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlEnumValue; +import jakarta.xml.bind.annotation.XmlType; /** @@ -52,6 +52,7 @@ * <enumeration value="typeEmailReceipt"/> * <enumeration value="hostedProfilePaymentOptions"/> * <enumeration value="hostedProfileSaveButtonText"/> + * <enumeration value="hostedPaymentVisaCheckoutOptions"/> * </restriction> * </simpleType> * @@ -296,7 +297,14 @@ public enum SettingNameEnum { * */ @XmlEnumValue("hostedProfileSaveButtonText") - HOSTED_PROFILE_SAVE_BUTTON_TEXT("hostedProfileSaveButtonText"); + HOSTED_PROFILE_SAVE_BUTTON_TEXT("hostedProfileSaveButtonText"), + + /** + * string. Used by getHostedPaymentPage method to accept VisaCheckout configuration. + * + */ + @XmlEnumValue("hostedPaymentVisaCheckoutOptions") + HOSTED_PAYMENT_VISA_CHECKOUT_OPTIONS("hostedPaymentVisaCheckoutOptions"); private final String value; SettingNameEnum(String v) { diff --git a/src/main/java/net/authorize/api/contract/v1/SettingType.java b/src/main/java/net/authorize/api/contract/v1/SettingType.java index c12c76d4..a1421947 100644 --- a/src/main/java/net/authorize/api/contract/v1/SettingType.java +++ b/src/main/java/net/authorize/api/contract/v1/SettingType.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/SettlementStateEnum.java b/src/main/java/net/authorize/api/contract/v1/SettlementStateEnum.java index 9839fec4..953807d1 100644 --- a/src/main/java/net/authorize/api/contract/v1/SettlementStateEnum.java +++ b/src/main/java/net/authorize/api/contract/v1/SettlementStateEnum.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlEnumValue; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/SolutionType.java b/src/main/java/net/authorize/api/contract/v1/SolutionType.java index 62effdc0..267ca8ac 100644 --- a/src/main/java/net/authorize/api/contract/v1/SolutionType.java +++ b/src/main/java/net/authorize/api/contract/v1/SolutionType.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/SplitTenderStatusEnum.java b/src/main/java/net/authorize/api/contract/v1/SplitTenderStatusEnum.java index 01f14f7f..6a20e30c 100644 --- a/src/main/java/net/authorize/api/contract/v1/SplitTenderStatusEnum.java +++ b/src/main/java/net/authorize/api/contract/v1/SplitTenderStatusEnum.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlEnumValue; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/SubMerchantType.java b/src/main/java/net/authorize/api/contract/v1/SubMerchantType.java index 03331e43..02a9e8c7 100644 --- a/src/main/java/net/authorize/api/contract/v1/SubMerchantType.java +++ b/src/main/java/net/authorize/api/contract/v1/SubMerchantType.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/SubscriptionCustomerProfileType.java b/src/main/java/net/authorize/api/contract/v1/SubscriptionCustomerProfileType.java index 47d6c805..f00517ea 100644 --- a/src/main/java/net/authorize/api/contract/v1/SubscriptionCustomerProfileType.java +++ b/src/main/java/net/authorize/api/contract/v1/SubscriptionCustomerProfileType.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/SubscriptionDetail.java b/src/main/java/net/authorize/api/contract/v1/SubscriptionDetail.java index 729b86ec..ae10faf7 100644 --- a/src/main/java/net/authorize/api/contract/v1/SubscriptionDetail.java +++ b/src/main/java/net/authorize/api/contract/v1/SubscriptionDetail.java @@ -2,18 +2,18 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; import java.math.BigDecimal; -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; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; diff --git a/src/main/java/net/authorize/api/contract/v1/SubscriptionIdList.java b/src/main/java/net/authorize/api/contract/v1/SubscriptionIdList.java index 8faedb86..7720b6be 100644 --- a/src/main/java/net/authorize/api/contract/v1/SubscriptionIdList.java +++ b/src/main/java/net/authorize/api/contract/v1/SubscriptionIdList.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // @@ -10,9 +10,9 @@ import java.util.ArrayList; import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/SubscriptionPaymentType.java b/src/main/java/net/authorize/api/contract/v1/SubscriptionPaymentType.java index a74ab68c..0e41a0fa 100644 --- a/src/main/java/net/authorize/api/contract/v1/SubscriptionPaymentType.java +++ b/src/main/java/net/authorize/api/contract/v1/SubscriptionPaymentType.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/SubsequentAuthInformation.java b/src/main/java/net/authorize/api/contract/v1/SubsequentAuthInformation.java index 60a896b0..05f26a72 100644 --- a/src/main/java/net/authorize/api/contract/v1/SubsequentAuthInformation.java +++ b/src/main/java/net/authorize/api/contract/v1/SubsequentAuthInformation.java @@ -2,16 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.11.14 at 11:09:15 AM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; +import java.math.BigDecimal; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; /** @@ -25,6 +26,14 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="originalNetworkTransId" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}networkTransId" minOccurs="0"/> + * <element name="originalAuthAmount" minOccurs="0"> + * <simpleType> + * <restriction base="{http://www.w3.org/2001/XMLSchema}decimal"> + * <minInclusive value="0.00"/> + * <fractionDigits value="4"/> + * </restriction> + * </simpleType> + * </element> * <element name="reason" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}merchantInitTransReasonEnum" minOccurs="0"/> * </sequence> * </restriction> @@ -37,11 +46,13 @@ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "subsequentAuthInformation", propOrder = { "originalNetworkTransId", + "originalAuthAmount", "reason" }) public class SubsequentAuthInformation { protected String originalNetworkTransId; + protected BigDecimal originalAuthAmount; @XmlSchemaType(name = "string") protected MerchantInitTransReasonEnum reason; @@ -69,6 +80,30 @@ public void setOriginalNetworkTransId(String value) { this.originalNetworkTransId = value; } + /** + * Gets the value of the originalAuthAmount property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getOriginalAuthAmount() { + return originalAuthAmount; + } + + /** + * Sets the value of the originalAuthAmount property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setOriginalAuthAmount(BigDecimal value) { + this.originalAuthAmount = value; + } + /** * Gets the value of the reason property. * diff --git a/src/main/java/net/authorize/api/contract/v1/TokenMaskedType.java b/src/main/java/net/authorize/api/contract/v1/TokenMaskedType.java index 96fc62bf..037031bf 100644 --- a/src/main/java/net/authorize/api/contract/v1/TokenMaskedType.java +++ b/src/main/java/net/authorize/api/contract/v1/TokenMaskedType.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.09.24 at 04:52:54 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/TransRetailInfoType.java b/src/main/java/net/authorize/api/contract/v1/TransRetailInfoType.java index 4b4f36f9..30c1c96e 100644 --- a/src/main/java/net/authorize/api/contract/v1/TransRetailInfoType.java +++ b/src/main/java/net/authorize/api/contract/v1/TransRetailInfoType.java @@ -2,16 +2,16 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/TransactionDetailsType.java b/src/main/java/net/authorize/api/contract/v1/TransactionDetailsType.java index 208e7426..03638d3a 100644 --- a/src/main/java/net/authorize/api/contract/v1/TransactionDetailsType.java +++ b/src/main/java/net/authorize/api/contract/v1/TransactionDetailsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.11.14 at 11:09:15 AM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // @@ -11,11 +11,11 @@ import java.math.BigDecimal; import java.util.ArrayList; import java.util.List; -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; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; @@ -149,6 +149,17 @@ * <element name="tip" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}extendedAmountType" minOccurs="0"/> * <element name="otherTax" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}otherTaxType" minOccurs="0"/> * <element name="shipFrom" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}nameAndAddressType" minOccurs="0"/> + * <element name="networkTransId" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}networkTransId" minOccurs="0"/> + * <element name="originalNetworkTransId" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}networkTransId" minOccurs="0"/> + * <element name="originalAuthAmount" minOccurs="0"> + * <simpleType> + * <restriction base="{http://www.w3.org/2001/XMLSchema}decimal"> + * <minInclusive value="0.00"/> + * <fractionDigits value="4"/> + * </restriction> + * </simpleType> + * </element> + * <element name="authorizationIndicator" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> @@ -206,7 +217,11 @@ "employeeId", "tip", "otherTax", - "shipFrom" + "shipFrom", + "networkTransId", + "originalNetworkTransId", + "originalAuthAmount", + "authorizationIndicator" }) public class TransactionDetailsType { @@ -273,6 +288,10 @@ public class TransactionDetailsType { protected ExtendedAmountType tip; protected OtherTaxType otherTax; protected NameAndAddressType shipFrom; + protected String networkTransId; + protected String originalNetworkTransId; + protected BigDecimal originalAuthAmount; + protected String authorizationIndicator; /** * Gets the value of the transId property. @@ -1410,6 +1429,102 @@ public void setShipFrom(NameAndAddressType value) { this.shipFrom = value; } + /** + * Gets the value of the networkTransId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNetworkTransId() { + return networkTransId; + } + + /** + * Sets the value of the networkTransId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNetworkTransId(String value) { + this.networkTransId = value; + } + + /** + * Gets the value of the originalNetworkTransId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOriginalNetworkTransId() { + return originalNetworkTransId; + } + + /** + * Sets the value of the originalNetworkTransId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOriginalNetworkTransId(String value) { + this.originalNetworkTransId = value; + } + + /** + * Gets the value of the originalAuthAmount property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getOriginalAuthAmount() { + return originalAuthAmount; + } + + /** + * Sets the value of the originalAuthAmount property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setOriginalAuthAmount(BigDecimal value) { + this.originalAuthAmount = value; + } + + /** + * Gets the value of the authorizationIndicator property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAuthorizationIndicator() { + return authorizationIndicator; + } + + /** + * Sets the value of the authorizationIndicator property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAuthorizationIndicator(String value) { + this.authorizationIndicator = value; + } + /** *
Java class for anonymous complex type. diff --git a/src/main/java/net/authorize/api/contract/v1/TransactionGroupStatusEnum.java b/src/main/java/net/authorize/api/contract/v1/TransactionGroupStatusEnum.java index 0a50aca6..42d7895b 100644 --- a/src/main/java/net/authorize/api/contract/v1/TransactionGroupStatusEnum.java +++ b/src/main/java/net/authorize/api/contract/v1/TransactionGroupStatusEnum.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlEnumValue; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/TransactionListOrderFieldEnum.java b/src/main/java/net/authorize/api/contract/v1/TransactionListOrderFieldEnum.java index 7ce81e39..ddb7d258 100644 --- a/src/main/java/net/authorize/api/contract/v1/TransactionListOrderFieldEnum.java +++ b/src/main/java/net/authorize/api/contract/v1/TransactionListOrderFieldEnum.java @@ -2,15 +2,15 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlEnumValue; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/TransactionListSorting.java b/src/main/java/net/authorize/api/contract/v1/TransactionListSorting.java index 46273bd9..fd299dcf 100644 --- a/src/main/java/net/authorize/api/contract/v1/TransactionListSorting.java +++ b/src/main/java/net/authorize/api/contract/v1/TransactionListSorting.java @@ -2,17 +2,17 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.06.13 at 02:31:45 PM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // package net.authorize.api.contract.v1; -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; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; /** diff --git a/src/main/java/net/authorize/api/contract/v1/TransactionRequestType.java b/src/main/java/net/authorize/api/contract/v1/TransactionRequestType.java index a8639be6..54bab22b 100644 --- a/src/main/java/net/authorize/api/contract/v1/TransactionRequestType.java +++ b/src/main/java/net/authorize/api/contract/v1/TransactionRequestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.11.14 at 11:09:15 AM IST +// Generated on: 2024.08.29 at 03:15:31 AM IST // @@ -11,10 +11,10 @@ import java.math.BigDecimal; import java.util.ArrayList; import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; /** @@ -77,6 +77,7 @@ * <element name="subsequentAuthInformation" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}subsequentAuthInformation" minOccurs="0"/> * <element name="otherTax" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}otherTaxType" minOccurs="0"/> * <element name="shipFrom" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}nameAndAddressType" minOccurs="0"/> + * <element name="authorizationIndicatorType" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}authorizationIndicatorType" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> @@ -121,7 +122,8 @@ "processingOptions", "subsequentAuthInformation", "otherTax", - "shipFrom" + "shipFrom", + "authorizationIndicatorType" }) public class TransactionRequestType { @@ -161,6 +163,7 @@ public class TransactionRequestType { protected SubsequentAuthInformation subsequentAuthInformation; protected OtherTaxType otherTax; protected NameAndAddressType shipFrom; + protected AuthorizationIndicatorType authorizationIndicatorType; /** * Gets the value of the transactionType property. @@ -1002,6 +1005,30 @@ public void setShipFrom(NameAndAddressType value) { this.shipFrom = value; } + /** + * Gets the value of the authorizationIndicatorType property. + * + * @return + * possible object is + * {@link AuthorizationIndicatorType } + * + */ + public AuthorizationIndicatorType getAuthorizationIndicatorType() { + return authorizationIndicatorType; + } + + /** + * Sets the value of the authorizationIndicatorType property. + * + * @param value + * allowed object is + * {@link AuthorizationIndicatorType } + * + */ + public void setAuthorizationIndicatorType(AuthorizationIndicatorType value) { + this.authorizationIndicatorType = value; + } + /** *
Java class for anonymous complex type.
diff --git a/src/main/java/net/authorize/api/contract/v1/TransactionResponse.java b/src/main/java/net/authorize/api/contract/v1/TransactionResponse.java
index f8acb209..829ec0ea 100644
--- a/src/main/java/net/authorize/api/contract/v1/TransactionResponse.java
+++ b/src/main/java/net/authorize/api/contract/v1/TransactionResponse.java
@@ -2,7 +2,7 @@
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2018.11.14 at 11:09:15 AM IST
+// Generated on: 2024.08.29 at 03:15:31 AM IST
//
@@ -10,10 +10,10 @@
import java.util.ArrayList;
import java.util.List;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlType;
+import jakarta.xml.bind.annotation.XmlAccessType;
+import jakarta.xml.bind.annotation.XmlAccessorType;
+import jakarta.xml.bind.annotation.XmlElement;
+import jakarta.xml.bind.annotation.XmlType;
/**
diff --git a/src/main/java/net/authorize/api/contract/v1/TransactionStatusEnum.java b/src/main/java/net/authorize/api/contract/v1/TransactionStatusEnum.java
index 1576243a..7c72d028 100644
--- a/src/main/java/net/authorize/api/contract/v1/TransactionStatusEnum.java
+++ b/src/main/java/net/authorize/api/contract/v1/TransactionStatusEnum.java
@@ -2,15 +2,15 @@
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2018.06.13 at 02:31:45 PM IST
+// Generated on: 2024.08.29 at 03:15:31 AM IST
//
package net.authorize.api.contract.v1;
-import javax.xml.bind.annotation.XmlEnum;
-import javax.xml.bind.annotation.XmlEnumValue;
-import javax.xml.bind.annotation.XmlType;
+import jakarta.xml.bind.annotation.XmlEnum;
+import jakarta.xml.bind.annotation.XmlEnumValue;
+import jakarta.xml.bind.annotation.XmlType;
/**
diff --git a/src/main/java/net/authorize/api/contract/v1/TransactionSummaryType.java b/src/main/java/net/authorize/api/contract/v1/TransactionSummaryType.java
index 15db3c36..c8619db7 100644
--- a/src/main/java/net/authorize/api/contract/v1/TransactionSummaryType.java
+++ b/src/main/java/net/authorize/api/contract/v1/TransactionSummaryType.java
@@ -2,18 +2,18 @@
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2018.06.13 at 02:31:45 PM IST
+// Generated on: 2024.08.29 at 03:15:31 AM IST
//
package net.authorize.api.contract.v1;
import java.math.BigDecimal;
-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;
+import jakarta.xml.bind.annotation.XmlAccessType;
+import jakarta.xml.bind.annotation.XmlAccessorType;
+import jakarta.xml.bind.annotation.XmlElement;
+import jakarta.xml.bind.annotation.XmlSchemaType;
+import jakarta.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
diff --git a/src/main/java/net/authorize/api/contract/v1/TransactionTypeEnum.java b/src/main/java/net/authorize/api/contract/v1/TransactionTypeEnum.java
index 7d0fbc18..b1659d17 100644
--- a/src/main/java/net/authorize/api/contract/v1/TransactionTypeEnum.java
+++ b/src/main/java/net/authorize/api/contract/v1/TransactionTypeEnum.java
@@ -2,15 +2,15 @@
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2018.06.13 at 02:31:45 PM IST
+// Generated on: 2024.08.29 at 03:15:31 AM IST
//
package net.authorize.api.contract.v1;
-import javax.xml.bind.annotation.XmlEnum;
-import javax.xml.bind.annotation.XmlEnumValue;
-import javax.xml.bind.annotation.XmlType;
+import jakarta.xml.bind.annotation.XmlEnum;
+import jakarta.xml.bind.annotation.XmlEnumValue;
+import jakarta.xml.bind.annotation.XmlType;
/**
diff --git a/src/main/java/net/authorize/api/contract/v1/UpdateCustomerPaymentProfileRequest.java b/src/main/java/net/authorize/api/contract/v1/UpdateCustomerPaymentProfileRequest.java
index 49ece0c5..87b45c41 100644
--- a/src/main/java/net/authorize/api/contract/v1/UpdateCustomerPaymentProfileRequest.java
+++ b/src/main/java/net/authorize/api/contract/v1/UpdateCustomerPaymentProfileRequest.java
@@ -2,18 +2,18 @@
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2018.06.13 at 02:31:45 PM IST
+// Generated on: 2024.08.29 at 03:15:31 AM IST
//
package net.authorize.api.contract.v1;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlSchemaType;
-import javax.xml.bind.annotation.XmlType;
+import jakarta.xml.bind.annotation.XmlAccessType;
+import jakarta.xml.bind.annotation.XmlAccessorType;
+import jakarta.xml.bind.annotation.XmlElement;
+import jakarta.xml.bind.annotation.XmlRootElement;
+import jakarta.xml.bind.annotation.XmlSchemaType;
+import jakarta.xml.bind.annotation.XmlType;
/**
diff --git a/src/main/java/net/authorize/api/contract/v1/UpdateCustomerPaymentProfileResponse.java b/src/main/java/net/authorize/api/contract/v1/UpdateCustomerPaymentProfileResponse.java
index fbb4552b..a446a1a7 100644
--- a/src/main/java/net/authorize/api/contract/v1/UpdateCustomerPaymentProfileResponse.java
+++ b/src/main/java/net/authorize/api/contract/v1/UpdateCustomerPaymentProfileResponse.java
@@ -2,16 +2,16 @@
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2018.06.13 at 02:31:45 PM IST
+// Generated on: 2024.08.29 at 03:15:31 AM IST
//
package net.authorize.api.contract.v1;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlType;
+import jakarta.xml.bind.annotation.XmlAccessType;
+import jakarta.xml.bind.annotation.XmlAccessorType;
+import jakarta.xml.bind.annotation.XmlRootElement;
+import jakarta.xml.bind.annotation.XmlType;
/**
diff --git a/src/main/java/net/authorize/api/contract/v1/UpdateCustomerProfileRequest.java b/src/main/java/net/authorize/api/contract/v1/UpdateCustomerProfileRequest.java
index 51317c04..0e1e2b89 100644
--- a/src/main/java/net/authorize/api/contract/v1/UpdateCustomerProfileRequest.java
+++ b/src/main/java/net/authorize/api/contract/v1/UpdateCustomerProfileRequest.java
@@ -2,17 +2,17 @@
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2018.11.14 at 11:09:15 AM IST
+// Generated on: 2024.08.29 at 03:15:31 AM IST
//
package net.authorize.api.contract.v1;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlType;
+import jakarta.xml.bind.annotation.XmlAccessType;
+import jakarta.xml.bind.annotation.XmlAccessorType;
+import jakarta.xml.bind.annotation.XmlElement;
+import jakarta.xml.bind.annotation.XmlRootElement;
+import jakarta.xml.bind.annotation.XmlType;
/**
@@ -25,7 +25,7 @@
* <complexContent>
* <extension base="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}ANetApiRequest">
* <sequence>
- * <element name="profile" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}CustomerProfileExType"/>
+ * <element name="profile" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}customerProfileInfoExType"/>
* </sequence>
* </extension>
* </complexContent>
@@ -44,30 +44,30 @@ public class UpdateCustomerProfileRequest
{
@XmlElement(required = true)
- protected CustomerProfileExType profile;
+ protected CustomerProfileInfoExType profile;
+
/**
* Gets the value of the profile property.
*
* @return
* possible object is
- * {@link CustomerProfileExType }
+ * {@link CustomerProfileInfoExType }
*
*/
-
- public CustomerProfileExType getProfile() {
- return profile;
- }
+ public CustomerProfileInfoExType getProfile() {
+ return profile;
+ }
/**
* Sets the value of the profile property.
*
* @param value
* allowed object is
- * {@link CustomerProfileExType }
+ * {@link CustomerProfileInfoExType }
*
*/
- public void setProfile(CustomerProfileExType profile) {
- this.profile = profile;
- }
+ public void setProfile(CustomerProfileInfoExType value) {
+ this.profile = value;
+ }
}
diff --git a/src/main/java/net/authorize/api/contract/v1/UpdateCustomerProfileResponse.java b/src/main/java/net/authorize/api/contract/v1/UpdateCustomerProfileResponse.java
index dd99ebd9..db2964a4 100644
--- a/src/main/java/net/authorize/api/contract/v1/UpdateCustomerProfileResponse.java
+++ b/src/main/java/net/authorize/api/contract/v1/UpdateCustomerProfileResponse.java
@@ -2,16 +2,16 @@
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2018.06.13 at 02:31:45 PM IST
+// Generated on: 2024.08.29 at 03:15:31 AM IST
//
package net.authorize.api.contract.v1;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlType;
+import jakarta.xml.bind.annotation.XmlAccessType;
+import jakarta.xml.bind.annotation.XmlAccessorType;
+import jakarta.xml.bind.annotation.XmlRootElement;
+import jakarta.xml.bind.annotation.XmlType;
/**
diff --git a/src/main/java/net/authorize/api/contract/v1/UpdateCustomerShippingAddressRequest.java b/src/main/java/net/authorize/api/contract/v1/UpdateCustomerShippingAddressRequest.java
index a6fee8b8..9464c881 100644
--- a/src/main/java/net/authorize/api/contract/v1/UpdateCustomerShippingAddressRequest.java
+++ b/src/main/java/net/authorize/api/contract/v1/UpdateCustomerShippingAddressRequest.java
@@ -2,17 +2,17 @@
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2018.06.13 at 02:31:45 PM IST
+// Generated on: 2024.08.29 at 03:15:31 AM IST
//
package net.authorize.api.contract.v1;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlType;
+import jakarta.xml.bind.annotation.XmlAccessType;
+import jakarta.xml.bind.annotation.XmlAccessorType;
+import jakarta.xml.bind.annotation.XmlElement;
+import jakarta.xml.bind.annotation.XmlRootElement;
+import jakarta.xml.bind.annotation.XmlType;
/**
diff --git a/src/main/java/net/authorize/api/contract/v1/UpdateCustomerShippingAddressResponse.java b/src/main/java/net/authorize/api/contract/v1/UpdateCustomerShippingAddressResponse.java
index 6cfd44a5..96de9361 100644
--- a/src/main/java/net/authorize/api/contract/v1/UpdateCustomerShippingAddressResponse.java
+++ b/src/main/java/net/authorize/api/contract/v1/UpdateCustomerShippingAddressResponse.java
@@ -2,16 +2,16 @@
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2018.06.13 at 02:31:45 PM IST
+// Generated on: 2024.08.29 at 03:15:31 AM IST
//
package net.authorize.api.contract.v1;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlType;
+import jakarta.xml.bind.annotation.XmlAccessType;
+import jakarta.xml.bind.annotation.XmlAccessorType;
+import jakarta.xml.bind.annotation.XmlRootElement;
+import jakarta.xml.bind.annotation.XmlType;
/**
diff --git a/src/main/java/net/authorize/api/contract/v1/UpdateHeldTransactionRequest.java b/src/main/java/net/authorize/api/contract/v1/UpdateHeldTransactionRequest.java
index 1aa2516b..0388054a 100644
--- a/src/main/java/net/authorize/api/contract/v1/UpdateHeldTransactionRequest.java
+++ b/src/main/java/net/authorize/api/contract/v1/UpdateHeldTransactionRequest.java
@@ -2,17 +2,17 @@
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2018.06.13 at 02:31:45 PM IST
+// Generated on: 2024.08.29 at 03:15:31 AM IST
//
package net.authorize.api.contract.v1;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlType;
+import jakarta.xml.bind.annotation.XmlAccessType;
+import jakarta.xml.bind.annotation.XmlAccessorType;
+import jakarta.xml.bind.annotation.XmlElement;
+import jakarta.xml.bind.annotation.XmlRootElement;
+import jakarta.xml.bind.annotation.XmlType;
/**
diff --git a/src/main/java/net/authorize/api/contract/v1/UpdateHeldTransactionResponse.java b/src/main/java/net/authorize/api/contract/v1/UpdateHeldTransactionResponse.java
index 73cb5f42..27f23ebd 100644
--- a/src/main/java/net/authorize/api/contract/v1/UpdateHeldTransactionResponse.java
+++ b/src/main/java/net/authorize/api/contract/v1/UpdateHeldTransactionResponse.java
@@ -2,16 +2,16 @@
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2018.06.13 at 02:31:45 PM IST
+// Generated on: 2024.08.29 at 03:15:31 AM IST
//
package net.authorize.api.contract.v1;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlType;
+import jakarta.xml.bind.annotation.XmlAccessType;
+import jakarta.xml.bind.annotation.XmlAccessorType;
+import jakarta.xml.bind.annotation.XmlRootElement;
+import jakarta.xml.bind.annotation.XmlType;
/**
diff --git a/src/main/java/net/authorize/api/contract/v1/UpdateMerchantDetailsRequest.java b/src/main/java/net/authorize/api/contract/v1/UpdateMerchantDetailsRequest.java
index b501a2e8..dd7455ab 100644
--- a/src/main/java/net/authorize/api/contract/v1/UpdateMerchantDetailsRequest.java
+++ b/src/main/java/net/authorize/api/contract/v1/UpdateMerchantDetailsRequest.java
@@ -2,16 +2,16 @@
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2018.06.13 at 02:31:45 PM IST
+// Generated on: 2024.08.29 at 03:15:31 AM IST
//
package net.authorize.api.contract.v1;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlType;
+import jakarta.xml.bind.annotation.XmlAccessType;
+import jakarta.xml.bind.annotation.XmlAccessorType;
+import jakarta.xml.bind.annotation.XmlRootElement;
+import jakarta.xml.bind.annotation.XmlType;
/**
diff --git a/src/main/java/net/authorize/api/contract/v1/UpdateMerchantDetailsResponse.java b/src/main/java/net/authorize/api/contract/v1/UpdateMerchantDetailsResponse.java
index a21ab0c5..14209d30 100644
--- a/src/main/java/net/authorize/api/contract/v1/UpdateMerchantDetailsResponse.java
+++ b/src/main/java/net/authorize/api/contract/v1/UpdateMerchantDetailsResponse.java
@@ -2,16 +2,16 @@
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2018.06.13 at 02:31:45 PM IST
+// Generated on: 2024.08.29 at 03:15:31 AM IST
//
package net.authorize.api.contract.v1;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlType;
+import jakarta.xml.bind.annotation.XmlAccessType;
+import jakarta.xml.bind.annotation.XmlAccessorType;
+import jakarta.xml.bind.annotation.XmlRootElement;
+import jakarta.xml.bind.annotation.XmlType;
/**
diff --git a/src/main/java/net/authorize/api/contract/v1/UpdateSplitTenderGroupRequest.java b/src/main/java/net/authorize/api/contract/v1/UpdateSplitTenderGroupRequest.java
index 01b06e8b..09370fc2 100644
--- a/src/main/java/net/authorize/api/contract/v1/UpdateSplitTenderGroupRequest.java
+++ b/src/main/java/net/authorize/api/contract/v1/UpdateSplitTenderGroupRequest.java
@@ -2,18 +2,18 @@
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2018.06.13 at 02:31:45 PM IST
+// Generated on: 2024.08.29 at 03:15:31 AM IST
//
package net.authorize.api.contract.v1;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlSchemaType;
-import javax.xml.bind.annotation.XmlType;
+import jakarta.xml.bind.annotation.XmlAccessType;
+import jakarta.xml.bind.annotation.XmlAccessorType;
+import jakarta.xml.bind.annotation.XmlElement;
+import jakarta.xml.bind.annotation.XmlRootElement;
+import jakarta.xml.bind.annotation.XmlSchemaType;
+import jakarta.xml.bind.annotation.XmlType;
/**
diff --git a/src/main/java/net/authorize/api/contract/v1/UpdateSplitTenderGroupResponse.java b/src/main/java/net/authorize/api/contract/v1/UpdateSplitTenderGroupResponse.java
index 10b234e6..f54d628c 100644
--- a/src/main/java/net/authorize/api/contract/v1/UpdateSplitTenderGroupResponse.java
+++ b/src/main/java/net/authorize/api/contract/v1/UpdateSplitTenderGroupResponse.java
@@ -2,16 +2,16 @@
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2018.06.13 at 02:31:45 PM IST
+// Generated on: 2024.08.29 at 03:15:31 AM IST
//
package net.authorize.api.contract.v1;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlType;
+import jakarta.xml.bind.annotation.XmlAccessType;
+import jakarta.xml.bind.annotation.XmlAccessorType;
+import jakarta.xml.bind.annotation.XmlRootElement;
+import jakarta.xml.bind.annotation.XmlType;
/**
diff --git a/src/main/java/net/authorize/api/contract/v1/UserField.java b/src/main/java/net/authorize/api/contract/v1/UserField.java
index dd6c7487..fb0acb33 100644
--- a/src/main/java/net/authorize/api/contract/v1/UserField.java
+++ b/src/main/java/net/authorize/api/contract/v1/UserField.java
@@ -2,15 +2,15 @@
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2018.06.13 at 02:31:45 PM IST
+// Generated on: 2024.08.29 at 03:15:31 AM IST
//
package net.authorize.api.contract.v1;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlType;
+import jakarta.xml.bind.annotation.XmlAccessType;
+import jakarta.xml.bind.annotation.XmlAccessorType;
+import jakarta.xml.bind.annotation.XmlType;
/**
diff --git a/src/main/java/net/authorize/api/contract/v1/ValidateCustomerPaymentProfileRequest.java b/src/main/java/net/authorize/api/contract/v1/ValidateCustomerPaymentProfileRequest.java
index 1765ab98..1adb763d 100644
--- a/src/main/java/net/authorize/api/contract/v1/ValidateCustomerPaymentProfileRequest.java
+++ b/src/main/java/net/authorize/api/contract/v1/ValidateCustomerPaymentProfileRequest.java
@@ -2,18 +2,18 @@
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2018.06.13 at 02:31:45 PM IST
+// Generated on: 2024.08.29 at 03:15:31 AM IST
//
package net.authorize.api.contract.v1;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlSchemaType;
-import javax.xml.bind.annotation.XmlType;
+import jakarta.xml.bind.annotation.XmlAccessType;
+import jakarta.xml.bind.annotation.XmlAccessorType;
+import jakarta.xml.bind.annotation.XmlElement;
+import jakarta.xml.bind.annotation.XmlRootElement;
+import jakarta.xml.bind.annotation.XmlSchemaType;
+import jakarta.xml.bind.annotation.XmlType;
/**
diff --git a/src/main/java/net/authorize/api/contract/v1/ValidateCustomerPaymentProfileResponse.java b/src/main/java/net/authorize/api/contract/v1/ValidateCustomerPaymentProfileResponse.java
index f93d0399..1499138b 100644
--- a/src/main/java/net/authorize/api/contract/v1/ValidateCustomerPaymentProfileResponse.java
+++ b/src/main/java/net/authorize/api/contract/v1/ValidateCustomerPaymentProfileResponse.java
@@ -2,16 +2,16 @@
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2018.06.13 at 02:31:45 PM IST
+// Generated on: 2024.08.29 at 03:15:31 AM IST
//
package net.authorize.api.contract.v1;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlType;
+import jakarta.xml.bind.annotation.XmlAccessType;
+import jakarta.xml.bind.annotation.XmlAccessorType;
+import jakarta.xml.bind.annotation.XmlRootElement;
+import jakarta.xml.bind.annotation.XmlType;
/**
diff --git a/src/main/java/net/authorize/api/contract/v1/ValidationModeEnum.java b/src/main/java/net/authorize/api/contract/v1/ValidationModeEnum.java
index db6ec99f..652aa04e 100644
--- a/src/main/java/net/authorize/api/contract/v1/ValidationModeEnum.java
+++ b/src/main/java/net/authorize/api/contract/v1/ValidationModeEnum.java
@@ -2,15 +2,15 @@
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2018.06.13 at 02:31:45 PM IST
+// Generated on: 2024.08.29 at 03:15:31 AM IST
//
package net.authorize.api.contract.v1;
-import javax.xml.bind.annotation.XmlEnum;
-import javax.xml.bind.annotation.XmlEnumValue;
-import javax.xml.bind.annotation.XmlType;
+import jakarta.xml.bind.annotation.XmlEnum;
+import jakarta.xml.bind.annotation.XmlEnumValue;
+import jakarta.xml.bind.annotation.XmlType;
/**
diff --git a/src/main/java/net/authorize/api/contract/v1/WebCheckOutDataType.java b/src/main/java/net/authorize/api/contract/v1/WebCheckOutDataType.java
index fe902a84..b61dee3a 100644
--- a/src/main/java/net/authorize/api/contract/v1/WebCheckOutDataType.java
+++ b/src/main/java/net/authorize/api/contract/v1/WebCheckOutDataType.java
@@ -2,17 +2,17 @@
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2018.06.13 at 02:31:45 PM IST
+// Generated on: 2024.08.29 at 03:15:31 AM IST
//
package net.authorize.api.contract.v1;
-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;
+import jakarta.xml.bind.annotation.XmlAccessType;
+import jakarta.xml.bind.annotation.XmlAccessorType;
+import jakarta.xml.bind.annotation.XmlElement;
+import jakarta.xml.bind.annotation.XmlSchemaType;
+import jakarta.xml.bind.annotation.XmlType;
/**
diff --git a/src/main/java/net/authorize/api/contract/v1/WebCheckOutDataTypeToken.java b/src/main/java/net/authorize/api/contract/v1/WebCheckOutDataTypeToken.java
index 803641b5..c0c08564 100644
--- a/src/main/java/net/authorize/api/contract/v1/WebCheckOutDataTypeToken.java
+++ b/src/main/java/net/authorize/api/contract/v1/WebCheckOutDataTypeToken.java
@@ -2,16 +2,16 @@
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2018.06.13 at 02:31:45 PM IST
+// Generated on: 2024.08.29 at 03:15:31 AM IST
//
package net.authorize.api.contract.v1;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlType;
+import jakarta.xml.bind.annotation.XmlAccessType;
+import jakarta.xml.bind.annotation.XmlAccessorType;
+import jakarta.xml.bind.annotation.XmlElement;
+import jakarta.xml.bind.annotation.XmlType;
/**
diff --git a/src/main/java/net/authorize/api/contract/v1/WebCheckOutTypeEnum.java b/src/main/java/net/authorize/api/contract/v1/WebCheckOutTypeEnum.java
index cb467a75..b239bd18 100644
--- a/src/main/java/net/authorize/api/contract/v1/WebCheckOutTypeEnum.java
+++ b/src/main/java/net/authorize/api/contract/v1/WebCheckOutTypeEnum.java
@@ -2,14 +2,14 @@
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2018.06.13 at 02:31:45 PM IST
+// Generated on: 2024.08.29 at 03:15:31 AM IST
//
package net.authorize.api.contract.v1;
-import javax.xml.bind.annotation.XmlEnum;
-import javax.xml.bind.annotation.XmlType;
+import jakarta.xml.bind.annotation.XmlEnum;
+import jakarta.xml.bind.annotation.XmlType;
/**
diff --git a/src/main/java/net/authorize/api/contract/v1/XXDoNotUseDummyRequest.java b/src/main/java/net/authorize/api/contract/v1/XXDoNotUseDummyRequest.java
index 2725a5b1..26f26bd5 100644
--- a/src/main/java/net/authorize/api/contract/v1/XXDoNotUseDummyRequest.java
+++ b/src/main/java/net/authorize/api/contract/v1/XXDoNotUseDummyRequest.java
@@ -8,12 +8,12 @@
package net.authorize.api.contract.v1;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlSchemaType;
-import javax.xml.bind.annotation.XmlType;
+import jakarta.xml.bind.annotation.XmlAccessType;
+import jakarta.xml.bind.annotation.XmlAccessorType;
+import jakarta.xml.bind.annotation.XmlElement;
+import jakarta.xml.bind.annotation.XmlRootElement;
+import jakarta.xml.bind.annotation.XmlSchemaType;
+import jakarta.xml.bind.annotation.XmlType;
/**
diff --git a/src/main/java/net/authorize/api/contract/v1/package-info.java b/src/main/java/net/authorize/api/contract/v1/package-info.java
index 58a805e0..f50dca81 100644
--- a/src/main/java/net/authorize/api/contract/v1/package-info.java
+++ b/src/main/java/net/authorize/api/contract/v1/package-info.java
@@ -2,8 +2,8 @@
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2018.06.13 at 02:31:45 PM IST
+// Generated on: 2024.08.29 at 03:15:31 AM IST
//
-@javax.xml.bind.annotation.XmlSchema(namespace = "AnetApi/xml/v1/schema/AnetApiSchema.xsd", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
+@jakarta.xml.bind.annotation.XmlSchema(namespace = "AnetApi/xml/v1/schema/AnetApiSchema.xsd", elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED)
package net.authorize.api.contract.v1;
diff --git a/src/main/java/net/authorize/api/controller/base/ApiOperationBase.java b/src/main/java/net/authorize/api/controller/base/ApiOperationBase.java
index f093cb97..52e3d7cc 100644
--- a/src/main/java/net/authorize/api/controller/base/ApiOperationBase.java
+++ b/src/main/java/net/authorize/api/controller/base/ApiOperationBase.java
@@ -19,8 +19,8 @@
import net.authorize.util.HttpUtility;
import net.authorize.util.LogHelper;
-import org.apache.commons.logging.Log;
-import org.apache.commons.logging.LogFactory;
+import org.apache.logging.log4j.LogManager;
+import org.apache.logging.log4j.Logger;
/**
* @author ramittal
@@ -28,7 +28,7 @@
*/
public abstract class ApiOperationBase implements IApiOperation
{
- protected static Log logger = LogFactory.getLog(ApiOperationBase.class);
+ protected static Logger logger = LogManager.getLogger(ApiOperationBase.class);
private static Environment environment = null;
private static MerchantAuthenticationType merchantAuthentication = null;
@@ -140,7 +140,6 @@ public void execute(Environment environment) {
logger.debug(String.format("Executing Request:'%s'", this.getApiRequest()));
if ( null == environment) throw new InvalidParameterException(nullEnvironmentErrorMessage);
-
ANetApiResponse httpApiResponse = HttpUtility.postData(environment, this.getApiRequest(), this.responseClass);
if ( null != httpApiResponse)
diff --git a/src/main/java/net/authorize/api/controller/base/ErrorResponse.java b/src/main/java/net/authorize/api/controller/base/ErrorResponse.java
index df9399cd..86aad7c3 100644
--- a/src/main/java/net/authorize/api/controller/base/ErrorResponse.java
+++ b/src/main/java/net/authorize/api/controller/base/ErrorResponse.java
@@ -2,7 +2,7 @@
import java.util.List;
-import javax.xml.bind.annotation.XmlRootElement;
+import jakarta.xml.bind.annotation.XmlRootElement;
import net.authorize.api.contract.v1.ANetApiResponse;
import net.authorize.api.contract.v1.MessagesType;
diff --git a/src/main/java/net/authorize/util/BasicXmlDocument.java b/src/main/java/net/authorize/util/BasicXmlDocument.java
deleted file mode 100644
index 8a72421f..00000000
--- a/src/main/java/net/authorize/util/BasicXmlDocument.java
+++ /dev/null
@@ -1,266 +0,0 @@
-package net.authorize.util;
-
-import java.io.ByteArrayInputStream;
-import java.io.File;
-import java.io.FileInputStream;
-import java.io.FileOutputStream;
-import java.io.IOException;
-import java.io.InputStream;
-import java.io.Serializable;
-import java.util.ArrayList;
-
-import javax.xml.parsers.DocumentBuilder;
-import javax.xml.parsers.DocumentBuilderFactory;
-import javax.xml.parsers.ParserConfigurationException;
-
-import org.w3c.dom.Document;
-import org.w3c.dom.Element;
-import org.w3c.dom.Node;
-import org.w3c.dom.NodeList;
-import org.xml.sax.EntityResolver;
-import org.xml.sax.ErrorHandler;
-import org.xml.sax.InputSource;
-import org.xml.sax.SAXException;
-import org.xml.sax.SAXParseException;
-
-/**
- *
- * @deprecated since version 1.9.8
- * @deprecated We have reorganized and simplified the Authorize.Net API to ease integration and to focus on merchants' needs.
- * @deprecated We have deprecated AIM, ARB, CIM, and Reporting as separate options, in favor of AuthorizeNet::API (package: net.authorize.api.*).
- * @deprecated We have also deprecated SIM as a separate option, in favor of Accept Hosted. See https://developer.authorize.net/api/reference/features/accept_hosted.html for details on Accept Hosted.
- * @deprecated For details on AIM, see https://github.com/AuthorizeNet/sample-code-java/tree/master/src/main/java/net/authorize/sample/PaymentTransactions.
- * @deprecated For details on the deprecation and replacement of legacy Authorize.Net methods, visit https://developer.authorize.net/api/upgrade_guide/.
- *
- */
-@Deprecated
-public class BasicXmlDocument implements Serializable {
-
- private static final long serialVersionUID = 1L;
-
- Document document;
- private String sourceFile;
- private boolean accessible=false;
-// private int sourceType=0;
- DocumentBuilderFactory dbf;
- DocumentBuilder db;
- private long xmlParseTime=-1;
- private String resolve_path=null;
-
- private ArrayList