Skip to content

Commit ce01144

Browse files
committed
added ENUMS for phone and taxrates
1 parent 0de1540 commit ce01144

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

src/main/java/com/xero/models/accounting/Phone.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@ public enum PhoneTypeEnum {
3838

3939
MOBILE("MOBILE"),
4040

41-
FAX("FAX");
41+
FAX("FAX"),
42+
43+
OFFICE("OFFICE");
4244

4345
private String value;
4446

src/main/java/com/xero/models/accounting/TaxRate.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,11 @@ public enum ReportTaxTypeEnum {
115115

116116
CAPITALEXPENSESINPUT("CAPITALEXPENSESINPUT"),
117117

118-
MOSSSALES("MOSSSALES");
118+
MOSSSALES("MOSSSALES"),
119+
120+
NONE("NONE"),
121+
122+
GSTONIMPORTS("GSTONIMPORTS");
119123

120124
private String value;
121125

0 commit comments

Comments
 (0)