-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #155 from avadev/23.11.0
Update for 23.11.0
- Loading branch information
Showing
16 changed files
with
2,511 additions
and
827 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1,806 changes: 988 additions & 818 deletions
1,806
src/main/java/net/avalara/avatax/rest/client/AvaTaxClient.java
Large diffs are not rendered by default.
Oops, something went wrong.
80 changes: 80 additions & 0 deletions
80
src/main/java/net/avalara/avatax/rest/client/models/BadRequestErrorResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
package net.avalara.avatax.rest.client.models; | ||
|
||
import net.avalara.avatax.rest.client.enums.*; | ||
import net.avalara.avatax.rest.client.serializer.JsonSerializer; | ||
|
||
import java.lang.Override; | ||
import java.math.BigDecimal; | ||
import java.util.ArrayList; | ||
import java.util.Date; | ||
import java.util.HashMap; | ||
|
||
/* | ||
* AvaTax Software Development Kit for Java JRE based environments | ||
* | ||
* (c) 2004-2018 Avalara, Inc. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
* | ||
* @author Dustin Welden <[email protected]> | ||
* @copyright 2004-2018 Avalara, Inc. | ||
* @license https://www.apache.org/licenses/LICENSE-2.0 | ||
* @link https://github.com/avadev/AvaTax-REST-V2-JRE-SDK | ||
* Swagger name: AvaTaxClient | ||
*/ | ||
|
||
/** | ||
* This is used to map the error details in response | ||
*/ | ||
public class BadRequestErrorResponse { | ||
|
||
|
||
private Integer code; | ||
|
||
/** | ||
* Getter for code | ||
* | ||
* Status code in the response | ||
*/ | ||
public Integer getCode() { | ||
return this.code; | ||
} | ||
|
||
/** | ||
* Setter for code | ||
* | ||
* Status code in the response | ||
*/ | ||
public void setCode(Integer value) { | ||
this.code = value; | ||
} | ||
|
||
private String message; | ||
|
||
/** | ||
* Getter for message | ||
* | ||
* Error message in the response | ||
*/ | ||
public String getMessage() { | ||
return this.message; | ||
} | ||
|
||
/** | ||
* Setter for message | ||
* | ||
* Error message in the response | ||
*/ | ||
public void setMessage(String value) { | ||
this.message = value; | ||
} | ||
|
||
/** | ||
* Returns a JSON string representation of BadRequestErrorResponse | ||
*/ | ||
@Override | ||
public String toString() { | ||
return JsonSerializer.SerializeObject(this); | ||
} | ||
} |
80 changes: 80 additions & 0 deletions
80
src/main/java/net/avalara/avatax/rest/client/models/Context.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
package net.avalara.avatax.rest.client.models; | ||
|
||
import net.avalara.avatax.rest.client.enums.*; | ||
import net.avalara.avatax.rest.client.serializer.JsonSerializer; | ||
|
||
import java.lang.Override; | ||
import java.math.BigDecimal; | ||
import java.util.ArrayList; | ||
import java.util.Date; | ||
import java.util.HashMap; | ||
|
||
/* | ||
* AvaTax Software Development Kit for Java JRE based environments | ||
* | ||
* (c) 2004-2018 Avalara, Inc. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
* | ||
* @author Dustin Welden <[email protected]> | ||
* @copyright 2004-2018 Avalara, Inc. | ||
* @license https://www.apache.org/licenses/LICENSE-2.0 | ||
* @link https://github.com/avadev/AvaTax-REST-V2-JRE-SDK | ||
* Swagger name: AvaTaxClient | ||
*/ | ||
|
||
/** | ||
* Model to represent the system | ||
*/ | ||
public class Context { | ||
|
||
|
||
private String id; | ||
|
||
/** | ||
* Getter for id | ||
* | ||
* Unique id of the system | ||
*/ | ||
public String getId() { | ||
return this.id; | ||
} | ||
|
||
/** | ||
* Setter for id | ||
* | ||
* Unique id of the system | ||
*/ | ||
public void setId(String value) { | ||
this.id = value; | ||
} | ||
|
||
private String system; | ||
|
||
/** | ||
* Getter for system | ||
* | ||
* System name | ||
*/ | ||
public String getSystem() { | ||
return this.system; | ||
} | ||
|
||
/** | ||
* Setter for system | ||
* | ||
* System name | ||
*/ | ||
public void setSystem(String value) { | ||
this.system = value; | ||
} | ||
|
||
/** | ||
* Returns a JSON string representation of Context | ||
*/ | ||
@Override | ||
public String toString() { | ||
return JsonSerializer.SerializeObject(this); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
80 changes: 80 additions & 0 deletions
80
src/main/java/net/avalara/avatax/rest/client/models/DcvCreationResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
package net.avalara.avatax.rest.client.models; | ||
|
||
import net.avalara.avatax.rest.client.enums.*; | ||
import net.avalara.avatax.rest.client.serializer.JsonSerializer; | ||
|
||
import java.lang.Override; | ||
import java.math.BigDecimal; | ||
import java.util.ArrayList; | ||
import java.util.Date; | ||
import java.util.HashMap; | ||
|
||
/* | ||
* AvaTax Software Development Kit for Java JRE based environments | ||
* | ||
* (c) 2004-2018 Avalara, Inc. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
* | ||
* @author Dustin Welden <[email protected]> | ||
* @copyright 2004-2018 Avalara, Inc. | ||
* @license https://www.apache.org/licenses/LICENSE-2.0 | ||
* @link https://github.com/avadev/AvaTax-REST-V2-JRE-SDK | ||
* Swagger name: AvaTaxClient | ||
*/ | ||
|
||
/** | ||
* Model used for Domain control verification response | ||
*/ | ||
public class DcvCreationResponse { | ||
|
||
|
||
private String message; | ||
|
||
/** | ||
* Getter for message | ||
* | ||
* Domain control verification is already exist or newly created | ||
*/ | ||
public String getMessage() { | ||
return this.message; | ||
} | ||
|
||
/** | ||
* Setter for message | ||
* | ||
* Domain control verification is already exist or newly created | ||
*/ | ||
public void setMessage(String value) { | ||
this.message = value; | ||
} | ||
|
||
private DcvViewModel dcvViewModel; | ||
|
||
/** | ||
* Getter for dcvViewModel | ||
* | ||
* | ||
*/ | ||
public DcvViewModel getDcvViewModel() { | ||
return this.dcvViewModel; | ||
} | ||
|
||
/** | ||
* Setter for dcvViewModel | ||
* | ||
* | ||
*/ | ||
public void setDcvViewModel(DcvViewModel value) { | ||
this.dcvViewModel = value; | ||
} | ||
|
||
/** | ||
* Returns a JSON string representation of DcvCreationResponse | ||
*/ | ||
@Override | ||
public String toString() { | ||
return JsonSerializer.SerializeObject(this); | ||
} | ||
} |
Oops, something went wrong.