Skip to content

Commit 37eb02e

Browse files
committed
add DocumentConfig#taxNumber
1 parent dce34af commit 37eb02e

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ Auto-generated Java model classes for the Shopware Store API, providing type-saf
1414
<dependency>
1515
<groupId>de.codebarista</groupId>
1616
<artifactId>shopware-model</artifactId>
17-
<version>0.0.2</version>
17+
<version>0.0.4</version>
1818
</dependency>
1919
```
2020

2121
### Gradle
2222

2323
```gradle
24-
implementation 'de.codebarista:shopware-model:0.0.2'
24+
implementation 'de.codebarista:shopware-model:0.0.4'
2525
```
2626

2727
## Package Structure

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
}
99

1010
group = 'de.codebarista'
11-
version = '0.0.3'
11+
version = '0.0.4'
1212

1313
java {
1414
toolchain {

src/main/java/de/codebarista/shopware/model/core/DocumentConfig.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ public class DocumentConfig {
3838
private String executiveDirector;
3939
@JsonProperty("vatId")
4040
private String vatId;
41+
@JsonProperty("taxNumber")
42+
private String taxNumber;
4143
@JsonProperty("bankIban")
4244
private String bankIban;
4345
@JsonProperty("bankBic")
@@ -141,6 +143,13 @@ public String getVatId() {
141143
return vatId;
142144
}
143145

146+
/**
147+
* Gets the {@link #taxNumber}.
148+
*/
149+
public String getTaxNumber() {
150+
return taxNumber;
151+
}
152+
144153
/**
145154
* Gets the {@link #bankIban}.
146155
*/

0 commit comments

Comments
 (0)