Skip to content

Commit 86795db

Browse files
author
Konstantin Yakushev
committed
Merge branch 'release/1.10.1'
2 parents 68f86ba + 52b8bfd commit 86795db

File tree

208 files changed

+2402
-1758
lines changed

Some content is hidden

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

208 files changed

+2402
-1758
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
# Change Log
22

3-
## [1.10.0](https://github.com/bunq/sdk_java/tree/1.10.0) (2019-05-09)
3+
## [Unreleased](https://github.com/bunq/sdk_java/tree/HEAD)
4+
5+
[Full Changelog](https://github.com/bunq/sdk_java/compare/1.10.0...HEAD)
6+
7+
**Closed issues:**
8+
9+
- Support for MonetaryAccountBankSavings is missing [\#113](https://github.com/bunq/sdk_java/issues/113)
410

11+
## [1.10.0](https://github.com/bunq/sdk_java/tree/1.10.0) (2019-05-09)
512
[Full Changelog](https://github.com/bunq/sdk_java/compare/1.1.0...1.10.0)
613

714
**Closed issues:**

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group 'com.bunq.sdk'
2-
version '1.10.0'
2+
version '1.10.1'
33

44
apply plugin: 'java'
55
apply plugin: 'maven'

src/main/java/com/bunq/sdk/http/BunqHeader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public enum BunqHeader {
1818
LANGUAGE("X-Bunq-Language", "en_US"),
1919
REGION("X-Bunq-Region", "nl_NL"),
2020
SERVER_SIGNATURE("X-Bunq-Server-Signature"),
21-
USER_AGENT("User-Agent", "bunq-sdk-java/1.10.0");
21+
USER_AGENT("User-Agent", "bunq-sdk-java/1.10.1");
2222

2323
private static final String PREFIX = "X-Bunq-";
2424

src/main/java/com/bunq/sdk/model/generated/endpoint/AttachmentConversationContent.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@ public static BunqResponse<byte[]> list(Integer chatConversationId, Integer atta
5252

5353
/**
5454
*/
55-
public boolean isAllFieldNull() {
56-
return true;
55+
public static AttachmentConversationContent fromJsonReader(JsonReader reader) {
56+
return fromJsonReader(AttachmentConversationContent.class, reader);
5757
}
5858

5959
/**
6060
*/
61-
public static AttachmentConversationContent fromJsonReader(JsonReader reader) {
62-
return fromJsonReader(AttachmentConversationContent.class, reader);
61+
public boolean isAllFieldNull() {
62+
return true;
6363
}
6464

6565
}

src/main/java/com/bunq/sdk/model/generated/endpoint/AttachmentMonetaryAccount.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,12 @@ public static BunqResponse<Integer> create(Integer monetaryAccountId, byte[] byt
5757
return create(monetaryAccountId, null, bytes);
5858
}
5959

60+
/**
61+
*/
62+
public static AttachmentMonetaryAccount fromJsonReader(JsonReader reader) {
63+
return fromJsonReader(AttachmentMonetaryAccount.class, reader);
64+
}
65+
6066
/**
6167
* The attachment.
6268
*/
@@ -93,10 +99,4 @@ public boolean isAllFieldNull() {
9399
return true;
94100
}
95101

96-
/**
97-
*/
98-
public static AttachmentMonetaryAccount fromJsonReader(JsonReader reader) {
99-
return fromJsonReader(AttachmentMonetaryAccount.class, reader);
100-
}
101-
102102
}

src/main/java/com/bunq/sdk/model/generated/endpoint/AttachmentPublic.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,12 @@ public static BunqResponse<AttachmentPublic> get(String attachmentPublicUuid, Ma
9797
return get(attachmentPublicUuid, params, null);
9898
}
9999

100+
/**
101+
*/
102+
public static AttachmentPublic fromJsonReader(JsonReader reader) {
103+
return fromJsonReader(AttachmentPublic.class, reader);
104+
}
105+
100106
/**
101107
* The UUID of the attachment.
102108
*/
@@ -163,10 +169,4 @@ public boolean isAllFieldNull() {
163169
return true;
164170
}
165171

166-
/**
167-
*/
168-
public static AttachmentPublic fromJsonReader(JsonReader reader) {
169-
return fromJsonReader(AttachmentPublic.class, reader);
170-
}
171-
172172
}

src/main/java/com/bunq/sdk/model/generated/endpoint/AttachmentPublicContent.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,14 @@ public static BunqResponse<byte[]> list(String attachmentPublicUuid, Map<String,
4848

4949
/**
5050
*/
51-
public boolean isAllFieldNull() {
52-
return true;
51+
public static AttachmentPublicContent fromJsonReader(JsonReader reader) {
52+
return fromJsonReader(AttachmentPublicContent.class, reader);
5353
}
5454

5555
/**
5656
*/
57-
public static AttachmentPublicContent fromJsonReader(JsonReader reader) {
58-
return fromJsonReader(AttachmentPublicContent.class, reader);
57+
public boolean isAllFieldNull() {
58+
return true;
5959
}
6060

6161
}

src/main/java/com/bunq/sdk/model/generated/endpoint/AttachmentTab.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,12 @@ public static BunqResponse<AttachmentTab> get(Integer attachmentTabId, Integer m
106106
return get(attachmentTabId, monetaryAccountId, params, null);
107107
}
108108

109+
/**
110+
*/
111+
public static AttachmentTab fromJsonReader(JsonReader reader) {
112+
return fromJsonReader(AttachmentTab.class, reader);
113+
}
114+
109115
/**
110116
* The id of the attachment.
111117
*/
@@ -172,10 +178,4 @@ public boolean isAllFieldNull() {
172178
return true;
173179
}
174180

175-
/**
176-
*/
177-
public static AttachmentTab fromJsonReader(JsonReader reader) {
178-
return fromJsonReader(AttachmentTab.class, reader);
179-
}
180-
181181
}

src/main/java/com/bunq/sdk/model/generated/endpoint/AttachmentTabContent.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@ public static BunqResponse<byte[]> list(Integer attachmentTabId, Integer monetar
5252

5353
/**
5454
*/
55-
public boolean isAllFieldNull() {
56-
return true;
55+
public static AttachmentTabContent fromJsonReader(JsonReader reader) {
56+
return fromJsonReader(AttachmentTabContent.class, reader);
5757
}
5858

5959
/**
6060
*/
61-
public static AttachmentTabContent fromJsonReader(JsonReader reader) {
62-
return fromJsonReader(AttachmentTabContent.class, reader);
61+
public boolean isAllFieldNull() {
62+
return true;
6363
}
6464

6565
}

src/main/java/com/bunq/sdk/model/generated/endpoint/AttachmentUser.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,12 @@ public static BunqResponse<AttachmentUser> get(Integer attachmentUserId, Map<Str
7979
return get(attachmentUserId, params, null);
8080
}
8181

82+
/**
83+
*/
84+
public static AttachmentUser fromJsonReader(JsonReader reader) {
85+
return fromJsonReader(AttachmentUser.class, reader);
86+
}
87+
8288
/**
8389
* The id of the attachment.
8490
*/
@@ -145,10 +151,4 @@ public boolean isAllFieldNull() {
145151
return true;
146152
}
147153

148-
/**
149-
*/
150-
public static AttachmentUser fromJsonReader(JsonReader reader) {
151-
return fromJsonReader(AttachmentUser.class, reader);
152-
}
153-
154154
}

0 commit comments

Comments
 (0)