Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 347f050

Browse filesBrowse files
committed
Updates for 2024 Release
1 parent 9095c72 commit 347f050
Copy full SHA for 347f050

File tree

261 files changed

+267
-259
lines changed
Filter options

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner

261 files changed

+267
-259
lines changed

‎.gitignore

Copy file name to clipboard
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
target
22
logs
3+
log
34

45
#intellij files
56
.idea
67
*.iml
78
.DS_Store
89
docs/.DS_Store
10+
*.xsd

‎scripts/generateObjectsFromXsd.cmd

Copy file name to clipboardExpand all lines: scripts/generateObjectsFromXsd.cmd
+6Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,5 +81,11 @@ FOR %%x IN (Request Response) DO (
8181
)
8282
)
8383
DEL /q /s *.bak
84+
85+
FOR /r "%XSDSRCDIR%%XSDGENFOLDER%" %%F IN (*.java) DO (
86+
@ECHO Converting %%F to use Jakarta
87+
POWERSHELL -Command "(Get-Content '%%F') | ForEach-Object { $_ -replace 'import javax.xml.bind', 'import jakarta.xml.bind' } | ForEach-Object { $_ -replace '@javax.xml.bind', '@jakarta.xml.bind' } | ForEach-Object { $_ -replace 'elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED', 'elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED' } | Set-Content '%%F'"
88+
)
89+
8490
ENDLOCAL
8591
@ECHO FINISHED %DATE%-%TIME%

‎src/main/java/net/authorize/api/contract/v1/ANetApiRequest.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/ANetApiRequest.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/ANetApiResponse.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/ANetApiResponse.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/ARBCancelSubscriptionRequest.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/ARBCancelSubscriptionRequest.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/ARBCancelSubscriptionResponse.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/ARBCancelSubscriptionResponse.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/ARBCreateSubscriptionRequest.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/ARBCreateSubscriptionRequest.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/ARBCreateSubscriptionResponse.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/ARBCreateSubscriptionResponse.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/ARBGetSubscriptionListOrderFieldEnum.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/ARBGetSubscriptionListOrderFieldEnum.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/ARBGetSubscriptionListRequest.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/ARBGetSubscriptionListRequest.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/ARBGetSubscriptionListResponse.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/ARBGetSubscriptionListResponse.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/ARBGetSubscriptionListSearchTypeEnum.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/ARBGetSubscriptionListSearchTypeEnum.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/ARBGetSubscriptionListSorting.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/ARBGetSubscriptionListSorting.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/ARBGetSubscriptionRequest.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/ARBGetSubscriptionRequest.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/ARBGetSubscriptionResponse.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/ARBGetSubscriptionResponse.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/ARBGetSubscriptionStatusRequest.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/ARBGetSubscriptionStatusRequest.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/ARBGetSubscriptionStatusResponse.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/ARBGetSubscriptionStatusResponse.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/ARBSubscriptionMaskedType.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/ARBSubscriptionMaskedType.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/ARBSubscriptionStatusEnum.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/ARBSubscriptionStatusEnum.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/ARBSubscriptionType.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/ARBSubscriptionType.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/ARBSubscriptionUnitEnum.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/ARBSubscriptionUnitEnum.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/ARBTransactionList.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/ARBTransactionList.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/ARBUpdateSubscriptionRequest.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/ARBUpdateSubscriptionRequest.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/ARBUpdateSubscriptionResponse.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/ARBUpdateSubscriptionResponse.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/AUJobTypeEnum.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/AUJobTypeEnum.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/AccountTypeEnum.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/AccountTypeEnum.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/AfdsTransactionEnum.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/AfdsTransactionEnum.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/ArbTransaction.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/ArbTransaction.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/ArrayOfAUResponseType.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/ArrayOfAUResponseType.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/ArrayOfBatchDetailsType.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/ArrayOfBatchDetailsType.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/ArrayOfBatchStatisticType.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/ArrayOfBatchStatisticType.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/ArrayOfCardType.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/ArrayOfCardType.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/ArrayOfContactDetail.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/ArrayOfContactDetail.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/ArrayOfCurrencyCode.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/ArrayOfCurrencyCode.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/ArrayOfCustomerPaymentProfileListItemType.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/ArrayOfCustomerPaymentProfileListItemType.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/ArrayOfFDSFilter.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/ArrayOfFDSFilter.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/ArrayOfFraudFilterType.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/ArrayOfFraudFilterType.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/ArrayOfLineItem.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/ArrayOfLineItem.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/ArrayOfLong.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/ArrayOfLong.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/ArrayOfMarketType.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/ArrayOfMarketType.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/ArrayOfNumericString.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/ArrayOfNumericString.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/ArrayOfPaymentMethod.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/ArrayOfPaymentMethod.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

‎src/main/java/net/authorize/api/contract/v1/ArrayOfPermissionType.java

Copy file name to clipboardExpand all lines: src/main/java/net/authorize/api/contract/v1/ArrayOfPermissionType.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2024.07.05 at 11:12:58 AM IST
5+
// Generated on: 2024.08.29 at 03:15:31 AM IST
66
//
77

88

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.