Skip to content

Commit e6b6863

Browse files
author
yzou
committed
generate new java classes with latest configuration
1 parent 982676b commit e6b6863

File tree

292 files changed

+1246
-935
lines changed

Some content is hidden

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

292 files changed

+1246
-935
lines changed

ipp-v3-java-data/src/main/java/com/intuit/ipp/data/APCreditCardOperationEnum.java

Lines 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.3.0
33
// See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2020.11.09 at 07:43:52 AM PST
5+
// Generated on: 2021.05.03 at 02:01:21 PM PDT
66
//
77

88

ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Account.java

Lines 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.3.0
33
// See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2020.11.09 at 07:43:52 AM PST
5+
// Generated on: 2021.05.03 at 02:01:21 PM PDT
66
//
77

88

ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AccountBasedExpenseLineDetail.java

Lines 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.3.0
33
// See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2020.11.09 at 07:43:52 AM PST
5+
// Generated on: 2021.05.03 at 02:01:21 PM PDT
66
//
77

88

ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AccountClassificationEnum.java

Lines 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.3.0
33
// See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2020.11.09 at 07:43:52 AM PST
5+
// Generated on: 2021.05.03 at 02:01:21 PM PDT
66
//
77

88

ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AccountSubTypeEnum.java

Lines changed: 47 additions & 4 deletions
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.3.0
33
// See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2020.11.09 at 07:43:52 AM PST
5+
// Generated on: 2021.05.03 at 02:01:21 PM PDT
66
//
77

88

@@ -75,6 +75,7 @@
7575
* &lt;enumeration value="Goodwill"/&gt;
7676
* &lt;enumeration value="Gratuity"/&gt;
7777
* &lt;enumeration value="Healthcare"/&gt;
78+
* &lt;enumeration value="HealthSavingsAccountContributions"/&gt;
7879
* &lt;enumeration value="HomeOffice"/&gt;
7980
* &lt;enumeration value="HomeownerRentalInsurance"/&gt;
8081
* &lt;enumeration value="Insurance"/&gt;
@@ -127,6 +128,8 @@
127128
* &lt;enumeration value="PartnersEquity"/&gt;
128129
* &lt;enumeration value="PayrollClearing"/&gt;
129130
* &lt;enumeration value="PayrollExpenses"/&gt;
131+
* &lt;enumeration value="PayrollTaxExpenses"/&gt;
132+
* &lt;enumeration value="PayrollWageExpenses"/&gt;
130133
* &lt;enumeration value="PayrollTaxPayable"/&gt;
131134
* &lt;enumeration value="PenaltiesSettlements"/&gt;
132135
* &lt;enumeration value="PersonalExpense"/&gt;
@@ -166,6 +169,7 @@
166169
* &lt;enumeration value="UnappliedCashPaymentIncome"/&gt;
167170
* &lt;enumeration value="UndepositedFunds"/&gt;
168171
* &lt;enumeration value="Utilities"/&gt;
172+
* &lt;enumeration value="Communications"/&gt;
169173
* &lt;enumeration value="UtilitiesHomeOffice"/&gt;
170174
* &lt;enumeration value="Vehicle"/&gt;
171175
* &lt;enumeration value="VehicleInsurance"/&gt;
@@ -956,14 +960,23 @@ public enum AccountSubTypeEnum {
956960
/**
957961
*
958962
* Product: QBO
959-
* Description: Use Healthcare to track expenses you pay for health
960-
* insurance or contributions to a health savings account.
963+
* Description: Use Healthcare to track premiums you pay for health insurance.
961964
*
962965
*
963966
*/
964967
@XmlEnumValue("Healthcare")
965968
HEALTHCARE("Healthcare"),
966969

970+
/**
971+
*
972+
* Product: QBO
973+
* Description: Use Health Savings Account Contributions to track contributions to a health savings account.
974+
*
975+
*
976+
*/
977+
@XmlEnumValue("HealthSavingsAccountContributions")
978+
HEALTH_SAVINGS_ACCOUNT_CONTRIBUTIONS("HealthSavingsAccountContributions"),
979+
967980
/**
968981
*
969982
* Product: QBO
@@ -1602,6 +1615,26 @@ public enum AccountSubTypeEnum {
16021615
@XmlEnumValue("PayrollExpenses")
16031616
PAYROLL_EXPENSES("PayrollExpenses"),
16041617

1618+
/**
1619+
*
1620+
* Product: QBO
1621+
* Description: Use payroll tax expenses to track payroll taxes you paid.
1622+
*
1623+
*
1624+
*/
1625+
@XmlEnumValue("PayrollTaxExpenses")
1626+
PAYROLL_TAX_EXPENSES("PayrollTaxExpenses"),
1627+
1628+
/**
1629+
*
1630+
* Product: QBO
1631+
* Description: Use payroll wage expenses to track salaries and wages.
1632+
*
1633+
*
1634+
*/
1635+
@XmlEnumValue("PayrollWageExpenses")
1636+
PAYROLL_WAGE_EXPENSES("PayrollWageExpenses"),
1637+
16051638
/**
16061639
*
16071640
* Product: QBO
@@ -2098,6 +2131,16 @@ public enum AccountSubTypeEnum {
20982131
@XmlEnumValue("Utilities")
20992132
UTILITIES("Utilities"),
21002133

2134+
/**
2135+
*
2136+
* Product: QBO
2137+
* Description: Use Communications to track communication expenses.
2138+
*
2139+
*
2140+
*/
2141+
@XmlEnumValue("Communications")
2142+
COMMUNICATIONS("Communications"),
2143+
21012144
/**
21022145
*
21032146
* Product: QBO
@@ -3339,7 +3382,7 @@ public enum AccountSubTypeEnum {
33393382
* Product: QBO
33403383
* Description: Use
33413384
* <pre>
3342-
* &lt;?xml version="1.0" encoding="UTF-8"?&gt;&lt;b xmlns="http://schema.intuit.com/finance/v3" xmlns:p455820_="http://java.sun.com/xml/ns/jaxb" xmlns:p542480_="http://jaxb2-commons.dev.java.net/basic/inheritance" xmlns:xs="http://www.w3.org/2001/XMLSchema"&gt;Share Application Money Pending Allotment&lt;/b&gt;
3385+
* &lt;?xml version="1.0" encoding="UTF-8"?&gt;&lt;b xmlns="http://schema.intuit.com/finance/v3" xmlns:p246507_="http://jaxb2-commons.dev.java.net/basic/inheritance" xmlns:p330309_="http://java.sun.com/xml/ns/jaxb" xmlns:xs="http://www.w3.org/2001/XMLSchema"&gt;Share Application Money Pending Allotment&lt;/b&gt;
33433386
* </pre>
33443387
* to track the application amounts the company receives for shares that still need to be allotted to the investors.
33453388
*

ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AccountTypeEnum.java

Lines 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.3.0
33
// See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2020.11.09 at 07:43:52 AM PST
5+
// Generated on: 2021.05.03 at 02:01:21 PM PDT
66
//
77

88

ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AcquiredAsEnum.java

Lines 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.3.0
33
// See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2020.11.09 at 07:43:52 AM PST
5+
// Generated on: 2021.05.03 at 02:01:21 PM PDT
66
//
77

88

ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AdvancedInventoryPrefs.java

Lines 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.3.0
33
// See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2020.11.09 at 07:43:52 AM PST
5+
// Generated on: 2021.05.03 at 02:01:21 PM PDT
66
//
77

88

ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AgencyPaymentMethodEnum.java

Lines 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.3.0
33
// See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2020.11.09 at 07:43:52 AM PST
5+
// Generated on: 2021.05.03 at 02:01:21 PM PDT
66
//
77

88

ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Attachable.java

Lines 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.3.0
33
// See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
44
// Any modifications to this file will be lost upon recompilation of the source schema.
5-
// Generated on: 2020.11.09 at 07:43:52 AM PST
5+
// Generated on: 2021.05.03 at 02:01:21 PM PDT
66
//
77

88

0 commit comments

Comments
 (0)