From 709da7cb8e74c26c8b5e6e0b87e9a848a1c73bac Mon Sep 17 00:00:00 2001 From: GitHub Actions <> Date: Fri, 12 Jul 2024 16:29:47 +0000 Subject: [PATCH 1/5] Update javadoc --- .../sdk/client/class-use/BitPayClient.html | 24 +++++----- .../class-use/BitPayApiException.html | 46 +++++++++---------- .../class-use/BitPayGenericException.html | 46 +++++++++---------- .../sdk/util/class-use/TokenContainer.html | 24 +++++----- docs/overview-tree.html | 4 +- 5 files changed, 72 insertions(+), 72 deletions(-) diff --git a/docs/com/bitpay/sdk/client/class-use/BitPayClient.html b/docs/com/bitpay/sdk/client/class-use/BitPayClient.html index c252de57..eb20b54f 100644 --- a/docs/com/bitpay/sdk/client/class-use/BitPayClient.html +++ b/docs/com/bitpay/sdk/client/class-use/BitPayClient.html @@ -161,10 +161,10 @@
static SettlementClient
getInstance(BitPayClient bitPayClient,
+static PayoutClient
+PayoutClient.getInstance(BitPayClient bitPayClient,
TokenContainer accessTokens)
-Factory method for Settlement Client.
+Factory method for Bill Client.
static LedgerClient
getInstance(BitPayClient bitPayClient,
+static BillClient
+BillClient.getInstance(BitPayClient bitPayClient,
TokenContainer accessTokens)
-Factory method for Ledger Client.
+Factory method for Bill Client.
static BillClient
getInstance(BitPayClient bitPayClient,
+static SettlementClient
+SettlementClient.getInstance(BitPayClient bitPayClient,
TokenContainer accessTokens)
-Factory method for Bill Client.
+Factory method for Settlement Client.
static PayoutClient
getInstance(BitPayClient bitPayClient,
+static LedgerClient
+LedgerClient.getInstance(BitPayClient bitPayClient,
TokenContainer accessTokens)
-Factory method for Bill Client.
+Factory method for Ledger Client.
Invoice
cancel(String invoiceId)
-Boolean
cancel(String payoutId)
+Refund
cancel(String refundId)
-Invoice
cancel(String invoiceId)
+Boolean
cancel(String payoutId)
-Refund
cancel(String refundId)
+fromApacheHttpResponse(org.apache.http.HttpResponse apacheHttpResponse)
Settlement
get(String settlementId)
-Payout
get(String payoutId)
HttpResponse
get(String uri)
Settlement
get(String settlementId)
+PayoutRecipient
get(String recipientId)
@@ -924,19 +924,19 @@ Refund
update(String refundId,
- String status)
-HttpResponse
update(String uri,
String json)
Refund
update(String refundId,
+ String status)
+Invoice
update(String invoiceId,
diff --git a/docs/com/bitpay/sdk/exceptions/class-use/BitPayGenericException.html b/docs/com/bitpay/sdk/exceptions/class-use/BitPayGenericException.html
index 34365cd9..9879fa9d 100644
--- a/docs/com/bitpay/sdk/exceptions/class-use/BitPayGenericException.html
+++ b/docs/com/bitpay/sdk/exceptions/class-use/BitPayGenericException.html
@@ -690,9 +690,9 @@ Uses of
-Invoice
-InvoiceClient.cancel(String invoiceId)
-Delete a previously created BitPay invoice.
+ Boolean
+PayoutClient.cancel(String payoutId)
+Cancel a BitPay Payout.
Refund
cancel(String refundId)
-Invoice
cancel(String invoiceId)
+Boolean
cancel(String payoutId)
-Refund
cancel(String refundId)
+Settlement
get(String settlementId)
-Payout
get(String payoutId)
HttpResponse
get(String uri)
Settlement
get(String settlementId)
+PayoutRecipient
get(String recipientId)
@@ -1054,19 +1054,19 @@ Refund
update(String refundId,
- String status)
-HttpResponse
update(String uri,
String json)
Refund
update(String refundId,
+ String status)
+Invoice
update(String invoiceId,
diff --git a/docs/com/bitpay/sdk/util/class-use/TokenContainer.html b/docs/com/bitpay/sdk/util/class-use/TokenContainer.html
index 40f8ff8c..60e2e3f8 100644
--- a/docs/com/bitpay/sdk/util/class-use/TokenContainer.html
+++ b/docs/com/bitpay/sdk/util/class-use/TokenContainer.html
@@ -169,10 +169,10 @@ Uses of
-static SettlementClient
-SettlementClient.getInstance(BitPayClient bitPayClient,
+static PayoutClient
+PayoutClient.getInstance(BitPayClient bitPayClient,
TokenContainer accessTokens)
-Factory method for Settlement Client.
+Factory method for Bill Client.
@@ -183,24 +183,24 @@ Uses of
-static LedgerClient
-LedgerClient.getInstance(BitPayClient bitPayClient,
+static BillClient
+BillClient.getInstance(BitPayClient bitPayClient,
TokenContainer accessTokens)
-Factory method for Ledger Client.
+Factory method for Bill Client.
-static BillClient
-BillClient.getInstance(BitPayClient bitPayClient,
+static SettlementClient
+SettlementClient.getInstance(BitPayClient bitPayClient,
TokenContainer accessTokens)
-Factory method for Bill Client.
+Factory method for Settlement Client.
-static PayoutClient
-PayoutClient.getInstance(BitPayClient bitPayClient,
+static LedgerClient
+LedgerClient.getInstance(BitPayClient bitPayClient,
TokenContainer accessTokens)
-Factory method for Bill Client.
+Factory method for Ledger Client.
diff --git a/docs/overview-tree.html b/docs/overview-tree.html
index bf71855c..54cdc15a 100644
--- a/docs/overview-tree.html
+++ b/docs/overview-tree.html
@@ -102,8 +102,8 @@ Class Hierarchy
com.bitpay.sdk.exceptions.BitPayExceptionProvider
com.bitpay.sdk.util.BitPayLogger
BitPaySetup
-com.bitpay.sdk.model.ledger.Buyer
com.bitpay.sdk.model.invoice.Buyer
+com.bitpay.sdk.model.ledger.Buyer
com.bitpay.sdk.Client
com.bitpay.sdk.Config
com.bitpay.sdk.ConfigFilePath
@@ -166,8 +166,8 @@ Class Hierarchy
com.bitpay.sdk.model.payout.RecipientStatus
com.bitpay.sdk.model.invoice.Refund
com.bitpay.sdk.client.RefundClient (implements com.bitpay.sdk.client.ResourceClient)
-com.bitpay.sdk.model.settlement.RefundInfo
com.bitpay.sdk.model.invoice.RefundInfo
+com.bitpay.sdk.model.settlement.RefundInfo
com.bitpay.sdk.model.invoice.RefundStatus
com.bitpay.sdk.model.invoice.RefundWebhook
com.bitpay.sdk.client.ResponseParser
From df5be4a7ce51874e9a532161f4ea2fa2e3d7dccf Mon Sep 17 00:00:00 2001
From: Robert Brodie
Date: Fri, 12 Jul 2024 12:49:41 -0400
Subject: [PATCH 2/5] SP-992 Update dependencies
---
pom.xml | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/pom.xml b/pom.xml
index 579a68d0..c6a05d28 100644
--- a/pom.xml
+++ b/pom.xml
@@ -49,7 +49,7 @@
1.8
1.8
2.0.13
- 2.17.1
+ 2.17.2
@@ -131,7 +131,7 @@
org.apache.maven.plugins
maven-surefire-plugin
- 2.22.2
+ 3.3.0
@{argLine} -Duser.timezone=UTC
@@ -176,7 +176,7 @@
org.codehaus.mojo
exec-maven-plugin
- 3.6.0
+ 3.3.0
setup
@@ -219,7 +219,7 @@
org.apache.httpcomponents.core5
httpcore5
- 5.2.4
+ 5.2.5
org.apache.httpcomponents
@@ -229,7 +229,7 @@
com.fasterxml.jackson.core
jackson-annotations
- 2.17.1
+ ${jackson.version}
com.fasterxml.jackson.core
@@ -244,7 +244,7 @@
com.fasterxml.jackson.datatype
jackson-datatype-jsr310
- 2.17.1
+ ${jackson.version}
org.slf4j
@@ -259,7 +259,7 @@
org.junit.jupiter
junit-jupiter-engine
- 5.10.2
+ 5.10.3
test
@@ -278,7 +278,7 @@
net.bytebuddy
byte-buddy
- 1.14.17
+ 1.14.18
commons-io
From 9c1aab917e5516fb46e22e71f39fef6e0e5f5318 Mon Sep 17 00:00:00 2001
From: Robert Brodie
Date: Fri, 12 Jul 2024 12:59:11 -0400
Subject: [PATCH 3/5] SP-992 Update GitHub Actions versions
---
.github/workflows/build.yml | 4 ++--
.github/workflows/documentation.yml | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 8aaa3be7..1e20f274 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -11,8 +11,8 @@ jobs:
java-version: [8, 11, 17, 21]
steps:
- - uses: actions/checkout@v3
- - uses: actions/setup-java@v3
+ - uses: actions/checkout@v4
+ - uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java-version }}
distribution: 'corretto'
diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml
index 32af6760..2f1b4529 100644
--- a/.github/workflows/documentation.yml
+++ b/.github/workflows/documentation.yml
@@ -14,8 +14,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
- - uses: actions/setup-java@v3
+ - uses: actions/checkout@v4
+ - uses: actions/setup-java@v4
with:
java-version: 8
distribution: 'corretto'
From cf4e2d98508ef3b8a282ae00342b6a82e9e54b2f Mon Sep 17 00:00:00 2001
From: Robert Brodie
Date: Fri, 12 Jul 2024 14:23:19 -0400
Subject: [PATCH 4/5] SP-992 Clean up warnings in JavaDoc generation
---
pom.xml | 2 +-
src/main/java/com/bitpay/sdk/Config.java | 2 +-
src/main/java/com/bitpay/sdk/client/CurrencyClient.java | 1 +
src/main/java/com/bitpay/sdk/client/RefundClient.java | 5 +++--
src/main/java/com/bitpay/sdk/util/KeyUtils.java | 2 ++
src/test/java/com/bitpay/sdk/ConfigTest.java | 2 +-
6 files changed, 9 insertions(+), 5 deletions(-)
diff --git a/pom.xml b/pom.xml
index c6a05d28..2680a41b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
com.bitpay
bitpay_sdk
- 10.0.3
+ 10.0.4
jar
BitPay
diff --git a/src/main/java/com/bitpay/sdk/Config.java b/src/main/java/com/bitpay/sdk/Config.java
index 67c99d08..294d025a 100644
--- a/src/main/java/com/bitpay/sdk/Config.java
+++ b/src/main/java/com/bitpay/sdk/Config.java
@@ -34,7 +34,7 @@ public class Config {
/**
* BitPay Plugin Info Version.
*/
- public static final String BITPAY_PLUGIN_INFO = "BitPay_Java_Client_v10.0.3";
+ public static final String BITPAY_PLUGIN_INFO = "BitPay_Java_Client_v10.0.4";
/**
* BitPay Api Frame.
*/
diff --git a/src/main/java/com/bitpay/sdk/client/CurrencyClient.java b/src/main/java/com/bitpay/sdk/client/CurrencyClient.java
index 046661e4..1b224f0a 100644
--- a/src/main/java/com/bitpay/sdk/client/CurrencyClient.java
+++ b/src/main/java/com/bitpay/sdk/client/CurrencyClient.java
@@ -58,6 +58,7 @@ public static CurrencyClient getInstance(BitPayClient bitPayClient) throws BitPa
*
* @param currencyCode String Currency code for which the info will be retrieved.
* @return Map |null
+ * @throws BitPayGenericException BitPayGenericException class
*/
@SuppressWarnings("unchecked")
public Map getInfo(String currencyCode) throws BitPayGenericException {
diff --git a/src/main/java/com/bitpay/sdk/client/RefundClient.java b/src/main/java/com/bitpay/sdk/client/RefundClient.java
index 0c46590e..d70cd526 100644
--- a/src/main/java/com/bitpay/sdk/client/RefundClient.java
+++ b/src/main/java/com/bitpay/sdk/client/RefundClient.java
@@ -79,8 +79,8 @@ public static RefundClient getInstance(
*
* @param refund Refund request data
* @return Refund
-` * @throws BitPayApiException BitPayApiException class
- * @throws BitPayGenericException BitPayGenericException class`
+ * @throws BitPayApiException BitPayApiException class
+ * @throws BitPayGenericException BitPayGenericException class
*/
public Refund create(final Refund refund) throws BitPayApiException, BitPayGenericException {
if (Objects.isNull(refund)) {
@@ -146,6 +146,7 @@ public Refund getById(final String refundId) throws BitPayApiException, BitPayGe
* @param guid Guid
* @return Refund
* @throws BitPayApiException BitPayException
+ * @throws BitPayGenericException BitPayGenericException class
*/
public Refund getByGuid(final String guid) throws BitPayApiException, BitPayGenericException {
validateRefundId(guid);
diff --git a/src/main/java/com/bitpay/sdk/util/KeyUtils.java b/src/main/java/com/bitpay/sdk/util/KeyUtils.java
index 75bc1405..b6ec4a2c 100644
--- a/src/main/java/com/bitpay/sdk/util/KeyUtils.java
+++ b/src/main/java/com/bitpay/sdk/util/KeyUtils.java
@@ -66,6 +66,7 @@ public static ECKey createEcKey() {
*
* @param privateKey the private key
* @return the ec key
+ * @throws BitPayGenericException BitPayGenericException class
*/
public static ECKey createEcKeyFromHexString(String privateKey) throws BitPayGenericException {
byte[] bytes = hexToBytes(privateKey);
@@ -78,6 +79,7 @@ public static ECKey createEcKeyFromHexString(String privateKey) throws BitPayGen
*
* @param privKeyFile the priv key file
* @return the ec key
+ * @throws BitPayGenericException BitPayGenericException class
* @throws IOException the io exception
*/
public static ECKey createEcKeyFromHexStringFile(String privKeyFile) throws IOException, BitPayGenericException {
diff --git a/src/test/java/com/bitpay/sdk/ConfigTest.java b/src/test/java/com/bitpay/sdk/ConfigTest.java
index 7b1516fd..d8188740 100644
--- a/src/test/java/com/bitpay/sdk/ConfigTest.java
+++ b/src/test/java/com/bitpay/sdk/ConfigTest.java
@@ -58,7 +58,7 @@ public void it_should_returns_bitpay_api_version() {
@Test
public void it_should_returns_bitpay_plugin_info() {
- Assertions.assertTrue(Config.BITPAY_PLUGIN_INFO.contains("BitPay_Java_Client_v10.0.3"));
+ Assertions.assertTrue(Config.BITPAY_PLUGIN_INFO.contains("BitPay_Java_Client_v10.0.4"));
}
@Test
From 72b2e1d9c0134e619a0d344e758efac2700df63f Mon Sep 17 00:00:00 2001
From: GitHub Actions <>
Date: Fri, 12 Jul 2024 18:23:50 +0000
Subject: [PATCH 5/5] Update javadoc
---
docs/BitPaySetup.html | 4 ++--
docs/allclasses-frame.html | 2 +-
docs/allclasses-noframe.html | 2 +-
docs/class-use/BitPaySetup.html | 4 ++--
docs/com/bitpay/sdk/Client.html | 4 ++--
docs/com/bitpay/sdk/Config.html | 4 ++--
docs/com/bitpay/sdk/ConfigFilePath.html | 4 ++--
docs/com/bitpay/sdk/Environment.html | 4 ++--
docs/com/bitpay/sdk/PosToken.html | 4 ++--
docs/com/bitpay/sdk/PrivateKey.html | 4 ++--
docs/com/bitpay/sdk/class-use/Client.html | 4 ++--
docs/com/bitpay/sdk/class-use/Config.html | 4 ++--
docs/com/bitpay/sdk/class-use/ConfigFilePath.html | 4 ++--
docs/com/bitpay/sdk/class-use/Environment.html | 4 ++--
docs/com/bitpay/sdk/class-use/PosToken.html | 4 ++--
docs/com/bitpay/sdk/class-use/PrivateKey.html | 4 ++--
docs/com/bitpay/sdk/client/AuthorizationClient.html | 4 ++--
docs/com/bitpay/sdk/client/BillClient.html | 4 ++--
docs/com/bitpay/sdk/client/BitPayClient.html | 4 ++--
docs/com/bitpay/sdk/client/CurrencyClient.html | 6 +++---
docs/com/bitpay/sdk/client/HttpRequestFactory.html | 4 ++--
docs/com/bitpay/sdk/client/HttpResponse.html | 4 ++--
.../com/bitpay/sdk/client/HttpResponseProvider.html | 4 ++--
docs/com/bitpay/sdk/client/InvoiceClient.html | 4 ++--
docs/com/bitpay/sdk/client/LedgerClient.html | 4 ++--
docs/com/bitpay/sdk/client/PayoutClient.html | 4 ++--
docs/com/bitpay/sdk/client/PayoutGroupClient.html | 4 ++--
.../bitpay/sdk/client/PayoutRecipientsClient.html | 4 ++--
docs/com/bitpay/sdk/client/RateClient.html | 4 ++--
docs/com/bitpay/sdk/client/RefundClient.html | 13 ++++++-------
docs/com/bitpay/sdk/client/ResourceClient.html | 4 ++--
docs/com/bitpay/sdk/client/ResponseParser.html | 4 ++--
docs/com/bitpay/sdk/client/SettlementClient.html | 4 ++--
docs/com/bitpay/sdk/client/WalletClient.html | 4 ++--
.../sdk/client/class-use/AuthorizationClient.html | 4 ++--
.../com/bitpay/sdk/client/class-use/BillClient.html | 4 ++--
.../bitpay/sdk/client/class-use/BitPayClient.html | 4 ++--
.../bitpay/sdk/client/class-use/CurrencyClient.html | 4 ++--
.../sdk/client/class-use/HttpRequestFactory.html | 4 ++--
.../bitpay/sdk/client/class-use/HttpResponse.html | 4 ++--
.../sdk/client/class-use/HttpResponseProvider.html | 4 ++--
.../bitpay/sdk/client/class-use/InvoiceClient.html | 4 ++--
.../bitpay/sdk/client/class-use/LedgerClient.html | 4 ++--
.../bitpay/sdk/client/class-use/PayoutClient.html | 4 ++--
.../sdk/client/class-use/PayoutGroupClient.html | 4 ++--
.../client/class-use/PayoutRecipientsClient.html | 4 ++--
.../com/bitpay/sdk/client/class-use/RateClient.html | 4 ++--
.../bitpay/sdk/client/class-use/RefundClient.html | 4 ++--
.../bitpay/sdk/client/class-use/ResourceClient.html | 4 ++--
.../bitpay/sdk/client/class-use/ResponseParser.html | 4 ++--
.../sdk/client/class-use/SettlementClient.html | 4 ++--
.../bitpay/sdk/client/class-use/WalletClient.html | 4 ++--
docs/com/bitpay/sdk/client/package-frame.html | 2 +-
docs/com/bitpay/sdk/client/package-summary.html | 4 ++--
docs/com/bitpay/sdk/client/package-tree.html | 4 ++--
docs/com/bitpay/sdk/client/package-use.html | 4 ++--
.../bitpay/sdk/exceptions/BitPayApiException.html | 4 ++--
docs/com/bitpay/sdk/exceptions/BitPayException.html | 4 ++--
.../sdk/exceptions/BitPayExceptionProvider.html | 4 ++--
.../sdk/exceptions/BitPayGenericException.html | 4 ++--
.../sdk/exceptions/BitPayValidationException.html | 4 ++--
.../exceptions/class-use/BitPayApiException.html | 4 ++--
.../sdk/exceptions/class-use/BitPayException.html | 4 ++--
.../class-use/BitPayExceptionProvider.html | 4 ++--
.../class-use/BitPayGenericException.html | 4 ++--
.../class-use/BitPayValidationException.html | 4 ++--
docs/com/bitpay/sdk/exceptions/package-frame.html | 2 +-
docs/com/bitpay/sdk/exceptions/package-summary.html | 4 ++--
docs/com/bitpay/sdk/exceptions/package-tree.html | 4 ++--
docs/com/bitpay/sdk/exceptions/package-use.html | 4 ++--
docs/com/bitpay/sdk/logger/BitPayLogger.html | 4 ++--
docs/com/bitpay/sdk/logger/EmptyLogger.html | 4 ++--
docs/com/bitpay/sdk/logger/LoggerProvider.html | 4 ++--
.../bitpay/sdk/logger/class-use/BitPayLogger.html | 4 ++--
.../bitpay/sdk/logger/class-use/EmptyLogger.html | 4 ++--
.../bitpay/sdk/logger/class-use/LoggerProvider.html | 4 ++--
docs/com/bitpay/sdk/logger/package-frame.html | 2 +-
docs/com/bitpay/sdk/logger/package-summary.html | 4 ++--
docs/com/bitpay/sdk/logger/package-tree.html | 4 ++--
docs/com/bitpay/sdk/logger/package-use.html | 4 ++--
docs/com/bitpay/sdk/model/Currency.html | 4 ++--
docs/com/bitpay/sdk/model/Facade.html | 4 ++--
docs/com/bitpay/sdk/model/ModelConfiguration.html | 4 ++--
docs/com/bitpay/sdk/model/Policy.html | 4 ++--
docs/com/bitpay/sdk/model/Token.html | 4 ++--
docs/com/bitpay/sdk/model/bill/Bill.html | 4 ++--
docs/com/bitpay/sdk/model/bill/BillStatus.html | 4 ++--
docs/com/bitpay/sdk/model/bill/Item.html | 4 ++--
docs/com/bitpay/sdk/model/bill/class-use/Bill.html | 4 ++--
.../bitpay/sdk/model/bill/class-use/BillStatus.html | 4 ++--
docs/com/bitpay/sdk/model/bill/class-use/Item.html | 4 ++--
docs/com/bitpay/sdk/model/bill/package-frame.html | 2 +-
docs/com/bitpay/sdk/model/bill/package-summary.html | 4 ++--
docs/com/bitpay/sdk/model/bill/package-tree.html | 4 ++--
docs/com/bitpay/sdk/model/bill/package-use.html | 4 ++--
docs/com/bitpay/sdk/model/class-use/Currency.html | 4 ++--
docs/com/bitpay/sdk/model/class-use/Facade.html | 4 ++--
.../sdk/model/class-use/ModelConfiguration.html | 4 ++--
docs/com/bitpay/sdk/model/class-use/Policy.html | 4 ++--
docs/com/bitpay/sdk/model/class-use/Token.html | 4 ++--
docs/com/bitpay/sdk/model/invoice/Buyer.html | 4 ++--
docs/com/bitpay/sdk/model/invoice/Invoice.html | 4 ++--
.../sdk/model/invoice/InvoiceBuyerProvidedInfo.html | 4 ++--
.../bitpay/sdk/model/invoice/InvoiceEventToken.html | 4 ++--
.../sdk/model/invoice/InvoiceItemizedDetails.html | 4 ++--
.../sdk/model/invoice/InvoiceRefundAddress.html | 4 ++--
.../com/bitpay/sdk/model/invoice/InvoiceStatus.html | 4 ++--
.../sdk/model/invoice/InvoiceTransaction.html | 4 ++--
.../sdk/model/invoice/InvoiceUniversalCodes.html | 4 ++--
docs/com/bitpay/sdk/model/invoice/MinerFees.html | 4 ++--
.../com/bitpay/sdk/model/invoice/MinerFeesItem.html | 4 ++--
docs/com/bitpay/sdk/model/invoice/Refund.html | 4 ++--
docs/com/bitpay/sdk/model/invoice/RefundInfo.html | 4 ++--
docs/com/bitpay/sdk/model/invoice/RefundStatus.html | 4 ++--
.../com/bitpay/sdk/model/invoice/RefundWebhook.html | 4 ++--
docs/com/bitpay/sdk/model/invoice/Shopper.html | 4 ++--
.../invoice/SupportedTransactionCurrencies.html | 4 ++--
.../model/invoice/SupportedTransactionCurrency.html | 4 ++--
.../bitpay/sdk/model/invoice/class-use/Buyer.html | 4 ++--
.../bitpay/sdk/model/invoice/class-use/Invoice.html | 4 ++--
.../invoice/class-use/InvoiceBuyerProvidedInfo.html | 4 ++--
.../model/invoice/class-use/InvoiceEventToken.html | 4 ++--
.../invoice/class-use/InvoiceItemizedDetails.html | 4 ++--
.../invoice/class-use/InvoiceRefundAddress.html | 4 ++--
.../sdk/model/invoice/class-use/InvoiceStatus.html | 4 ++--
.../model/invoice/class-use/InvoiceTransaction.html | 4 ++--
.../invoice/class-use/InvoiceUniversalCodes.html | 4 ++--
.../sdk/model/invoice/class-use/MinerFees.html | 4 ++--
.../sdk/model/invoice/class-use/MinerFeesItem.html | 4 ++--
.../bitpay/sdk/model/invoice/class-use/Refund.html | 4 ++--
.../sdk/model/invoice/class-use/RefundInfo.html | 4 ++--
.../sdk/model/invoice/class-use/RefundStatus.html | 4 ++--
.../sdk/model/invoice/class-use/RefundWebhook.html | 4 ++--
.../bitpay/sdk/model/invoice/class-use/Shopper.html | 4 ++--
.../class-use/SupportedTransactionCurrencies.html | 4 ++--
.../class-use/SupportedTransactionCurrency.html | 4 ++--
.../com/bitpay/sdk/model/invoice/package-frame.html | 2 +-
.../bitpay/sdk/model/invoice/package-summary.html | 4 ++--
docs/com/bitpay/sdk/model/invoice/package-tree.html | 4 ++--
docs/com/bitpay/sdk/model/invoice/package-use.html | 4 ++--
docs/com/bitpay/sdk/model/ledger/Buyer.html | 4 ++--
docs/com/bitpay/sdk/model/ledger/Ledger.html | 4 ++--
docs/com/bitpay/sdk/model/ledger/LedgerEntry.html | 4 ++--
.../bitpay/sdk/model/ledger/class-use/Buyer.html | 4 ++--
.../bitpay/sdk/model/ledger/class-use/Ledger.html | 4 ++--
.../sdk/model/ledger/class-use/LedgerEntry.html | 4 ++--
docs/com/bitpay/sdk/model/ledger/package-frame.html | 2 +-
.../bitpay/sdk/model/ledger/package-summary.html | 4 ++--
docs/com/bitpay/sdk/model/ledger/package-tree.html | 4 ++--
docs/com/bitpay/sdk/model/ledger/package-use.html | 4 ++--
docs/com/bitpay/sdk/model/package-frame.html | 2 +-
docs/com/bitpay/sdk/model/package-summary.html | 4 ++--
docs/com/bitpay/sdk/model/package-tree.html | 4 ++--
docs/com/bitpay/sdk/model/package-use.html | 4 ++--
docs/com/bitpay/sdk/model/payout/Payout.html | 4 ++--
docs/com/bitpay/sdk/model/payout/PayoutGroup.html | 4 ++--
.../bitpay/sdk/model/payout/PayoutGroupFailed.html | 4 ++--
.../bitpay/sdk/model/payout/PayoutRecipient.html | 4 ++--
.../bitpay/sdk/model/payout/PayoutRecipients.html | 4 ++--
docs/com/bitpay/sdk/model/payout/PayoutStatus.html | 4 ++--
.../bitpay/sdk/model/payout/PayoutTransaction.html | 4 ++--
.../bitpay/sdk/model/payout/RecipientStatus.html | 4 ++--
.../bitpay/sdk/model/payout/class-use/Payout.html | 4 ++--
.../sdk/model/payout/class-use/PayoutGroup.html | 4 ++--
.../model/payout/class-use/PayoutGroupFailed.html | 4 ++--
.../sdk/model/payout/class-use/PayoutRecipient.html | 4 ++--
.../model/payout/class-use/PayoutRecipients.html | 4 ++--
.../sdk/model/payout/class-use/PayoutStatus.html | 4 ++--
.../model/payout/class-use/PayoutTransaction.html | 4 ++--
.../sdk/model/payout/class-use/RecipientStatus.html | 4 ++--
docs/com/bitpay/sdk/model/payout/package-frame.html | 2 +-
.../bitpay/sdk/model/payout/package-summary.html | 4 ++--
docs/com/bitpay/sdk/model/payout/package-tree.html | 4 ++--
docs/com/bitpay/sdk/model/payout/package-use.html | 4 ++--
docs/com/bitpay/sdk/model/rate/Rate.html | 4 ++--
docs/com/bitpay/sdk/model/rate/Rates.html | 4 ++--
docs/com/bitpay/sdk/model/rate/class-use/Rate.html | 4 ++--
docs/com/bitpay/sdk/model/rate/class-use/Rates.html | 4 ++--
docs/com/bitpay/sdk/model/rate/package-frame.html | 2 +-
docs/com/bitpay/sdk/model/rate/package-summary.html | 4 ++--
docs/com/bitpay/sdk/model/rate/package-tree.html | 4 ++--
docs/com/bitpay/sdk/model/rate/package-use.html | 4 ++--
.../bitpay/sdk/model/settlement/InvoiceData.html | 4 ++--
.../com/bitpay/sdk/model/settlement/PayoutInfo.html | 4 ++--
.../com/bitpay/sdk/model/settlement/RefundInfo.html | 4 ++--
.../com/bitpay/sdk/model/settlement/Settlement.html | 4 ++--
.../sdk/model/settlement/SettlementLedgerEntry.html | 4 ++--
.../bitpay/sdk/model/settlement/WithHoldings.html | 4 ++--
.../sdk/model/settlement/class-use/InvoiceData.html | 4 ++--
.../sdk/model/settlement/class-use/PayoutInfo.html | 4 ++--
.../sdk/model/settlement/class-use/RefundInfo.html | 4 ++--
.../sdk/model/settlement/class-use/Settlement.html | 4 ++--
.../settlement/class-use/SettlementLedgerEntry.html | 4 ++--
.../model/settlement/class-use/WithHoldings.html | 4 ++--
.../bitpay/sdk/model/settlement/package-frame.html | 2 +-
.../sdk/model/settlement/package-summary.html | 4 ++--
.../bitpay/sdk/model/settlement/package-tree.html | 4 ++--
.../bitpay/sdk/model/settlement/package-use.html | 4 ++--
docs/com/bitpay/sdk/model/wallet/Currencies.html | 4 ++--
docs/com/bitpay/sdk/model/wallet/CurrencyQr.html | 4 ++--
docs/com/bitpay/sdk/model/wallet/Wallet.html | 4 ++--
.../sdk/model/wallet/class-use/Currencies.html | 4 ++--
.../sdk/model/wallet/class-use/CurrencyQr.html | 4 ++--
.../bitpay/sdk/model/wallet/class-use/Wallet.html | 4 ++--
docs/com/bitpay/sdk/model/wallet/package-frame.html | 2 +-
.../bitpay/sdk/model/wallet/package-summary.html | 4 ++--
docs/com/bitpay/sdk/model/wallet/package-tree.html | 4 ++--
docs/com/bitpay/sdk/model/wallet/package-use.html | 4 ++--
docs/com/bitpay/sdk/package-frame.html | 2 +-
docs/com/bitpay/sdk/package-summary.html | 4 ++--
docs/com/bitpay/sdk/package-tree.html | 4 ++--
docs/com/bitpay/sdk/package-use.html | 4 ++--
docs/com/bitpay/sdk/util/BitPayLogger.html | 4 ++--
docs/com/bitpay/sdk/util/GuidGenerator.html | 4 ++--
docs/com/bitpay/sdk/util/JsonMapperFactory.html | 4 ++--
docs/com/bitpay/sdk/util/KeyUtils.html | 8 ++++----
docs/com/bitpay/sdk/util/ParameterAdder.html | 4 ++--
docs/com/bitpay/sdk/util/TokenContainer.html | 4 ++--
.../com/bitpay/sdk/util/class-use/BitPayLogger.html | 4 ++--
.../bitpay/sdk/util/class-use/GuidGenerator.html | 4 ++--
.../sdk/util/class-use/JsonMapperFactory.html | 4 ++--
docs/com/bitpay/sdk/util/class-use/KeyUtils.html | 4 ++--
.../bitpay/sdk/util/class-use/ParameterAdder.html | 4 ++--
.../bitpay/sdk/util/class-use/TokenContainer.html | 4 ++--
docs/com/bitpay/sdk/util/package-frame.html | 2 +-
docs/com/bitpay/sdk/util/package-summary.html | 4 ++--
docs/com/bitpay/sdk/util/package-tree.html | 4 ++--
docs/com/bitpay/sdk/util/package-use.html | 4 ++--
.../Iso8601ToZonedDateTimeDeserializer.html | 4 ++--
.../ZonedDateTimeToIso8601Serializer.html | 4 ++--
.../Iso8601ToZonedDateTimeDeserializer.html | 4 ++--
.../class-use/ZonedDateTimeToIso8601Serializer.html | 4 ++--
.../bitpay/sdk/util/serializer/package-frame.html | 2 +-
.../bitpay/sdk/util/serializer/package-summary.html | 4 ++--
.../bitpay/sdk/util/serializer/package-tree.html | 4 ++--
.../com/bitpay/sdk/util/serializer/package-use.html | 4 ++--
docs/constant-values.html | 6 +++---
docs/deprecated-list.html | 4 ++--
docs/help-doc.html | 4 ++--
docs/index-all.html | 4 ++--
docs/index.html | 2 +-
docs/overview-frame.html | 2 +-
docs/overview-summary.html | 6 +++---
docs/overview-tree.html | 4 ++--
docs/package-frame.html | 2 +-
docs/package-summary.html | 4 ++--
docs/package-tree.html | 4 ++--
docs/package-use.html | 4 ++--
docs/serialized-form.html | 4 ++--
249 files changed, 488 insertions(+), 489 deletions(-)
diff --git a/docs/BitPaySetup.html b/docs/BitPaySetup.html
index df3a4b57..d3bff16b 100644
--- a/docs/BitPaySetup.html
+++ b/docs/BitPaySetup.html
@@ -4,7 +4,7 @@
-BitPaySetup (BitPay 10.0.3 API)
+BitPaySetup (BitPay 10.0.4 API)
@@ -12,7 +12,7 @@
diff --git a/docs/allclasses-noframe.html b/docs/allclasses-noframe.html
index 0f60fdf2..e4b6ea28 100644
--- a/docs/allclasses-noframe.html
+++ b/docs/allclasses-noframe.html
@@ -4,7 +4,7 @@
-All Classes (BitPay 10.0.3 API)
+All Classes (BitPay 10.0.4 API)
diff --git a/docs/class-use/BitPaySetup.html b/docs/class-use/BitPaySetup.html
index ca094856..89068053 100644
--- a/docs/class-use/BitPaySetup.html
+++ b/docs/class-use/BitPaySetup.html
@@ -4,7 +4,7 @@
-Uses of Class BitPaySetup (BitPay 10.0.3 API)
+Uses of Class BitPaySetup (BitPay 10.0.4 API)
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
diff --git a/docs/com/bitpay/sdk/client/package-summary.html b/docs/com/bitpay/sdk/client/package-summary.html
index 251052c8..088c92e1 100644
--- a/docs/com/bitpay/sdk/client/package-summary.html
+++ b/docs/com/bitpay/sdk/client/package-summary.html
@@ -4,7 +4,7 @@
-com.bitpay.sdk.client (BitPay 10.0.3 API)
+com.bitpay.sdk.client (BitPay 10.0.4 API)
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
diff --git a/docs/com/bitpay/sdk/exceptions/package-summary.html b/docs/com/bitpay/sdk/exceptions/package-summary.html
index 833533e3..0d4a9bb7 100644
--- a/docs/com/bitpay/sdk/exceptions/package-summary.html
+++ b/docs/com/bitpay/sdk/exceptions/package-summary.html
@@ -4,7 +4,7 @@
-com.bitpay.sdk.exceptions (BitPay 10.0.3 API)
+com.bitpay.sdk.exceptions (BitPay 10.0.4 API)
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
diff --git a/docs/com/bitpay/sdk/logger/package-summary.html b/docs/com/bitpay/sdk/logger/package-summary.html
index 5dc8305e..e7e3122c 100644
--- a/docs/com/bitpay/sdk/logger/package-summary.html
+++ b/docs/com/bitpay/sdk/logger/package-summary.html
@@ -4,7 +4,7 @@
-com.bitpay.sdk.logger (BitPay 10.0.3 API)
+com.bitpay.sdk.logger (BitPay 10.0.4 API)
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
diff --git a/docs/com/bitpay/sdk/model/bill/package-summary.html b/docs/com/bitpay/sdk/model/bill/package-summary.html
index 9b25b9f6..156f543e 100644
--- a/docs/com/bitpay/sdk/model/bill/package-summary.html
+++ b/docs/com/bitpay/sdk/model/bill/package-summary.html
@@ -4,7 +4,7 @@
-com.bitpay.sdk.model.bill (BitPay 10.0.3 API)
+com.bitpay.sdk.model.bill (BitPay 10.0.4 API)
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
diff --git a/docs/com/bitpay/sdk/model/invoice/package-summary.html b/docs/com/bitpay/sdk/model/invoice/package-summary.html
index 1d4b5b3e..6d60b745 100644
--- a/docs/com/bitpay/sdk/model/invoice/package-summary.html
+++ b/docs/com/bitpay/sdk/model/invoice/package-summary.html
@@ -4,7 +4,7 @@
-com.bitpay.sdk.model.invoice (BitPay 10.0.3 API)
+com.bitpay.sdk.model.invoice (BitPay 10.0.4 API)
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
diff --git a/docs/com/bitpay/sdk/model/ledger/package-summary.html b/docs/com/bitpay/sdk/model/ledger/package-summary.html
index 399708af..b0401466 100644
--- a/docs/com/bitpay/sdk/model/ledger/package-summary.html
+++ b/docs/com/bitpay/sdk/model/ledger/package-summary.html
@@ -4,7 +4,7 @@
-com.bitpay.sdk.model.ledger (BitPay 10.0.3 API)
+com.bitpay.sdk.model.ledger (BitPay 10.0.4 API)
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
diff --git a/docs/com/bitpay/sdk/model/package-summary.html b/docs/com/bitpay/sdk/model/package-summary.html
index fe84bdbf..91da3502 100644
--- a/docs/com/bitpay/sdk/model/package-summary.html
+++ b/docs/com/bitpay/sdk/model/package-summary.html
@@ -4,7 +4,7 @@
-com.bitpay.sdk.model (BitPay 10.0.3 API)
+com.bitpay.sdk.model (BitPay 10.0.4 API)
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
diff --git a/docs/com/bitpay/sdk/model/payout/package-summary.html b/docs/com/bitpay/sdk/model/payout/package-summary.html
index 424505c1..9d95d036 100644
--- a/docs/com/bitpay/sdk/model/payout/package-summary.html
+++ b/docs/com/bitpay/sdk/model/payout/package-summary.html
@@ -4,7 +4,7 @@
-com.bitpay.sdk.model.payout (BitPay 10.0.3 API)
+com.bitpay.sdk.model.payout (BitPay 10.0.4 API)
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
diff --git a/docs/com/bitpay/sdk/model/rate/package-summary.html b/docs/com/bitpay/sdk/model/rate/package-summary.html
index 9f184578..1b878244 100644
--- a/docs/com/bitpay/sdk/model/rate/package-summary.html
+++ b/docs/com/bitpay/sdk/model/rate/package-summary.html
@@ -4,7 +4,7 @@
-com.bitpay.sdk.model.rate (BitPay 10.0.3 API)
+com.bitpay.sdk.model.rate (BitPay 10.0.4 API)
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
diff --git a/docs/com/bitpay/sdk/model/settlement/package-summary.html b/docs/com/bitpay/sdk/model/settlement/package-summary.html
index 45d0f885..04322bd9 100644
--- a/docs/com/bitpay/sdk/model/settlement/package-summary.html
+++ b/docs/com/bitpay/sdk/model/settlement/package-summary.html
@@ -4,7 +4,7 @@
-com.bitpay.sdk.model.settlement (BitPay 10.0.3 API)
+com.bitpay.sdk.model.settlement (BitPay 10.0.4 API)
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
diff --git a/docs/com/bitpay/sdk/model/wallet/package-summary.html b/docs/com/bitpay/sdk/model/wallet/package-summary.html
index a6d014d1..ed13ee7c 100644
--- a/docs/com/bitpay/sdk/model/wallet/package-summary.html
+++ b/docs/com/bitpay/sdk/model/wallet/package-summary.html
@@ -4,7 +4,7 @@
-com.bitpay.sdk.model.wallet (BitPay 10.0.3 API)
+com.bitpay.sdk.model.wallet (BitPay 10.0.4 API)
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
diff --git a/docs/com/bitpay/sdk/package-summary.html b/docs/com/bitpay/sdk/package-summary.html
index 3a72173e..852d64b9 100644
--- a/docs/com/bitpay/sdk/package-summary.html
+++ b/docs/com/bitpay/sdk/package-summary.html
@@ -4,7 +4,7 @@
-com.bitpay.sdk (BitPay 10.0.3 API)
+com.bitpay.sdk (BitPay 10.0.4 API)
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
diff --git a/docs/com/bitpay/sdk/util/package-summary.html b/docs/com/bitpay/sdk/util/package-summary.html
index 3b26e929..4194c972 100644
--- a/docs/com/bitpay/sdk/util/package-summary.html
+++ b/docs/com/bitpay/sdk/util/package-summary.html
@@ -4,7 +4,7 @@
-com.bitpay.sdk.util (BitPay 10.0.3 API)
+com.bitpay.sdk.util (BitPay 10.0.4 API)
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
diff --git a/docs/com/bitpay/sdk/util/serializer/package-summary.html b/docs/com/bitpay/sdk/util/serializer/package-summary.html
index e85088d8..5e1da723 100644
--- a/docs/com/bitpay/sdk/util/serializer/package-summary.html
+++ b/docs/com/bitpay/sdk/util/serializer/package-summary.html
@@ -4,7 +4,7 @@
-com.bitpay.sdk.util.serializer (BitPay 10.0.3 API)
+com.bitpay.sdk.util.serializer (BitPay 10.0.4 API)
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
diff --git a/docs/overview-summary.html b/docs/overview-summary.html
index ab0c968a..db81d0ab 100644
--- a/docs/overview-summary.html
+++ b/docs/overview-summary.html
@@ -4,7 +4,7 @@
-Overview (BitPay 10.0.3 API)
+Overview (BitPay 10.0.4 API)
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
diff --git a/docs/package-summary.html b/docs/package-summary.html
index 682d712b..86a9c0d9 100644
--- a/docs/package-summary.html
+++ b/docs/package-summary.html
@@ -4,7 +4,7 @@
- (BitPay 10.0.3 API)
+ (BitPay 10.0.4 API)
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@
@@ -12,7 +12,7 @@