From 86248df8775227b117e3670ec26f9cc36ee67822 Mon Sep 17 00:00:00 2001 From: Antonio Buedo Date: Fri, 17 Sep 2021 17:41:35 +0200 Subject: [PATCH 1/2] - Invoice model updated --- .../com/bitpay/sdk/model/Invoice/Invoice.java | 29 ++++++++++--------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/src/main/java/com/bitpay/sdk/model/Invoice/Invoice.java b/src/main/java/com/bitpay/sdk/model/Invoice/Invoice.java index 5e8b8b87..bffaea77 100644 --- a/src/main/java/com/bitpay/sdk/model/Invoice/Invoice.java +++ b/src/main/java/com/bitpay/sdk/model/Invoice/Invoice.java @@ -350,6 +350,17 @@ public void setItemizedDetails(List _itemizedDetails) { this._itemizedDetails = _itemizedDetails; } + @JsonProperty("bitpayIdRequired") + @JsonInclude(JsonInclude.Include.NON_DEFAULT) + public boolean getBitpayIdRequired() { + return _bitpayIdRequired; + } + + @JsonProperty("bitpayIdRequired") + public void setBitpayIdRequired(boolean _bitpayIdRequired) { + this._bitpayIdRequired = _bitpayIdRequired; + } + // Buyer data // @@ -398,12 +409,12 @@ public void setStatus(String _status) { } @JsonIgnore - public Boolean getLowFeeDetected() { + public boolean getLowFeeDetected() { return _lowFeeDetected; } @JsonProperty("lowFeeDetected") - public void setLowFeeDetected(Boolean _lowFeeDetected) { + public void setLowFeeDetected(boolean _lowFeeDetected) { this._lowFeeDetected = _lowFeeDetected; } @@ -588,22 +599,12 @@ public void setExchangeRates(Hashtable> _excha } @JsonIgnore - public Boolean getIsCancelled() { + public boolean getIsCancelled() { return _isCancelled; } @JsonProperty("isCancelled") - public void setIsCancelled(Boolean _isCancelled) { + public void setIsCancelled(boolean _isCancelled) { this._isCancelled = _isCancelled; } - - @JsonIgnore - public Boolean getBitpayIdRequired() { - return _bitpayIdRequired; - } - - @JsonProperty("bitpayIdRequired") - public void setBitpayIdRequired(Boolean _bitpayIdRequired) { - this._bitpayIdRequired = _bitpayIdRequired; - } } From 5297b71e99c9ad1f28d2d99b123c9a95d2851d80 Mon Sep 17 00:00:00 2001 From: Antonio Buedo Date: Fri, 17 Sep 2021 17:44:10 +0200 Subject: [PATCH 2/2] - Apidocs updated --- apidocs/allclasses-index.html | 4 +- apidocs/allpackages-index.html | 4 +- apidocs/com/bitpay/sdk/BitPayException.html | 4 +- apidocs/com/bitpay/sdk/Client.html | 8 +-- apidocs/com/bitpay/sdk/Config.html | 4 +- apidocs/com/bitpay/sdk/Env.Tokens.html | 4 +- apidocs/com/bitpay/sdk/Env.html | 4 +- .../sdk/exceptions/BillCreationException.html | 4 +- .../sdk/exceptions/BillDeliveryException.html | 4 +- .../bitpay/sdk/exceptions/BillException.html | 4 +- .../sdk/exceptions/BillQueryException.html | 4 +- .../sdk/exceptions/BillUpdateException.html | 4 +- .../sdk/exceptions/BitPayException.html | 4 +- .../sdk/exceptions/CurrencyException.html | 4 +- .../exceptions/CurrencyQueryException.html | 4 +- .../exceptions/InvoiceCreationException.html | 4 +- .../sdk/exceptions/InvoiceException.html | 4 +- .../sdk/exceptions/InvoiceQueryException.html | 4 +- .../sdk/exceptions/LedgerException.html | 4 +- .../sdk/exceptions/LedgerQueryException.html | 4 +- .../PayoutCancellationException.html | 4 +- .../exceptions/PayoutCreationException.html | 4 +- .../sdk/exceptions/PayoutException.html | 4 +- .../sdk/exceptions/PayoutQueryException.html | 4 +- .../bitpay/sdk/exceptions/RateException.html | 4 +- .../sdk/exceptions/RateQueryException.html | 4 +- .../RefundCancellationException.html | 4 +- .../exceptions/RefundCreationException.html | 4 +- .../sdk/exceptions/RefundException.html | 4 +- .../sdk/exceptions/RefundQueryException.html | 4 +- .../sdk/exceptions/SettlementException.html | 4 +- .../exceptions/SettlementQueryException.html | 4 +- .../SubscriptionCreationException.html | 4 +- .../sdk/exceptions/SubscriptionException.html | 4 +- .../SubscriptionQueryException.html | 4 +- .../SubscriptionUpdateException.html | 4 +- .../sdk/exceptions/package-summary.html | 4 +- .../bitpay/sdk/exceptions/package-tree.html | 4 +- apidocs/com/bitpay/sdk/model/Bill/Bill.html | 4 +- .../com/bitpay/sdk/model/Bill/BillStatus.html | 4 +- apidocs/com/bitpay/sdk/model/Bill/Item.html | 4 +- .../sdk/model/Bill/package-summary.html | 4 +- .../bitpay/sdk/model/Bill/package-tree.html | 4 +- apidocs/com/bitpay/sdk/model/Currency.html | 4 +- apidocs/com/bitpay/sdk/model/Facade.html | 4 +- .../com/bitpay/sdk/model/Invoice/Buyer.html | 4 +- .../com/bitpay/sdk/model/Invoice/Invoice.html | 66 +++++++++--------- .../Invoice/InvoiceBuyerProvidedInfo.html | 4 +- .../sdk/model/Invoice/InvoiceStatus.html | 4 +- .../sdk/model/Invoice/InvoiceTransaction.html | 4 +- .../bitpay/sdk/model/Invoice/MinerFees.html | 4 +- .../sdk/model/Invoice/MinerFeesItem.html | 4 +- .../com/bitpay/sdk/model/Invoice/Refund.html | 4 +- .../bitpay/sdk/model/Invoice/RefundInfo.html | 4 +- .../sdk/model/Invoice/RefundParams.html | 4 +- .../sdk/model/Invoice/RefundStatus.html | 4 +- .../com/bitpay/sdk/model/Invoice/Shopper.html | 4 +- .../SupportedTransactionCurrencies.html | 4 +- .../Invoice/SupportedTransactionCurrency.html | 4 +- .../sdk/model/Invoice/package-summary.html | 4 +- .../sdk/model/Invoice/package-tree.html | 4 +- .../com/bitpay/sdk/model/Ledger/Buyer.html | 4 +- .../com/bitpay/sdk/model/Ledger/Ledger.html | 4 +- .../bitpay/sdk/model/Ledger/LedgerEntry.html | 4 +- .../sdk/model/Ledger/package-summary.html | 4 +- .../bitpay/sdk/model/Ledger/package-tree.html | 4 +- .../bitpay/sdk/model/Payout/PayoutBatch.html | 4 +- .../sdk/model/Payout/PayoutInstruction.html | 4 +- .../Payout/PayoutInstructionBtcSummary.html | 4 +- .../Payout/PayoutInstructionTransaction.html | 4 +- .../sdk/model/Payout/PayoutRecipient.html | 4 +- .../sdk/model/Payout/PayoutRecipients.html | 4 +- .../bitpay/sdk/model/Payout/PayoutStatus.html | 4 +- .../Payout/RecipientReferenceMethod.html | 4 +- .../sdk/model/Payout/RecipientStatus.html | 4 +- .../sdk/model/Payout/package-summary.html | 4 +- .../bitpay/sdk/model/Payout/package-tree.html | 4 +- apidocs/com/bitpay/sdk/model/Policy.html | 4 +- apidocs/com/bitpay/sdk/model/Rate/Rate.html | 4 +- apidocs/com/bitpay/sdk/model/Rate/Rates.html | 4 +- .../sdk/model/Rate/package-summary.html | 4 +- .../bitpay/sdk/model/Rate/package-tree.html | 4 +- .../sdk/model/Settlement/InvoiceData.html | 4 +- .../sdk/model/Settlement/PayoutInfo.html | 4 +- .../sdk/model/Settlement/RefundInfo.html | 4 +- .../sdk/model/Settlement/Settlement.html | 4 +- .../Settlement/SettlementLedgerEntry.html | 4 +- .../sdk/model/Settlement/WithHoldings.html | 4 +- .../sdk/model/Settlement/package-summary.html | 4 +- .../sdk/model/Settlement/package-tree.html | 4 +- apidocs/com/bitpay/sdk/model/Token.html | 4 +- .../com/bitpay/sdk/model/package-summary.html | 4 +- .../com/bitpay/sdk/model/package-tree.html | 4 +- apidocs/com/bitpay/sdk/package-summary.html | 4 +- apidocs/com/bitpay/sdk/package-tree.html | 4 +- apidocs/com/bitpay/sdk/util/BitPayLogger.html | 4 +- .../com/bitpay/sdk/util/DateDeserializer.html | 4 +- .../com/bitpay/sdk/util/DateSerializer.html | 4 +- apidocs/com/bitpay/sdk/util/KeyUtils.html | 4 +- ...youtInstructionBtcSummaryDeserializer.html | 4 +- .../com/bitpay/sdk/util/package-summary.html | 4 +- apidocs/com/bitpay/sdk/util/package-tree.html | 4 +- apidocs/constant-values.html | 6 +- apidocs/help-doc.html | 4 +- apidocs/index-files/index-1.html | 4 +- apidocs/index-files/index-10.html | 4 +- apidocs/index-files/index-11.html | 4 +- apidocs/index-files/index-12.html | 4 +- apidocs/index-files/index-13.html | 4 +- apidocs/index-files/index-14.html | 4 +- apidocs/index-files/index-15.html | 4 +- apidocs/index-files/index-16.html | 4 +- apidocs/index-files/index-17.html | 4 +- apidocs/index-files/index-18.html | 4 +- apidocs/index-files/index-19.html | 10 +-- apidocs/index-files/index-2.html | 4 +- apidocs/index-files/index-20.html | 4 +- apidocs/index-files/index-21.html | 4 +- apidocs/index-files/index-22.html | 4 +- apidocs/index-files/index-23.html | 4 +- apidocs/index-files/index-24.html | 4 +- apidocs/index-files/index-25.html | 4 +- apidocs/index-files/index-26.html | 4 +- apidocs/index-files/index-27.html | 4 +- apidocs/index-files/index-3.html | 4 +- apidocs/index-files/index-4.html | 4 +- apidocs/index-files/index-5.html | 4 +- apidocs/index-files/index-6.html | 4 +- apidocs/index-files/index-7.html | 4 +- apidocs/index-files/index-8.html | 4 +- apidocs/index-files/index-9.html | 4 +- apidocs/index.html | 4 +- apidocs/member-search-index.js | 2 +- apidocs/member-search-index.zip | Bin 9714 -> 9702 bytes apidocs/overview-summary.html | 4 +- apidocs/overview-tree.html | 4 +- apidocs/package-search-index.zip | Bin 312 -> 312 bytes apidocs/serialized-form.html | 4 +- apidocs/test/BitPayTestMerchant.html | 4 +- apidocs/test/BitPayTestPayouts.html | 4 +- apidocs/test/package-summary.html | 4 +- apidocs/test/package-tree.html | 4 +- apidocs/type-search-index.zip | Bin 891 -> 891 bytes pom.xml | 2 +- src/main/java/com/bitpay/sdk/Client.java | 4 +- src/main/java/com/bitpay/sdk/Env.java | 2 +- 146 files changed, 320 insertions(+), 320 deletions(-) diff --git a/apidocs/allclasses-index.html b/apidocs/allclasses-index.html index 2231a693..7e9ac890 100644 --- a/apidocs/allclasses-index.html +++ b/apidocs/allclasses-index.html @@ -2,10 +2,10 @@ - + All Classes - + diff --git a/apidocs/allpackages-index.html b/apidocs/allpackages-index.html index b3b9c5ab..2b3c8c5a 100644 --- a/apidocs/allpackages-index.html +++ b/apidocs/allpackages-index.html @@ -2,10 +2,10 @@ - + All Packages - + diff --git a/apidocs/com/bitpay/sdk/BitPayException.html b/apidocs/com/bitpay/sdk/BitPayException.html index 493b678c..214daf6a 100644 --- a/apidocs/com/bitpay/sdk/BitPayException.html +++ b/apidocs/com/bitpay/sdk/BitPayException.html @@ -2,10 +2,10 @@ - + BitPayException - + diff --git a/apidocs/com/bitpay/sdk/Client.html b/apidocs/com/bitpay/sdk/Client.html index 7aef0fd1..cf1be929 100644 --- a/apidocs/com/bitpay/sdk/Client.html +++ b/apidocs/com/bitpay/sdk/Client.html @@ -2,10 +2,10 @@ - + Client - + @@ -118,9 +118,9 @@

Class Client

extends java.lang.Object
Version:
-
6.0.2109 +
6.1.2109 See bitpay.com/api for more information. - date 01.09.2021
+ date 17.09.2021
Author:
Antonio Buedo
diff --git a/apidocs/com/bitpay/sdk/Config.html b/apidocs/com/bitpay/sdk/Config.html index 63bf068f..43f79f7f 100644 --- a/apidocs/com/bitpay/sdk/Config.html +++ b/apidocs/com/bitpay/sdk/Config.html @@ -2,10 +2,10 @@ - + Config - + diff --git a/apidocs/com/bitpay/sdk/Env.Tokens.html b/apidocs/com/bitpay/sdk/Env.Tokens.html index d50c664b..d89236e5 100644 --- a/apidocs/com/bitpay/sdk/Env.Tokens.html +++ b/apidocs/com/bitpay/sdk/Env.Tokens.html @@ -2,10 +2,10 @@ - + Env.Tokens - + diff --git a/apidocs/com/bitpay/sdk/Env.html b/apidocs/com/bitpay/sdk/Env.html index 4aa354ad..c0146c7c 100644 --- a/apidocs/com/bitpay/sdk/Env.html +++ b/apidocs/com/bitpay/sdk/Env.html @@ -2,10 +2,10 @@ - + Env - + diff --git a/apidocs/com/bitpay/sdk/exceptions/BillCreationException.html b/apidocs/com/bitpay/sdk/exceptions/BillCreationException.html index be90eecc..ae3c1148 100644 --- a/apidocs/com/bitpay/sdk/exceptions/BillCreationException.html +++ b/apidocs/com/bitpay/sdk/exceptions/BillCreationException.html @@ -2,10 +2,10 @@ - + BillCreationException - + diff --git a/apidocs/com/bitpay/sdk/exceptions/BillDeliveryException.html b/apidocs/com/bitpay/sdk/exceptions/BillDeliveryException.html index 5cb1558f..3acfbc21 100644 --- a/apidocs/com/bitpay/sdk/exceptions/BillDeliveryException.html +++ b/apidocs/com/bitpay/sdk/exceptions/BillDeliveryException.html @@ -2,10 +2,10 @@ - + BillDeliveryException - + diff --git a/apidocs/com/bitpay/sdk/exceptions/BillException.html b/apidocs/com/bitpay/sdk/exceptions/BillException.html index 7c1335a2..43899569 100644 --- a/apidocs/com/bitpay/sdk/exceptions/BillException.html +++ b/apidocs/com/bitpay/sdk/exceptions/BillException.html @@ -2,10 +2,10 @@ - + BillException - + diff --git a/apidocs/com/bitpay/sdk/exceptions/BillQueryException.html b/apidocs/com/bitpay/sdk/exceptions/BillQueryException.html index 1a89dd7e..9094f9d1 100644 --- a/apidocs/com/bitpay/sdk/exceptions/BillQueryException.html +++ b/apidocs/com/bitpay/sdk/exceptions/BillQueryException.html @@ -2,10 +2,10 @@ - + BillQueryException - + diff --git a/apidocs/com/bitpay/sdk/exceptions/BillUpdateException.html b/apidocs/com/bitpay/sdk/exceptions/BillUpdateException.html index 787bc67b..098b5b10 100644 --- a/apidocs/com/bitpay/sdk/exceptions/BillUpdateException.html +++ b/apidocs/com/bitpay/sdk/exceptions/BillUpdateException.html @@ -2,10 +2,10 @@ - + BillUpdateException - + diff --git a/apidocs/com/bitpay/sdk/exceptions/BitPayException.html b/apidocs/com/bitpay/sdk/exceptions/BitPayException.html index 9d525c20..07703d2e 100644 --- a/apidocs/com/bitpay/sdk/exceptions/BitPayException.html +++ b/apidocs/com/bitpay/sdk/exceptions/BitPayException.html @@ -2,10 +2,10 @@ - + BitPayException - + diff --git a/apidocs/com/bitpay/sdk/exceptions/CurrencyException.html b/apidocs/com/bitpay/sdk/exceptions/CurrencyException.html index 103e7ef7..027a1cf9 100644 --- a/apidocs/com/bitpay/sdk/exceptions/CurrencyException.html +++ b/apidocs/com/bitpay/sdk/exceptions/CurrencyException.html @@ -2,10 +2,10 @@ - + CurrencyException - + diff --git a/apidocs/com/bitpay/sdk/exceptions/CurrencyQueryException.html b/apidocs/com/bitpay/sdk/exceptions/CurrencyQueryException.html index c31b54ab..1b886761 100644 --- a/apidocs/com/bitpay/sdk/exceptions/CurrencyQueryException.html +++ b/apidocs/com/bitpay/sdk/exceptions/CurrencyQueryException.html @@ -2,10 +2,10 @@ - + CurrencyQueryException - + diff --git a/apidocs/com/bitpay/sdk/exceptions/InvoiceCreationException.html b/apidocs/com/bitpay/sdk/exceptions/InvoiceCreationException.html index 23953785..6648a607 100644 --- a/apidocs/com/bitpay/sdk/exceptions/InvoiceCreationException.html +++ b/apidocs/com/bitpay/sdk/exceptions/InvoiceCreationException.html @@ -2,10 +2,10 @@ - + InvoiceCreationException - + diff --git a/apidocs/com/bitpay/sdk/exceptions/InvoiceException.html b/apidocs/com/bitpay/sdk/exceptions/InvoiceException.html index bebbcac8..a552555b 100644 --- a/apidocs/com/bitpay/sdk/exceptions/InvoiceException.html +++ b/apidocs/com/bitpay/sdk/exceptions/InvoiceException.html @@ -2,10 +2,10 @@ - + InvoiceException - + diff --git a/apidocs/com/bitpay/sdk/exceptions/InvoiceQueryException.html b/apidocs/com/bitpay/sdk/exceptions/InvoiceQueryException.html index e229396c..9829450e 100644 --- a/apidocs/com/bitpay/sdk/exceptions/InvoiceQueryException.html +++ b/apidocs/com/bitpay/sdk/exceptions/InvoiceQueryException.html @@ -2,10 +2,10 @@ - + InvoiceQueryException - + diff --git a/apidocs/com/bitpay/sdk/exceptions/LedgerException.html b/apidocs/com/bitpay/sdk/exceptions/LedgerException.html index f038d919..698e2fe6 100644 --- a/apidocs/com/bitpay/sdk/exceptions/LedgerException.html +++ b/apidocs/com/bitpay/sdk/exceptions/LedgerException.html @@ -2,10 +2,10 @@ - + LedgerException - + diff --git a/apidocs/com/bitpay/sdk/exceptions/LedgerQueryException.html b/apidocs/com/bitpay/sdk/exceptions/LedgerQueryException.html index 350b6a94..862d9bc9 100644 --- a/apidocs/com/bitpay/sdk/exceptions/LedgerQueryException.html +++ b/apidocs/com/bitpay/sdk/exceptions/LedgerQueryException.html @@ -2,10 +2,10 @@ - + LedgerQueryException - + diff --git a/apidocs/com/bitpay/sdk/exceptions/PayoutCancellationException.html b/apidocs/com/bitpay/sdk/exceptions/PayoutCancellationException.html index 1b11be9c..7b152daa 100644 --- a/apidocs/com/bitpay/sdk/exceptions/PayoutCancellationException.html +++ b/apidocs/com/bitpay/sdk/exceptions/PayoutCancellationException.html @@ -2,10 +2,10 @@ - + PayoutCancellationException - + diff --git a/apidocs/com/bitpay/sdk/exceptions/PayoutCreationException.html b/apidocs/com/bitpay/sdk/exceptions/PayoutCreationException.html index 56be342c..ba7acec3 100644 --- a/apidocs/com/bitpay/sdk/exceptions/PayoutCreationException.html +++ b/apidocs/com/bitpay/sdk/exceptions/PayoutCreationException.html @@ -2,10 +2,10 @@ - + PayoutCreationException - + diff --git a/apidocs/com/bitpay/sdk/exceptions/PayoutException.html b/apidocs/com/bitpay/sdk/exceptions/PayoutException.html index 9f8d2988..c776e15b 100644 --- a/apidocs/com/bitpay/sdk/exceptions/PayoutException.html +++ b/apidocs/com/bitpay/sdk/exceptions/PayoutException.html @@ -2,10 +2,10 @@ - + PayoutException - + diff --git a/apidocs/com/bitpay/sdk/exceptions/PayoutQueryException.html b/apidocs/com/bitpay/sdk/exceptions/PayoutQueryException.html index 54efefc4..2d7b5e02 100644 --- a/apidocs/com/bitpay/sdk/exceptions/PayoutQueryException.html +++ b/apidocs/com/bitpay/sdk/exceptions/PayoutQueryException.html @@ -2,10 +2,10 @@ - + PayoutQueryException - + diff --git a/apidocs/com/bitpay/sdk/exceptions/RateException.html b/apidocs/com/bitpay/sdk/exceptions/RateException.html index 3c76c044..c104d997 100644 --- a/apidocs/com/bitpay/sdk/exceptions/RateException.html +++ b/apidocs/com/bitpay/sdk/exceptions/RateException.html @@ -2,10 +2,10 @@ - + RateException - + diff --git a/apidocs/com/bitpay/sdk/exceptions/RateQueryException.html b/apidocs/com/bitpay/sdk/exceptions/RateQueryException.html index 078676d5..7b54edc0 100644 --- a/apidocs/com/bitpay/sdk/exceptions/RateQueryException.html +++ b/apidocs/com/bitpay/sdk/exceptions/RateQueryException.html @@ -2,10 +2,10 @@ - + RateQueryException - + diff --git a/apidocs/com/bitpay/sdk/exceptions/RefundCancellationException.html b/apidocs/com/bitpay/sdk/exceptions/RefundCancellationException.html index 4d691ed5..b8ac0c07 100644 --- a/apidocs/com/bitpay/sdk/exceptions/RefundCancellationException.html +++ b/apidocs/com/bitpay/sdk/exceptions/RefundCancellationException.html @@ -2,10 +2,10 @@ - + RefundCancellationException - + diff --git a/apidocs/com/bitpay/sdk/exceptions/RefundCreationException.html b/apidocs/com/bitpay/sdk/exceptions/RefundCreationException.html index 7aaaf2ce..bc531601 100644 --- a/apidocs/com/bitpay/sdk/exceptions/RefundCreationException.html +++ b/apidocs/com/bitpay/sdk/exceptions/RefundCreationException.html @@ -2,10 +2,10 @@ - + RefundCreationException - + diff --git a/apidocs/com/bitpay/sdk/exceptions/RefundException.html b/apidocs/com/bitpay/sdk/exceptions/RefundException.html index 0eee16a7..be77a5ed 100644 --- a/apidocs/com/bitpay/sdk/exceptions/RefundException.html +++ b/apidocs/com/bitpay/sdk/exceptions/RefundException.html @@ -2,10 +2,10 @@ - + RefundException - + diff --git a/apidocs/com/bitpay/sdk/exceptions/RefundQueryException.html b/apidocs/com/bitpay/sdk/exceptions/RefundQueryException.html index 7c4407f0..cc0f14c0 100644 --- a/apidocs/com/bitpay/sdk/exceptions/RefundQueryException.html +++ b/apidocs/com/bitpay/sdk/exceptions/RefundQueryException.html @@ -2,10 +2,10 @@ - + RefundQueryException - + diff --git a/apidocs/com/bitpay/sdk/exceptions/SettlementException.html b/apidocs/com/bitpay/sdk/exceptions/SettlementException.html index 162dcdee..77061b54 100644 --- a/apidocs/com/bitpay/sdk/exceptions/SettlementException.html +++ b/apidocs/com/bitpay/sdk/exceptions/SettlementException.html @@ -2,10 +2,10 @@ - + SettlementException - + diff --git a/apidocs/com/bitpay/sdk/exceptions/SettlementQueryException.html b/apidocs/com/bitpay/sdk/exceptions/SettlementQueryException.html index ad9265e2..4c08d4e8 100644 --- a/apidocs/com/bitpay/sdk/exceptions/SettlementQueryException.html +++ b/apidocs/com/bitpay/sdk/exceptions/SettlementQueryException.html @@ -2,10 +2,10 @@ - + SettlementQueryException - + diff --git a/apidocs/com/bitpay/sdk/exceptions/SubscriptionCreationException.html b/apidocs/com/bitpay/sdk/exceptions/SubscriptionCreationException.html index 2c24fbf6..88ac22a0 100644 --- a/apidocs/com/bitpay/sdk/exceptions/SubscriptionCreationException.html +++ b/apidocs/com/bitpay/sdk/exceptions/SubscriptionCreationException.html @@ -2,10 +2,10 @@ - + SubscriptionCreationException - + diff --git a/apidocs/com/bitpay/sdk/exceptions/SubscriptionException.html b/apidocs/com/bitpay/sdk/exceptions/SubscriptionException.html index f6d31845..41af153f 100644 --- a/apidocs/com/bitpay/sdk/exceptions/SubscriptionException.html +++ b/apidocs/com/bitpay/sdk/exceptions/SubscriptionException.html @@ -2,10 +2,10 @@ - + SubscriptionException - + diff --git a/apidocs/com/bitpay/sdk/exceptions/SubscriptionQueryException.html b/apidocs/com/bitpay/sdk/exceptions/SubscriptionQueryException.html index 73cf3d6b..e29e8a05 100644 --- a/apidocs/com/bitpay/sdk/exceptions/SubscriptionQueryException.html +++ b/apidocs/com/bitpay/sdk/exceptions/SubscriptionQueryException.html @@ -2,10 +2,10 @@ - + SubscriptionQueryException - + diff --git a/apidocs/com/bitpay/sdk/exceptions/SubscriptionUpdateException.html b/apidocs/com/bitpay/sdk/exceptions/SubscriptionUpdateException.html index aa1d5f0e..dd75e6cd 100644 --- a/apidocs/com/bitpay/sdk/exceptions/SubscriptionUpdateException.html +++ b/apidocs/com/bitpay/sdk/exceptions/SubscriptionUpdateException.html @@ -2,10 +2,10 @@ - + SubscriptionUpdateException - + diff --git a/apidocs/com/bitpay/sdk/exceptions/package-summary.html b/apidocs/com/bitpay/sdk/exceptions/package-summary.html index 8a2aae5b..1a653493 100644 --- a/apidocs/com/bitpay/sdk/exceptions/package-summary.html +++ b/apidocs/com/bitpay/sdk/exceptions/package-summary.html @@ -2,10 +2,10 @@ - + com.bitpay.sdk.exceptions - + diff --git a/apidocs/com/bitpay/sdk/exceptions/package-tree.html b/apidocs/com/bitpay/sdk/exceptions/package-tree.html index 06f18606..2769cbf9 100644 --- a/apidocs/com/bitpay/sdk/exceptions/package-tree.html +++ b/apidocs/com/bitpay/sdk/exceptions/package-tree.html @@ -2,10 +2,10 @@ - + com.bitpay.sdk.exceptions Class Hierarchy - + diff --git a/apidocs/com/bitpay/sdk/model/Bill/Bill.html b/apidocs/com/bitpay/sdk/model/Bill/Bill.html index 15c1927b..2d332a1f 100644 --- a/apidocs/com/bitpay/sdk/model/Bill/Bill.html +++ b/apidocs/com/bitpay/sdk/model/Bill/Bill.html @@ -2,10 +2,10 @@ - + Bill - + diff --git a/apidocs/com/bitpay/sdk/model/Bill/BillStatus.html b/apidocs/com/bitpay/sdk/model/Bill/BillStatus.html index 19697761..a13ffe88 100644 --- a/apidocs/com/bitpay/sdk/model/Bill/BillStatus.html +++ b/apidocs/com/bitpay/sdk/model/Bill/BillStatus.html @@ -2,10 +2,10 @@ - + BillStatus - + diff --git a/apidocs/com/bitpay/sdk/model/Bill/Item.html b/apidocs/com/bitpay/sdk/model/Bill/Item.html index d3573787..35de0413 100644 --- a/apidocs/com/bitpay/sdk/model/Bill/Item.html +++ b/apidocs/com/bitpay/sdk/model/Bill/Item.html @@ -2,10 +2,10 @@ - + Item - + diff --git a/apidocs/com/bitpay/sdk/model/Bill/package-summary.html b/apidocs/com/bitpay/sdk/model/Bill/package-summary.html index 72d6e8bd..cbe47ccf 100644 --- a/apidocs/com/bitpay/sdk/model/Bill/package-summary.html +++ b/apidocs/com/bitpay/sdk/model/Bill/package-summary.html @@ -2,10 +2,10 @@ - + com.bitpay.sdk.model.Bill - + diff --git a/apidocs/com/bitpay/sdk/model/Bill/package-tree.html b/apidocs/com/bitpay/sdk/model/Bill/package-tree.html index bfe5246d..6eb3ed74 100644 --- a/apidocs/com/bitpay/sdk/model/Bill/package-tree.html +++ b/apidocs/com/bitpay/sdk/model/Bill/package-tree.html @@ -2,10 +2,10 @@ - + com.bitpay.sdk.model.Bill Class Hierarchy - + diff --git a/apidocs/com/bitpay/sdk/model/Currency.html b/apidocs/com/bitpay/sdk/model/Currency.html index 0d9befbd..1b4f8d5d 100644 --- a/apidocs/com/bitpay/sdk/model/Currency.html +++ b/apidocs/com/bitpay/sdk/model/Currency.html @@ -2,10 +2,10 @@ - + Currency - + diff --git a/apidocs/com/bitpay/sdk/model/Facade.html b/apidocs/com/bitpay/sdk/model/Facade.html index 08d1317c..43a353a4 100644 --- a/apidocs/com/bitpay/sdk/model/Facade.html +++ b/apidocs/com/bitpay/sdk/model/Facade.html @@ -2,10 +2,10 @@ - + Facade - + diff --git a/apidocs/com/bitpay/sdk/model/Invoice/Buyer.html b/apidocs/com/bitpay/sdk/model/Invoice/Buyer.html index 99f9a9c9..87ed893b 100644 --- a/apidocs/com/bitpay/sdk/model/Invoice/Buyer.html +++ b/apidocs/com/bitpay/sdk/model/Invoice/Buyer.html @@ -2,10 +2,10 @@ - + Buyer - + diff --git a/apidocs/com/bitpay/sdk/model/Invoice/Invoice.html b/apidocs/com/bitpay/sdk/model/Invoice/Invoice.html index 9b0fc4e8..d864812b 100644 --- a/apidocs/com/bitpay/sdk/model/Invoice/Invoice.html +++ b/apidocs/com/bitpay/sdk/model/Invoice/Invoice.html @@ -2,10 +2,10 @@ - + Invoice - + @@ -189,7 +189,7 @@

Method Summary

  -java.lang.Boolean +boolean getBitpayIdRequired()   @@ -264,7 +264,7 @@

Method Summary

  -java.lang.Boolean +boolean getIsCancelled()   @@ -284,7 +284,7 @@

Method Summary

  -java.lang.Boolean +boolean getLowFeeDetected()   @@ -430,7 +430,7 @@

Method Summary

void -setBitpayIdRequired​(java.lang.Boolean _bitpayIdRequired) +setBitpayIdRequired​(boolean _bitpayIdRequired)   @@ -505,7 +505,7 @@

Method Summary

void -setIsCancelled​(java.lang.Boolean _isCancelled) +setIsCancelled​(boolean _isCancelled)   @@ -525,7 +525,7 @@

Method Summary

void -setLowFeeDetected​(java.lang.Boolean _lowFeeDetected) +setLowFeeDetected​(boolean _lowFeeDetected)   @@ -1140,6 +1140,24 @@

setItemizedDetails

public void setItemizedDetails​(java.util.List<InvoiceItemizedDetails> _itemizedDetails)
+ + + +
    +
  • +

    getBitpayIdRequired

    +
    public boolean getBitpayIdRequired()
    +
  • +
+ + + +
    +
  • +

    setBitpayIdRequired

    +
    public void setBitpayIdRequired​(boolean _bitpayIdRequired)
    +
  • +
@@ -1218,16 +1236,16 @@

setStatus

  • getLowFeeDetected

    -
    public java.lang.Boolean getLowFeeDetected()
    +
    public boolean getLowFeeDetected()
- +
  • setLowFeeDetected

    -
    public void setLowFeeDetected​(java.lang.Boolean _lowFeeDetected)
    +
    public void setLowFeeDetected​(boolean _lowFeeDetected)
@@ -1560,34 +1578,16 @@

setExchangeRates

  • getIsCancelled

    -
    public java.lang.Boolean getIsCancelled()
    +
    public boolean getIsCancelled()
-
- - -
    -
  • -

    setIsCancelled

    -
    public void setIsCancelled​(java.lang.Boolean _isCancelled)
    -
  • -
- - - -
    -
  • -

    getBitpayIdRequired

    -
    public java.lang.Boolean getBitpayIdRequired()
    -
  • -
- +
  • -

    setBitpayIdRequired

    -
    public void setBitpayIdRequired​(java.lang.Boolean _bitpayIdRequired)
    +

    setIsCancelled

    +
    public void setIsCancelled​(boolean _isCancelled)
diff --git a/apidocs/com/bitpay/sdk/model/Invoice/InvoiceBuyerProvidedInfo.html b/apidocs/com/bitpay/sdk/model/Invoice/InvoiceBuyerProvidedInfo.html index 67b35623..5f599c87 100644 --- a/apidocs/com/bitpay/sdk/model/Invoice/InvoiceBuyerProvidedInfo.html +++ b/apidocs/com/bitpay/sdk/model/Invoice/InvoiceBuyerProvidedInfo.html @@ -2,10 +2,10 @@ - + InvoiceBuyerProvidedInfo - + diff --git a/apidocs/com/bitpay/sdk/model/Invoice/InvoiceStatus.html b/apidocs/com/bitpay/sdk/model/Invoice/InvoiceStatus.html index 1ea8b685..e49b25b7 100644 --- a/apidocs/com/bitpay/sdk/model/Invoice/InvoiceStatus.html +++ b/apidocs/com/bitpay/sdk/model/Invoice/InvoiceStatus.html @@ -2,10 +2,10 @@ - + InvoiceStatus - + diff --git a/apidocs/com/bitpay/sdk/model/Invoice/InvoiceTransaction.html b/apidocs/com/bitpay/sdk/model/Invoice/InvoiceTransaction.html index 2eac4d49..97301c4a 100644 --- a/apidocs/com/bitpay/sdk/model/Invoice/InvoiceTransaction.html +++ b/apidocs/com/bitpay/sdk/model/Invoice/InvoiceTransaction.html @@ -2,10 +2,10 @@ - + InvoiceTransaction - + diff --git a/apidocs/com/bitpay/sdk/model/Invoice/MinerFees.html b/apidocs/com/bitpay/sdk/model/Invoice/MinerFees.html index 9109d11c..4207ba84 100644 --- a/apidocs/com/bitpay/sdk/model/Invoice/MinerFees.html +++ b/apidocs/com/bitpay/sdk/model/Invoice/MinerFees.html @@ -2,10 +2,10 @@ - + MinerFees - + diff --git a/apidocs/com/bitpay/sdk/model/Invoice/MinerFeesItem.html b/apidocs/com/bitpay/sdk/model/Invoice/MinerFeesItem.html index 7667886a..293a8af2 100644 --- a/apidocs/com/bitpay/sdk/model/Invoice/MinerFeesItem.html +++ b/apidocs/com/bitpay/sdk/model/Invoice/MinerFeesItem.html @@ -2,10 +2,10 @@ - + MinerFeesItem - + diff --git a/apidocs/com/bitpay/sdk/model/Invoice/Refund.html b/apidocs/com/bitpay/sdk/model/Invoice/Refund.html index 68de912c..e3ce3142 100644 --- a/apidocs/com/bitpay/sdk/model/Invoice/Refund.html +++ b/apidocs/com/bitpay/sdk/model/Invoice/Refund.html @@ -2,10 +2,10 @@ - + Refund - + diff --git a/apidocs/com/bitpay/sdk/model/Invoice/RefundInfo.html b/apidocs/com/bitpay/sdk/model/Invoice/RefundInfo.html index 1f7b9c2b..f247340b 100644 --- a/apidocs/com/bitpay/sdk/model/Invoice/RefundInfo.html +++ b/apidocs/com/bitpay/sdk/model/Invoice/RefundInfo.html @@ -2,10 +2,10 @@ - + RefundInfo - + diff --git a/apidocs/com/bitpay/sdk/model/Invoice/RefundParams.html b/apidocs/com/bitpay/sdk/model/Invoice/RefundParams.html index ed3bb857..631effec 100644 --- a/apidocs/com/bitpay/sdk/model/Invoice/RefundParams.html +++ b/apidocs/com/bitpay/sdk/model/Invoice/RefundParams.html @@ -2,10 +2,10 @@ - + RefundParams - + diff --git a/apidocs/com/bitpay/sdk/model/Invoice/RefundStatus.html b/apidocs/com/bitpay/sdk/model/Invoice/RefundStatus.html index e35b104f..9c91382e 100644 --- a/apidocs/com/bitpay/sdk/model/Invoice/RefundStatus.html +++ b/apidocs/com/bitpay/sdk/model/Invoice/RefundStatus.html @@ -2,10 +2,10 @@ - + RefundStatus - + diff --git a/apidocs/com/bitpay/sdk/model/Invoice/Shopper.html b/apidocs/com/bitpay/sdk/model/Invoice/Shopper.html index 377dedeb..a6309049 100644 --- a/apidocs/com/bitpay/sdk/model/Invoice/Shopper.html +++ b/apidocs/com/bitpay/sdk/model/Invoice/Shopper.html @@ -2,10 +2,10 @@ - + Shopper - + diff --git a/apidocs/com/bitpay/sdk/model/Invoice/SupportedTransactionCurrencies.html b/apidocs/com/bitpay/sdk/model/Invoice/SupportedTransactionCurrencies.html index e77c2f5d..7322d53f 100644 --- a/apidocs/com/bitpay/sdk/model/Invoice/SupportedTransactionCurrencies.html +++ b/apidocs/com/bitpay/sdk/model/Invoice/SupportedTransactionCurrencies.html @@ -2,10 +2,10 @@ - + SupportedTransactionCurrencies - + diff --git a/apidocs/com/bitpay/sdk/model/Invoice/SupportedTransactionCurrency.html b/apidocs/com/bitpay/sdk/model/Invoice/SupportedTransactionCurrency.html index f09052d1..796156d1 100644 --- a/apidocs/com/bitpay/sdk/model/Invoice/SupportedTransactionCurrency.html +++ b/apidocs/com/bitpay/sdk/model/Invoice/SupportedTransactionCurrency.html @@ -2,10 +2,10 @@ - + SupportedTransactionCurrency - + diff --git a/apidocs/com/bitpay/sdk/model/Invoice/package-summary.html b/apidocs/com/bitpay/sdk/model/Invoice/package-summary.html index 775e8938..6aac04e4 100644 --- a/apidocs/com/bitpay/sdk/model/Invoice/package-summary.html +++ b/apidocs/com/bitpay/sdk/model/Invoice/package-summary.html @@ -2,10 +2,10 @@ - + com.bitpay.sdk.model.Invoice - + diff --git a/apidocs/com/bitpay/sdk/model/Invoice/package-tree.html b/apidocs/com/bitpay/sdk/model/Invoice/package-tree.html index f133290e..4453acd6 100644 --- a/apidocs/com/bitpay/sdk/model/Invoice/package-tree.html +++ b/apidocs/com/bitpay/sdk/model/Invoice/package-tree.html @@ -2,10 +2,10 @@ - + com.bitpay.sdk.model.Invoice Class Hierarchy - + diff --git a/apidocs/com/bitpay/sdk/model/Ledger/Buyer.html b/apidocs/com/bitpay/sdk/model/Ledger/Buyer.html index 0fd638bf..34a9a86d 100644 --- a/apidocs/com/bitpay/sdk/model/Ledger/Buyer.html +++ b/apidocs/com/bitpay/sdk/model/Ledger/Buyer.html @@ -2,10 +2,10 @@ - + Buyer - + diff --git a/apidocs/com/bitpay/sdk/model/Ledger/Ledger.html b/apidocs/com/bitpay/sdk/model/Ledger/Ledger.html index 00f9f4f6..095dfcba 100644 --- a/apidocs/com/bitpay/sdk/model/Ledger/Ledger.html +++ b/apidocs/com/bitpay/sdk/model/Ledger/Ledger.html @@ -2,10 +2,10 @@ - + Ledger - + diff --git a/apidocs/com/bitpay/sdk/model/Ledger/LedgerEntry.html b/apidocs/com/bitpay/sdk/model/Ledger/LedgerEntry.html index d922fbfd..41d93812 100644 --- a/apidocs/com/bitpay/sdk/model/Ledger/LedgerEntry.html +++ b/apidocs/com/bitpay/sdk/model/Ledger/LedgerEntry.html @@ -2,10 +2,10 @@ - + LedgerEntry - + diff --git a/apidocs/com/bitpay/sdk/model/Ledger/package-summary.html b/apidocs/com/bitpay/sdk/model/Ledger/package-summary.html index 5d79019a..7f2f2890 100644 --- a/apidocs/com/bitpay/sdk/model/Ledger/package-summary.html +++ b/apidocs/com/bitpay/sdk/model/Ledger/package-summary.html @@ -2,10 +2,10 @@ - + com.bitpay.sdk.model.Ledger - + diff --git a/apidocs/com/bitpay/sdk/model/Ledger/package-tree.html b/apidocs/com/bitpay/sdk/model/Ledger/package-tree.html index d84d1b8b..e7510e36 100644 --- a/apidocs/com/bitpay/sdk/model/Ledger/package-tree.html +++ b/apidocs/com/bitpay/sdk/model/Ledger/package-tree.html @@ -2,10 +2,10 @@ - + com.bitpay.sdk.model.Ledger Class Hierarchy - + diff --git a/apidocs/com/bitpay/sdk/model/Payout/PayoutBatch.html b/apidocs/com/bitpay/sdk/model/Payout/PayoutBatch.html index b690cfed..ac5ef1ff 100644 --- a/apidocs/com/bitpay/sdk/model/Payout/PayoutBatch.html +++ b/apidocs/com/bitpay/sdk/model/Payout/PayoutBatch.html @@ -2,10 +2,10 @@ - + PayoutBatch - + diff --git a/apidocs/com/bitpay/sdk/model/Payout/PayoutInstruction.html b/apidocs/com/bitpay/sdk/model/Payout/PayoutInstruction.html index df6bdaa1..95bc0592 100644 --- a/apidocs/com/bitpay/sdk/model/Payout/PayoutInstruction.html +++ b/apidocs/com/bitpay/sdk/model/Payout/PayoutInstruction.html @@ -2,10 +2,10 @@ - + PayoutInstruction - + diff --git a/apidocs/com/bitpay/sdk/model/Payout/PayoutInstructionBtcSummary.html b/apidocs/com/bitpay/sdk/model/Payout/PayoutInstructionBtcSummary.html index 76c171ad..c350252b 100644 --- a/apidocs/com/bitpay/sdk/model/Payout/PayoutInstructionBtcSummary.html +++ b/apidocs/com/bitpay/sdk/model/Payout/PayoutInstructionBtcSummary.html @@ -2,10 +2,10 @@ - + PayoutInstructionBtcSummary - + diff --git a/apidocs/com/bitpay/sdk/model/Payout/PayoutInstructionTransaction.html b/apidocs/com/bitpay/sdk/model/Payout/PayoutInstructionTransaction.html index 4eacc302..d9162526 100644 --- a/apidocs/com/bitpay/sdk/model/Payout/PayoutInstructionTransaction.html +++ b/apidocs/com/bitpay/sdk/model/Payout/PayoutInstructionTransaction.html @@ -2,10 +2,10 @@ - + PayoutInstructionTransaction - + diff --git a/apidocs/com/bitpay/sdk/model/Payout/PayoutRecipient.html b/apidocs/com/bitpay/sdk/model/Payout/PayoutRecipient.html index 11796fe9..6c0318f1 100644 --- a/apidocs/com/bitpay/sdk/model/Payout/PayoutRecipient.html +++ b/apidocs/com/bitpay/sdk/model/Payout/PayoutRecipient.html @@ -2,10 +2,10 @@ - + PayoutRecipient - + diff --git a/apidocs/com/bitpay/sdk/model/Payout/PayoutRecipients.html b/apidocs/com/bitpay/sdk/model/Payout/PayoutRecipients.html index dd2d9852..f7b3ef88 100644 --- a/apidocs/com/bitpay/sdk/model/Payout/PayoutRecipients.html +++ b/apidocs/com/bitpay/sdk/model/Payout/PayoutRecipients.html @@ -2,10 +2,10 @@ - + PayoutRecipients - + diff --git a/apidocs/com/bitpay/sdk/model/Payout/PayoutStatus.html b/apidocs/com/bitpay/sdk/model/Payout/PayoutStatus.html index 5ebbf198..306966b2 100644 --- a/apidocs/com/bitpay/sdk/model/Payout/PayoutStatus.html +++ b/apidocs/com/bitpay/sdk/model/Payout/PayoutStatus.html @@ -2,10 +2,10 @@ - + PayoutStatus - + diff --git a/apidocs/com/bitpay/sdk/model/Payout/RecipientReferenceMethod.html b/apidocs/com/bitpay/sdk/model/Payout/RecipientReferenceMethod.html index d1fee3a1..8964d9e7 100644 --- a/apidocs/com/bitpay/sdk/model/Payout/RecipientReferenceMethod.html +++ b/apidocs/com/bitpay/sdk/model/Payout/RecipientReferenceMethod.html @@ -2,10 +2,10 @@ - + RecipientReferenceMethod - + diff --git a/apidocs/com/bitpay/sdk/model/Payout/RecipientStatus.html b/apidocs/com/bitpay/sdk/model/Payout/RecipientStatus.html index 3d78f5b7..f5207a98 100644 --- a/apidocs/com/bitpay/sdk/model/Payout/RecipientStatus.html +++ b/apidocs/com/bitpay/sdk/model/Payout/RecipientStatus.html @@ -2,10 +2,10 @@ - + RecipientStatus - + diff --git a/apidocs/com/bitpay/sdk/model/Payout/package-summary.html b/apidocs/com/bitpay/sdk/model/Payout/package-summary.html index af4b9a19..96fc3871 100644 --- a/apidocs/com/bitpay/sdk/model/Payout/package-summary.html +++ b/apidocs/com/bitpay/sdk/model/Payout/package-summary.html @@ -2,10 +2,10 @@ - + com.bitpay.sdk.model.Payout - + diff --git a/apidocs/com/bitpay/sdk/model/Payout/package-tree.html b/apidocs/com/bitpay/sdk/model/Payout/package-tree.html index 8bff3236..d0cf2ae6 100644 --- a/apidocs/com/bitpay/sdk/model/Payout/package-tree.html +++ b/apidocs/com/bitpay/sdk/model/Payout/package-tree.html @@ -2,10 +2,10 @@ - + com.bitpay.sdk.model.Payout Class Hierarchy - + diff --git a/apidocs/com/bitpay/sdk/model/Policy.html b/apidocs/com/bitpay/sdk/model/Policy.html index bbae051b..56ef313d 100644 --- a/apidocs/com/bitpay/sdk/model/Policy.html +++ b/apidocs/com/bitpay/sdk/model/Policy.html @@ -2,10 +2,10 @@ - + Policy - + diff --git a/apidocs/com/bitpay/sdk/model/Rate/Rate.html b/apidocs/com/bitpay/sdk/model/Rate/Rate.html index 24c985ae..40aa3576 100644 --- a/apidocs/com/bitpay/sdk/model/Rate/Rate.html +++ b/apidocs/com/bitpay/sdk/model/Rate/Rate.html @@ -2,10 +2,10 @@ - + Rate - + diff --git a/apidocs/com/bitpay/sdk/model/Rate/Rates.html b/apidocs/com/bitpay/sdk/model/Rate/Rates.html index b7c496ff..233a2ecc 100644 --- a/apidocs/com/bitpay/sdk/model/Rate/Rates.html +++ b/apidocs/com/bitpay/sdk/model/Rate/Rates.html @@ -2,10 +2,10 @@ - + Rates - + diff --git a/apidocs/com/bitpay/sdk/model/Rate/package-summary.html b/apidocs/com/bitpay/sdk/model/Rate/package-summary.html index dcc021a3..4a7dbe06 100644 --- a/apidocs/com/bitpay/sdk/model/Rate/package-summary.html +++ b/apidocs/com/bitpay/sdk/model/Rate/package-summary.html @@ -2,10 +2,10 @@ - + com.bitpay.sdk.model.Rate - + diff --git a/apidocs/com/bitpay/sdk/model/Rate/package-tree.html b/apidocs/com/bitpay/sdk/model/Rate/package-tree.html index bbb1b557..1271023b 100644 --- a/apidocs/com/bitpay/sdk/model/Rate/package-tree.html +++ b/apidocs/com/bitpay/sdk/model/Rate/package-tree.html @@ -2,10 +2,10 @@ - + com.bitpay.sdk.model.Rate Class Hierarchy - + diff --git a/apidocs/com/bitpay/sdk/model/Settlement/InvoiceData.html b/apidocs/com/bitpay/sdk/model/Settlement/InvoiceData.html index 116262a8..3f2ec68d 100644 --- a/apidocs/com/bitpay/sdk/model/Settlement/InvoiceData.html +++ b/apidocs/com/bitpay/sdk/model/Settlement/InvoiceData.html @@ -2,10 +2,10 @@ - + InvoiceData - + diff --git a/apidocs/com/bitpay/sdk/model/Settlement/PayoutInfo.html b/apidocs/com/bitpay/sdk/model/Settlement/PayoutInfo.html index 85b791cc..9b5ff68b 100644 --- a/apidocs/com/bitpay/sdk/model/Settlement/PayoutInfo.html +++ b/apidocs/com/bitpay/sdk/model/Settlement/PayoutInfo.html @@ -2,10 +2,10 @@ - + PayoutInfo - + diff --git a/apidocs/com/bitpay/sdk/model/Settlement/RefundInfo.html b/apidocs/com/bitpay/sdk/model/Settlement/RefundInfo.html index 69157167..6eb6c10b 100644 --- a/apidocs/com/bitpay/sdk/model/Settlement/RefundInfo.html +++ b/apidocs/com/bitpay/sdk/model/Settlement/RefundInfo.html @@ -2,10 +2,10 @@ - + RefundInfo - + diff --git a/apidocs/com/bitpay/sdk/model/Settlement/Settlement.html b/apidocs/com/bitpay/sdk/model/Settlement/Settlement.html index 10be4405..e2d5df47 100644 --- a/apidocs/com/bitpay/sdk/model/Settlement/Settlement.html +++ b/apidocs/com/bitpay/sdk/model/Settlement/Settlement.html @@ -2,10 +2,10 @@ - + Settlement - + diff --git a/apidocs/com/bitpay/sdk/model/Settlement/SettlementLedgerEntry.html b/apidocs/com/bitpay/sdk/model/Settlement/SettlementLedgerEntry.html index 65fc2265..17589ca3 100644 --- a/apidocs/com/bitpay/sdk/model/Settlement/SettlementLedgerEntry.html +++ b/apidocs/com/bitpay/sdk/model/Settlement/SettlementLedgerEntry.html @@ -2,10 +2,10 @@ - + SettlementLedgerEntry - + diff --git a/apidocs/com/bitpay/sdk/model/Settlement/WithHoldings.html b/apidocs/com/bitpay/sdk/model/Settlement/WithHoldings.html index cea9e07a..2b51656c 100644 --- a/apidocs/com/bitpay/sdk/model/Settlement/WithHoldings.html +++ b/apidocs/com/bitpay/sdk/model/Settlement/WithHoldings.html @@ -2,10 +2,10 @@ - + WithHoldings - + diff --git a/apidocs/com/bitpay/sdk/model/Settlement/package-summary.html b/apidocs/com/bitpay/sdk/model/Settlement/package-summary.html index d13e19c4..2b1768de 100644 --- a/apidocs/com/bitpay/sdk/model/Settlement/package-summary.html +++ b/apidocs/com/bitpay/sdk/model/Settlement/package-summary.html @@ -2,10 +2,10 @@ - + com.bitpay.sdk.model.Settlement - + diff --git a/apidocs/com/bitpay/sdk/model/Settlement/package-tree.html b/apidocs/com/bitpay/sdk/model/Settlement/package-tree.html index 8c74ba74..e0406e96 100644 --- a/apidocs/com/bitpay/sdk/model/Settlement/package-tree.html +++ b/apidocs/com/bitpay/sdk/model/Settlement/package-tree.html @@ -2,10 +2,10 @@ - + com.bitpay.sdk.model.Settlement Class Hierarchy - + diff --git a/apidocs/com/bitpay/sdk/model/Token.html b/apidocs/com/bitpay/sdk/model/Token.html index 40d407b8..eea6fc94 100644 --- a/apidocs/com/bitpay/sdk/model/Token.html +++ b/apidocs/com/bitpay/sdk/model/Token.html @@ -2,10 +2,10 @@ - + Token - + diff --git a/apidocs/com/bitpay/sdk/model/package-summary.html b/apidocs/com/bitpay/sdk/model/package-summary.html index aa5c05cc..52f1cc96 100644 --- a/apidocs/com/bitpay/sdk/model/package-summary.html +++ b/apidocs/com/bitpay/sdk/model/package-summary.html @@ -2,10 +2,10 @@ - + com.bitpay.sdk.model - + diff --git a/apidocs/com/bitpay/sdk/model/package-tree.html b/apidocs/com/bitpay/sdk/model/package-tree.html index e4f4216e..43c04714 100644 --- a/apidocs/com/bitpay/sdk/model/package-tree.html +++ b/apidocs/com/bitpay/sdk/model/package-tree.html @@ -2,10 +2,10 @@ - + com.bitpay.sdk.model Class Hierarchy - + diff --git a/apidocs/com/bitpay/sdk/package-summary.html b/apidocs/com/bitpay/sdk/package-summary.html index a5b949ca..7445ad98 100644 --- a/apidocs/com/bitpay/sdk/package-summary.html +++ b/apidocs/com/bitpay/sdk/package-summary.html @@ -2,10 +2,10 @@ - + com.bitpay.sdk - + diff --git a/apidocs/com/bitpay/sdk/package-tree.html b/apidocs/com/bitpay/sdk/package-tree.html index d5170d4d..5a5b956c 100644 --- a/apidocs/com/bitpay/sdk/package-tree.html +++ b/apidocs/com/bitpay/sdk/package-tree.html @@ -2,10 +2,10 @@ - + com.bitpay.sdk Class Hierarchy - + diff --git a/apidocs/com/bitpay/sdk/util/BitPayLogger.html b/apidocs/com/bitpay/sdk/util/BitPayLogger.html index 94533934..d0da6aa6 100644 --- a/apidocs/com/bitpay/sdk/util/BitPayLogger.html +++ b/apidocs/com/bitpay/sdk/util/BitPayLogger.html @@ -2,10 +2,10 @@ - + BitPayLogger - + diff --git a/apidocs/com/bitpay/sdk/util/DateDeserializer.html b/apidocs/com/bitpay/sdk/util/DateDeserializer.html index f5a55a79..74915cc6 100644 --- a/apidocs/com/bitpay/sdk/util/DateDeserializer.html +++ b/apidocs/com/bitpay/sdk/util/DateDeserializer.html @@ -2,10 +2,10 @@ - + DateDeserializer - + diff --git a/apidocs/com/bitpay/sdk/util/DateSerializer.html b/apidocs/com/bitpay/sdk/util/DateSerializer.html index 87ad79de..922d8045 100644 --- a/apidocs/com/bitpay/sdk/util/DateSerializer.html +++ b/apidocs/com/bitpay/sdk/util/DateSerializer.html @@ -2,10 +2,10 @@ - + DateSerializer - + diff --git a/apidocs/com/bitpay/sdk/util/KeyUtils.html b/apidocs/com/bitpay/sdk/util/KeyUtils.html index 3d4ff4da..2f61ff1f 100644 --- a/apidocs/com/bitpay/sdk/util/KeyUtils.html +++ b/apidocs/com/bitpay/sdk/util/KeyUtils.html @@ -2,10 +2,10 @@ - + KeyUtils - + diff --git a/apidocs/com/bitpay/sdk/util/PayoutInstructionBtcSummaryDeserializer.html b/apidocs/com/bitpay/sdk/util/PayoutInstructionBtcSummaryDeserializer.html index d3760231..09034da1 100644 --- a/apidocs/com/bitpay/sdk/util/PayoutInstructionBtcSummaryDeserializer.html +++ b/apidocs/com/bitpay/sdk/util/PayoutInstructionBtcSummaryDeserializer.html @@ -2,10 +2,10 @@ - + PayoutInstructionBtcSummaryDeserializer - + diff --git a/apidocs/com/bitpay/sdk/util/package-summary.html b/apidocs/com/bitpay/sdk/util/package-summary.html index 919d357b..8d7af6e3 100644 --- a/apidocs/com/bitpay/sdk/util/package-summary.html +++ b/apidocs/com/bitpay/sdk/util/package-summary.html @@ -2,10 +2,10 @@ - + com.bitpay.sdk.util - + diff --git a/apidocs/com/bitpay/sdk/util/package-tree.html b/apidocs/com/bitpay/sdk/util/package-tree.html index 77c6e1a3..b1349981 100644 --- a/apidocs/com/bitpay/sdk/util/package-tree.html +++ b/apidocs/com/bitpay/sdk/util/package-tree.html @@ -2,10 +2,10 @@ - + com.bitpay.sdk.util Class Hierarchy - + diff --git a/apidocs/constant-values.html b/apidocs/constant-values.html index 3237e8d3..bff23b5d 100644 --- a/apidocs/constant-values.html +++ b/apidocs/constant-values.html @@ -2,10 +2,10 @@ - + Constant Field Values - + @@ -126,7 +126,7 @@

com.bitpay.*

public static final java.lang.String BitpayPluginInfo -"BitPay_Java_Client_v6.0.2109" +"BitPay_Java_Client_v6.1.2109" diff --git a/apidocs/help-doc.html b/apidocs/help-doc.html index ae450870..8062f988 100644 --- a/apidocs/help-doc.html +++ b/apidocs/help-doc.html @@ -2,10 +2,10 @@ - + API Help - + diff --git a/apidocs/index-files/index-1.html b/apidocs/index-files/index-1.html index d4e49cc5..0c708fd4 100644 --- a/apidocs/index-files/index-1.html +++ b/apidocs/index-files/index-1.html @@ -2,10 +2,10 @@ - + A-Index - + diff --git a/apidocs/index-files/index-10.html b/apidocs/index-files/index-10.html index 85285994..d6f8ca5c 100644 --- a/apidocs/index-files/index-10.html +++ b/apidocs/index-files/index-10.html @@ -2,10 +2,10 @@ - + J-Index - + diff --git a/apidocs/index-files/index-11.html b/apidocs/index-files/index-11.html index b4f00a4f..e440ccb1 100644 --- a/apidocs/index-files/index-11.html +++ b/apidocs/index-files/index-11.html @@ -2,10 +2,10 @@ - + K-Index - + diff --git a/apidocs/index-files/index-12.html b/apidocs/index-files/index-12.html index c00af8d3..e209e9f6 100644 --- a/apidocs/index-files/index-12.html +++ b/apidocs/index-files/index-12.html @@ -2,10 +2,10 @@ - + L-Index - + diff --git a/apidocs/index-files/index-13.html b/apidocs/index-files/index-13.html index 79229edd..5454c99c 100644 --- a/apidocs/index-files/index-13.html +++ b/apidocs/index-files/index-13.html @@ -2,10 +2,10 @@ - + M-Index - + diff --git a/apidocs/index-files/index-14.html b/apidocs/index-files/index-14.html index 5fbee784..610d903d 100644 --- a/apidocs/index-files/index-14.html +++ b/apidocs/index-files/index-14.html @@ -2,10 +2,10 @@ - + N-Index - + diff --git a/apidocs/index-files/index-15.html b/apidocs/index-files/index-15.html index c2bffb1f..9e11113f 100644 --- a/apidocs/index-files/index-15.html +++ b/apidocs/index-files/index-15.html @@ -2,10 +2,10 @@ - + O-Index - + diff --git a/apidocs/index-files/index-16.html b/apidocs/index-files/index-16.html index b9da4c2f..2fe540d0 100644 --- a/apidocs/index-files/index-16.html +++ b/apidocs/index-files/index-16.html @@ -2,10 +2,10 @@ - + P-Index - + diff --git a/apidocs/index-files/index-17.html b/apidocs/index-files/index-17.html index 947e60c5..6999de0d 100644 --- a/apidocs/index-files/index-17.html +++ b/apidocs/index-files/index-17.html @@ -2,10 +2,10 @@ - + Q-Index - + diff --git a/apidocs/index-files/index-18.html b/apidocs/index-files/index-18.html index a83e8cf0..ef016bf7 100644 --- a/apidocs/index-files/index-18.html +++ b/apidocs/index-files/index-18.html @@ -2,10 +2,10 @@ - + R-Index - + diff --git a/apidocs/index-files/index-19.html b/apidocs/index-files/index-19.html index 8d0ed756..36e6835e 100644 --- a/apidocs/index-files/index-19.html +++ b/apidocs/index-files/index-19.html @@ -2,10 +2,10 @@ - + S-Index - + @@ -194,7 +194,7 @@

S

 
setBitpay(String) - Method in class com.bitpay.sdk.model.Invoice.InvoiceUniversalCodes
 
-
setBitpayIdRequired(Boolean) - Method in class com.bitpay.sdk.model.Invoice.Invoice
+
setBitpayIdRequired(boolean) - Method in class com.bitpay.sdk.model.Invoice.Invoice
 
setBtc(MinerFeesItem) - Method in class com.bitpay.sdk.model.Invoice.MinerFees
 
@@ -408,7 +408,7 @@

S

 
setInvoiceTime(long) - Method in class com.bitpay.sdk.model.Invoice.Invoice
 
-
setIsCancelled(Boolean) - Method in class com.bitpay.sdk.model.Invoice.Invoice
+
setIsCancelled(boolean) - Method in class com.bitpay.sdk.model.Invoice.Invoice
 
setIsFee(Boolean) - Method in class com.bitpay.sdk.model.Invoice.InvoiceItemizedDetails
 
@@ -444,7 +444,7 @@

S

Sets the logger level of reporting.
-
setLowFeeDetected(Boolean) - Method in class com.bitpay.sdk.model.Invoice.Invoice
+
setLowFeeDetected(boolean) - Method in class com.bitpay.sdk.model.Invoice.Invoice
 
setMerchant(String) - Method in class com.bitpay.sdk.model.Bill.Bill
 
diff --git a/apidocs/index-files/index-2.html b/apidocs/index-files/index-2.html index 35623e52..5566daa0 100644 --- a/apidocs/index-files/index-2.html +++ b/apidocs/index-files/index-2.html @@ -2,10 +2,10 @@ - + B-Index - + diff --git a/apidocs/index-files/index-20.html b/apidocs/index-files/index-20.html index 0df83f10..f120c13d 100644 --- a/apidocs/index-files/index-20.html +++ b/apidocs/index-files/index-20.html @@ -2,10 +2,10 @@ - + T-Index - + diff --git a/apidocs/index-files/index-21.html b/apidocs/index-files/index-21.html index 899b3211..ac6d1bfa 100644 --- a/apidocs/index-files/index-21.html +++ b/apidocs/index-files/index-21.html @@ -2,10 +2,10 @@ - + U-Index - + diff --git a/apidocs/index-files/index-22.html b/apidocs/index-files/index-22.html index 5b56c40b..7261382b 100644 --- a/apidocs/index-files/index-22.html +++ b/apidocs/index-files/index-22.html @@ -2,10 +2,10 @@ - + V-Index - + diff --git a/apidocs/index-files/index-23.html b/apidocs/index-files/index-23.html index d04d597a..a03fde1c 100644 --- a/apidocs/index-files/index-23.html +++ b/apidocs/index-files/index-23.html @@ -2,10 +2,10 @@ - + W-Index - + diff --git a/apidocs/index-files/index-24.html b/apidocs/index-files/index-24.html index e4702b42..22b3a963 100644 --- a/apidocs/index-files/index-24.html +++ b/apidocs/index-files/index-24.html @@ -2,10 +2,10 @@ - + X-Index - + diff --git a/apidocs/index-files/index-25.html b/apidocs/index-files/index-25.html index 70099859..a25a4c86 100644 --- a/apidocs/index-files/index-25.html +++ b/apidocs/index-files/index-25.html @@ -2,10 +2,10 @@ - + Y-Index - + diff --git a/apidocs/index-files/index-26.html b/apidocs/index-files/index-26.html index a8852030..bc8a2643 100644 --- a/apidocs/index-files/index-26.html +++ b/apidocs/index-files/index-26.html @@ -2,10 +2,10 @@ - + Z-Index - + diff --git a/apidocs/index-files/index-27.html b/apidocs/index-files/index-27.html index 7d3adf6d..7721faea 100644 --- a/apidocs/index-files/index-27.html +++ b/apidocs/index-files/index-27.html @@ -2,10 +2,10 @@ - + _-Index - + diff --git a/apidocs/index-files/index-3.html b/apidocs/index-files/index-3.html index b379b104..a4b20b08 100644 --- a/apidocs/index-files/index-3.html +++ b/apidocs/index-files/index-3.html @@ -2,10 +2,10 @@ - + C-Index - + diff --git a/apidocs/index-files/index-4.html b/apidocs/index-files/index-4.html index 80a2bd40..e41b6589 100644 --- a/apidocs/index-files/index-4.html +++ b/apidocs/index-files/index-4.html @@ -2,10 +2,10 @@ - + D-Index - + diff --git a/apidocs/index-files/index-5.html b/apidocs/index-files/index-5.html index 2e41fd00..bc16e675 100644 --- a/apidocs/index-files/index-5.html +++ b/apidocs/index-files/index-5.html @@ -2,10 +2,10 @@ - + E-Index - + diff --git a/apidocs/index-files/index-6.html b/apidocs/index-files/index-6.html index 695f714a..f8f923b0 100644 --- a/apidocs/index-files/index-6.html +++ b/apidocs/index-files/index-6.html @@ -2,10 +2,10 @@ - + F-Index - + diff --git a/apidocs/index-files/index-7.html b/apidocs/index-files/index-7.html index d067670e..94942a65 100644 --- a/apidocs/index-files/index-7.html +++ b/apidocs/index-files/index-7.html @@ -2,10 +2,10 @@ - + G-Index - + diff --git a/apidocs/index-files/index-8.html b/apidocs/index-files/index-8.html index 3fbd9235..3464fed6 100644 --- a/apidocs/index-files/index-8.html +++ b/apidocs/index-files/index-8.html @@ -2,10 +2,10 @@ - + H-Index - + diff --git a/apidocs/index-files/index-9.html b/apidocs/index-files/index-9.html index 7067ec09..8d3c1442 100644 --- a/apidocs/index-files/index-9.html +++ b/apidocs/index-files/index-9.html @@ -2,10 +2,10 @@ - + I-Index - + diff --git a/apidocs/index.html b/apidocs/index.html index cc1a6c8b..c6d5b38b 100644 --- a/apidocs/index.html +++ b/apidocs/index.html @@ -2,10 +2,10 @@ - + Overview - + diff --git a/apidocs/member-search-index.js b/apidocs/member-search-index.js index 5497a84f..fc172f06 100644 --- a/apidocs/member-search-index.js +++ b/apidocs/member-search-index.js @@ -1 +1 @@ -memberSearchIndex = [{"p":"com.bitpay.sdk","c":"Client","l":"_currenciesInfo"},{"p":"com.bitpay.sdk.model.Payout","c":"RecipientStatus","l":"ACTIVE"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"AED"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"AFN"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"ALL"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"AMD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"ANG"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"AOA"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"ARS"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"AUD"},{"p":"com.bitpay.sdk","c":"Client","l":"authorizeClient(String)","url":"authorizeClient(java.lang.String)"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"AWG"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"AZN"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"BAM"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"BBD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"BCH"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"BDT"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"BGN"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"BHD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"BIF"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"Bill()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"Bill(String, String, String, List)","url":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.util.List)"},{"p":"com.bitpay.sdk.exceptions","c":"BillCreationException","l":"BillCreationException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.exceptions","c":"BillDeliveryException","l":"BillDeliveryException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.exceptions","c":"BillException","l":"BillException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.exceptions","c":"BillQueryException","l":"BillQueryException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.model.Bill","c":"BillStatus","l":"BillStatus()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.exceptions","c":"BillUpdateException","l":"BillUpdateException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk","c":"Env","l":"BitpayApiFrame"},{"p":"com.bitpay.sdk","c":"Env","l":"BitpayApiFrameVersion"},{"p":"com.bitpay.sdk","c":"Env","l":"BitpayApiVersion"},{"p":"com.bitpay.sdk","c":"BitPayException","l":"BitPayException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.exceptions","c":"BitPayException","l":"BitPayException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.util","c":"BitPayLogger","l":"BitPayLogger(int)","url":"%3Cinit%3E(int)"},{"p":"com.bitpay.sdk","c":"Env","l":"BitpayPluginInfo"},{"p":"test","c":"BitPayTestMerchant","l":"BitPayTestMerchant()","url":"%3Cinit%3E()"},{"p":"test","c":"BitPayTestPayouts","l":"BitPayTestPayouts()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"BMD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"BND"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"BOB"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"BOV"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"BRL"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"BSD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"BTC"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"BTN"},{"p":"com.bitpay.sdk","c":"Client","l":"BuildConfig(String, Env.Tokens)","url":"BuildConfig(java.lang.String,com.bitpay.sdk.Env.Tokens)"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"BUSD"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"Buyer()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"Buyer()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"BWP"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"BYR"},{"p":"com.bitpay.sdk.util","c":"KeyUtils","l":"bytesToHex(byte[])"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"BZD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"CAD"},{"p":"com.bitpay.sdk","c":"Client","l":"cancelInvoice(String)","url":"cancelInvoice(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundStatus","l":"Cancelled"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutStatus","l":"Cancelled"},{"p":"com.bitpay.sdk","c":"Client","l":"cancelPayoutBatch(String)","url":"cancelPayoutBatch(java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"cancelRefund(Invoice, String)","url":"cancelRefund(com.bitpay.sdk.model.Invoice.Invoice,java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"cancelRefund(String)","url":"cancelRefund(java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"cancelRefund(String, Refund)","url":"cancelRefund(java.lang.String,com.bitpay.sdk.model.Invoice.Refund)"},{"p":"com.bitpay.sdk","c":"Client","l":"cancelRefund(String, String)","url":"cancelRefund(java.lang.String,java.lang.String)"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"CDF"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"CHE"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"CHF"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"CHW"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"CLF"},{"p":"com.bitpay.sdk","c":"Client","l":"Client(String, HttpHost)","url":"%3Cinit%3E(java.lang.String,org.apache.http.HttpHost)"},{"p":"com.bitpay.sdk","c":"Client","l":"Client(String, String, Env.Tokens, HttpHost)","url":"%3Cinit%3E(java.lang.String,java.lang.String,com.bitpay.sdk.Env.Tokens,org.apache.http.HttpHost)"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"CLP"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"CNY"},{"p":"com.bitpay.sdk.model.Bill","c":"BillStatus","l":"Complete"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceStatus","l":"Complete"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutStatus","l":"Complete"},{"p":"com.bitpay.sdk","c":"Config","l":"Config()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceStatus","l":"Confirmed"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"COP"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"COU"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"CRC"},{"p":"com.bitpay.sdk","c":"Client","l":"createBill(Bill)","url":"createBill(com.bitpay.sdk.model.Bill.Bill)"},{"p":"com.bitpay.sdk","c":"Client","l":"createBill(Bill, String, boolean)","url":"createBill(com.bitpay.sdk.model.Bill.Bill,java.lang.String,boolean)"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundStatus","l":"Created"},{"p":"com.bitpay.sdk.util","c":"KeyUtils","l":"createEcKey()"},{"p":"com.bitpay.sdk.util","c":"KeyUtils","l":"createEcKeyFromHexString(String)","url":"createEcKeyFromHexString(java.lang.String)"},{"p":"com.bitpay.sdk.util","c":"KeyUtils","l":"createEcKeyFromHexStringFile(String)","url":"createEcKeyFromHexStringFile(java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"createInvoice(Invoice)","url":"createInvoice(com.bitpay.sdk.model.Invoice.Invoice)"},{"p":"com.bitpay.sdk","c":"Client","l":"createInvoice(Invoice, String, Boolean)","url":"createInvoice(com.bitpay.sdk.model.Invoice.Invoice,java.lang.String,java.lang.Boolean)"},{"p":"com.bitpay.sdk","c":"Client","l":"createRefund(Invoice, String, Double, String)","url":"createRefund(com.bitpay.sdk.model.Invoice.Invoice,java.lang.String,java.lang.Double,java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"createRefund(String, Double, String, Boolean, Boolean, Boolean)","url":"createRefund(java.lang.String,java.lang.Double,java.lang.String,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean)"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"CUC"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"CUP"},{"p":"com.bitpay.sdk.model.Wallet","c":"Currencies","l":"Currencies()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"Currency()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.exceptions","c":"CurrencyException","l":"CurrencyException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.model.Wallet","c":"CurrencyQr","l":"CurrencyQr()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.exceptions","c":"CurrencyQueryException","l":"CurrencyQueryException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"CVE"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"CZK"},{"p":"com.bitpay.sdk.util","c":"DateDeserializer","l":"DateDeserializer()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.util","c":"DateSerializer","l":"DateSerializer()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.util","c":"BitPayLogger","l":"DEBUG"},{"p":"com.bitpay.sdk.util","c":"BitPayLogger","l":"debug(String)","url":"debug(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceStatus","l":"Declined"},{"p":"com.bitpay.sdk","c":"Client","l":"deliverBill(String, String)","url":"deliverBill(java.lang.String,java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"deliverBill(String, String, boolean)","url":"deliverBill(java.lang.String,java.lang.String,boolean)"},{"p":"com.bitpay.sdk.util","c":"KeyUtils","l":"deriveSIN(ECKey)","url":"deriveSIN(org.bitcoinj.core.ECKey)"},{"p":"com.bitpay.sdk.util","c":"DateDeserializer","l":"deserialize(JsonParser, DeserializationContext)","url":"deserialize(com.fasterxml.jackson.core.JsonParser,com.fasterxml.jackson.databind.DeserializationContext)"},{"p":"com.bitpay.sdk.util","c":"PayoutInstructionBtcSummaryDeserializer","l":"deserialize(JsonParser, DeserializationContext)","url":"deserialize(com.fasterxml.jackson.core.JsonParser,com.fasterxml.jackson.databind.DeserializationContext)"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"DJF"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"DKK"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"DOGE"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"DOP"},{"p":"com.bitpay.sdk.model.Bill","c":"BillStatus","l":"Draft"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"DZD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"EGP"},{"p":"com.bitpay.sdk.model.Payout","c":"RecipientReferenceMethod","l":"EMAIL"},{"p":"com.bitpay.sdk","c":"Env","l":"Env()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"ERN"},{"p":"com.bitpay.sdk.util","c":"BitPayLogger","l":"ERR"},{"p":"com.bitpay.sdk.util","c":"BitPayLogger","l":"err(String)","url":"err(java.lang.String)"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"ETB"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"ETH"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"EUR"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceStatus","l":"Expired"},{"p":"com.bitpay.sdk.model","c":"Facade","l":"Facade()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutStatus","l":"Failed"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundStatus","l":"Failure"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"FJD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"FKP"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutStatus","l":"Funded"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"GBP"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"GEL"},{"p":"com.bitpay.sdk","c":"Client","l":"get(String)","url":"get(java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"get(String, List)","url":"get(java.lang.String,java.util.List)"},{"p":"com.bitpay.sdk","c":"Client","l":"get(String, List, boolean)","url":"get(java.lang.String,java.util.List,boolean)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getAcceptanceWindow()"},{"p":"com.bitpay.sdk","c":"Client","l":"getAccessToken(String)","url":"getAccessToken(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getAccount()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipient","l":"getAccount()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getAccount()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getAccountHolderAddress()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getAccountHolderAddress2()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getAccountHolderCity()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getAccountHolderCountry()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getAccountHolderName()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getAccountHolderPostalCode()"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"getAccountId()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getAdditionalInformation()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getAddress()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getAddress1()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"getAddress1()"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"getAddress1()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getAddress2()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"getAddress2()"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"getAddress2()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceItemizedDetails","l":"getAmount()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceTransaction","l":"getAmount()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceTransactionDetails","l":"getAmount()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"getAmount()"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundParams","l":"getAmount()"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"getAmount()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getAmount()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"getAmount()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstructionTransaction","l":"getAmount()"},{"p":"com.bitpay.sdk.model.Settlement","c":"InvoiceData","l":"getAmount()"},{"p":"com.bitpay.sdk.model.Settlement","c":"RefundInfo","l":"getAmount()"},{"p":"com.bitpay.sdk.model.Settlement","c":"SettlementLedgerEntry","l":"getAmount()"},{"p":"com.bitpay.sdk.model.Settlement","c":"WithHoldings","l":"getAmount()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getAmountPaid()"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundInfo","l":"getAmounts()"},{"p":"com.bitpay.sdk.model.Wallet","c":"Wallet","l":"getAvatar()"},{"p":"com.bitpay.sdk.model.Ledger","c":"Ledger","l":"getBalance()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getBank()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getBankAddress()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getBankCountry()"},{"p":"com.bitpay.sdk.model.Settlement","c":"WithHoldings","l":"getBankCountry()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getBankName()"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFees","l":"getBch()"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrencies","l":"getBch()"},{"p":"com.bitpay.sdk","c":"Client","l":"getBill(String)","url":"getBill(java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"getBill(String, String, boolean)","url":"getBill(java.lang.String,java.lang.String,boolean)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getBillId()"},{"p":"com.bitpay.sdk","c":"Client","l":"getBills()"},{"p":"com.bitpay.sdk","c":"Client","l":"getBills(String)","url":"getBills(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceUniversalCodes","l":"getBitpay()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getBitpayIdRequired()"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFees","l":"getBtc()"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrencies","l":"getBtc()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getBtc()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"getBtc()"},{"p":"com.bitpay.sdk.model.Settlement","c":"InvoiceData","l":"getBtcPrice()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getBuyer()"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"getBuyer()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"getBuyerPaysRefundFee()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getBuyerProvidedEmail()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getCc()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getCity()"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"getCity()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getCity()"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"getClosingDate()"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"getCode()"},{"p":"com.bitpay.sdk.model.Rate","c":"Rate","l":"getCode()"},{"p":"com.bitpay.sdk.model.Settlement","c":"SettlementLedgerEntry","l":"getCode()"},{"p":"com.bitpay.sdk.model.Settlement","c":"WithHoldings","l":"getCode()"},{"p":"com.bitpay.sdk.model.Wallet","c":"Currencies","l":"getCode()"},{"p":"com.bitpay.sdk.model.Wallet","c":"CurrencyQr","l":"getCollapsed()"},{"p":"com.bitpay.sdk","c":"Client","l":"GetConfig()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceTransaction","l":"getConfirmations()"},{"p":"com.bitpay.sdk.model","c":"Token","l":"getCount()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getCountry()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"getCountry()"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"getCountry()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getCreateDate()"},{"p":"com.bitpay.sdk.model.Wallet","c":"Wallet","l":"getCurrencies()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getCurrency()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getCurrency()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"getCurrency()"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundInfo","l":"getCurrency()"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundParams","l":"getCurrency()"},{"p":"com.bitpay.sdk.model.Ledger","c":"Ledger","l":"getCurrency()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getCurrency()"},{"p":"com.bitpay.sdk.model.Settlement","c":"InvoiceData","l":"getCurrency()"},{"p":"com.bitpay.sdk.model.Settlement","c":"RefundInfo","l":"getCurrency()"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"getCurrency()"},{"p":"com.bitpay.sdk","c":"Client","l":"getCurrencyInfo(String)","url":"getCurrencyInfo(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getCurrentTime()"},{"p":"com.bitpay.sdk.model.Wallet","c":"Currencies","l":"getDappBrowser()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstructionTransaction","l":"getDate()"},{"p":"com.bitpay.sdk.model.Settlement","c":"InvoiceData","l":"getDate()"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"getDateCompleted()"},{"p":"com.bitpay.sdk.model","c":"Token","l":"getDateCreated()"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"getDateCreated()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getDateExecuted()"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"getDateExecuted()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getDepositTotal()"},{"p":"com.bitpay.sdk.model.Bill","c":"Item","l":"getDescription()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceItemizedDetails","l":"getDescription()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceTransactionDetails","l":"getDescription()"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"getDescription()"},{"p":"com.bitpay.sdk.model.Settlement","c":"SettlementLedgerEntry","l":"getDescription()"},{"p":"com.bitpay.sdk.model.Settlement","c":"WithHoldings","l":"getDescription()"},{"p":"com.bitpay.sdk.model.Wallet","c":"Wallet","l":"getDisplayName()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getDueDate()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getEffectiveDate()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getEmail()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"getEmail()"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundParams","l":"getEmail()"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"getEmail()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"getEmail()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceBuyerProvidedInfo","l":"getEmailAddress()"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrency","l":"getEnabled()"},{"p":"com.bitpay.sdk.model.Ledger","c":"Ledger","l":"getEntries()"},{"p":"com.bitpay.sdk","c":"Config","l":"getEnvConfig(String)","url":"getEnvConfig(java.lang.String)"},{"p":"com.bitpay.sdk","c":"Config","l":"getEnvironment()"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFees","l":"getEth()"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrencies","l":"getEth()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getExceptionStatus()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getExchangeRates()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getExpirationTime()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getExtendedNotifications()"},{"p":"com.bitpay.sdk.model","c":"Token","l":"getFacade()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getFee()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getForcedBuyerSelectedWallet()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getFullNotifications()"},{"p":"com.bitpay.sdk.model","c":"Token","l":"getGuid()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getGuid()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"getGuid()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getGuid()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipient","l":"getGuid()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipients","l":"getGuid()"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFees","l":"getGusd()"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrencies","l":"getGusd()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getIban()"},{"p":"com.bitpay.sdk.model","c":"Token","l":"getId()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getId()"},{"p":"com.bitpay.sdk.model.Bill","c":"Item","l":"getId()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getId()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"getId()"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"getId()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getId()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"getId()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipient","l":"getId()"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"getId()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"getImmediate()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getInstructions()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipients","l":"getInstructions()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"getInvoice()"},{"p":"com.bitpay.sdk","c":"Client","l":"getInvoice(String)","url":"getInvoice(java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"getInvoice(String, String, Boolean)","url":"getInvoice(java.lang.String,java.lang.String,java.lang.Boolean)"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"getInvoiceAmount()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getInvoiceBuyerProvidedInfo()"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"getInvoiceCurrency()"},{"p":"com.bitpay.sdk.model.Settlement","c":"SettlementLedgerEntry","l":"getInvoiceData()"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"getInvoiceId()"},{"p":"com.bitpay.sdk.model.Settlement","c":"SettlementLedgerEntry","l":"getInvoiceId()"},{"p":"com.bitpay.sdk","c":"Client","l":"getInvoices(String, String, String, String, Integer, Integer)","url":"getInvoices(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.Integer,java.lang.Integer)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getInvoiceTime()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getIsCancelled()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceItemizedDetails","l":"getIsFee()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceTransactionDetails","l":"getIsFee()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getItemCode()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getItemDesc()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getItemizedDetails()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getItems()"},{"p":"com.bitpay.sdk.model.Wallet","c":"Wallet","l":"getKey()"},{"p":"com.bitpay.sdk.util","c":"KeyUtils","l":"getKeyStringFromFile(String)","url":"getKeyStringFromFile(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getlabel()"},{"p":"com.bitpay.sdk.model.Settlement","c":"WithHoldings","l":"getlabel()"},{"p":"com.bitpay.sdk.model","c":"Token","l":"getLabel()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"getLabel()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"getLastRefundNotification()"},{"p":"com.bitpay.sdk","c":"Client","l":"getLedger(String, String, String)","url":"getLedger(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"getLedgerEntries()"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"getLedgerEntriesSum()"},{"p":"com.bitpay.sdk","c":"Client","l":"getLedgers()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"getLocality()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getLowFeeDetected()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getMerchant()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getMerchantEin()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getMerchantName()"},{"p":"com.bitpay.sdk.model","c":"Policy","l":"getMethod()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getMinerFees()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getName()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"getName()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceBuyerProvidedInfo","l":"getName()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Shopper","l":"getName()"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"getName()"},{"p":"com.bitpay.sdk.model.Rate","c":"Rate","l":"getName()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getName()"},{"p":"com.bitpay.sdk.model.Settlement","c":"WithHoldings","l":"getNotes()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getNotificationEmail()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getNotificationEmail()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getNotificationURL()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getNotificationURL()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"getNotify()"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"getNotify()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getNumber()"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"getOpeningBalance()"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"getOpeningDate()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getOrderId()"},{"p":"com.bitpay.sdk.model.Settlement","c":"InvoiceData","l":"getOrderId()"},{"p":"com.bitpay.sdk.model.Settlement","c":"InvoiceData","l":"getOverPaidAmount()"},{"p":"com.bitpay.sdk.model.Wallet","c":"Currencies","l":"getP2p()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstructionBtcSummary","l":"getPaid()"},{"p":"com.bitpay.sdk.model","c":"Token","l":"getPairingCode()"},{"p":"com.bitpay.sdk.model","c":"Token","l":"getPairingExpiration()"},{"p":"com.bitpay.sdk.model","c":"Policy","l":"getParams()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"getParams()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getPassProcessingFee()"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFees","l":"getPax()"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrencies","l":"getPax()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getPaymentCurrencies()"},{"p":"com.bitpay.sdk","c":"Client","l":"getPayoutBatch(String)","url":"getPayoutBatch(java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"getPayoutBatches()"},{"p":"com.bitpay.sdk","c":"Client","l":"getPayoutBatches(String)","url":"getPayoutBatches(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"getPayoutInfo()"},{"p":"com.bitpay.sdk.model.Settlement","c":"InvoiceData","l":"getPayoutPercentage()"},{"p":"com.bitpay.sdk","c":"Client","l":"getPayoutRecipient(String)","url":"getPayoutRecipient(java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"getPayoutRecipients(String, Integer)","url":"getPayoutRecipients(java.lang.String,java.lang.Integer)"},{"p":"com.bitpay.sdk.model.Wallet","c":"Currencies","l":"getPayPro()"},{"p":"com.bitpay.sdk.model.Wallet","c":"Wallet","l":"getPayPro()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getPercentFee()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getPhone()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"getPhone()"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"getPhone()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceBuyerProvidedInfo","l":"getPhoneNumber()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getPhysical()"},{"p":"com.bitpay.sdk.model","c":"Token","l":"getPolicies()"},{"p":"com.bitpay.sdk.model","c":"Policy","l":"getPolicy()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getPosData()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getPostal()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"getPostalCode()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"getPreview()"},{"p":"com.bitpay.sdk.model.Bill","c":"Item","l":"getPrice()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getPrice()"},{"p":"com.bitpay.sdk.model.Settlement","c":"InvoiceData","l":"getPrice()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getPricingMethod()"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundParams","l":"getPurchaserNotifyEmail()"},{"p":"com.bitpay.sdk.model.Wallet","c":"Currencies","l":"getQr()"},{"p":"com.bitpay.sdk.model.Bill","c":"Item","l":"getQuantity()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getRate()"},{"p":"com.bitpay.sdk.model.Rate","c":"Rates","l":"getRate(String)","url":"getRate(java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"getRates()"},{"p":"com.bitpay.sdk.model.Rate","c":"Rates","l":"getRates()"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrency","l":"getReason()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceTransaction","l":"getReceivedTime()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"getRecipientId()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getRedirectURL()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getReference()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipient","l":"getReference()"},{"p":"com.bitpay.sdk.model.Settlement","c":"SettlementLedgerEntry","l":"getReference()"},{"p":"com.bitpay.sdk","c":"Client","l":"getRefund(Invoice, String)","url":"getRefund(com.bitpay.sdk.model.Invoice.Invoice,java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"getRefund(String)","url":"getRefund(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundParams","l":"getRefundAddress()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getRefundAddresses()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getRefundAddressRequestPending()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"getRefundEmail()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"getRefundFee()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getRefundInfo()"},{"p":"com.bitpay.sdk","c":"Client","l":"getRefunds(Invoice)","url":"getRefunds(com.bitpay.sdk.model.Invoice.Invoice)"},{"p":"com.bitpay.sdk","c":"Client","l":"getRefunds(String)","url":"getRefunds(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"getRegion()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"getRequestDate()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getRequestDate()"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundParams","l":"getRequesterEmail()"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundParams","l":"getRequesterType()"},{"p":"com.bitpay.sdk.model","c":"Token","l":"getResource()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getRouting()"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFeesItem","l":"getSatoshisPerByte()"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"getScale()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getSelectedTransactionCurrency()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceBuyerProvidedInfo","l":"getSelectedTransactionCurrency()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceBuyerProvidedInfo","l":"getSelectedWallet()"},{"p":"com.bitpay.sdk","c":"Client","l":"getSettlement(String)","url":"getSettlement(java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"getSettlementReconciliationReport(Settlement)","url":"getSettlementReconciliationReport(com.bitpay.sdk.model.Settlement.Settlement)"},{"p":"com.bitpay.sdk","c":"Client","l":"getSettlements(String, String, String, String, Integer, Integer)","url":"getSettlements(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.Integer,java.lang.Integer)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getShopper()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"getShopperId()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceBuyerProvidedInfo","l":"getSms()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceBuyerProvidedInfo","l":"getSmsVerified()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getSort()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getState()"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"getState()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getStatus()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getStatus()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"getStatus()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getStatus()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"getStatus()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipient","l":"getStatus()"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"getStatus()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getSupportedTransactionCurrencies()"},{"p":"com.bitpay.sdk","c":"Client","l":"getSupportedWallets()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getSupportPhone()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipient","l":"getSupportPhone()"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundInfo","l":"getSupportRequest()"},{"p":"com.bitpay.sdk.model.Settlement","c":"RefundInfo","l":"getSupportRequest()"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundParams","l":"getSupportRequestEid()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getSwift()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getTargetConfirmations()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceTransaction","l":"getTime()"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"getTimestamp()"},{"p":"com.bitpay.sdk.model.Settlement","c":"SettlementLedgerEntry","l":"getTimestamp()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getToken()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getToken()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"getToken()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getToken()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipient","l":"getToken()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipients","l":"getToken()"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"getToken()"},{"p":"com.bitpay.sdk","c":"Client","l":"GetTokenByFacade(String)","url":"GetTokenByFacade(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"getTotalAmount()"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFeesItem","l":"getTotalFee()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getTransactionCurrency()"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"getTransactionCurrency()"},{"p":"com.bitpay.sdk.model.Settlement","c":"InvoiceData","l":"getTransactionCurrency()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getTransactionDetails()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceTransaction","l":"getTransactionId()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getTransactions()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"getTransactions()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getTransactionSpeed()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstructionTransaction","l":"getTxid()"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"getTxType()"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"getType()"},{"p":"com.bitpay.sdk.model.Wallet","c":"CurrencyQr","l":"getType()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getUniversalCodes()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstructionBtcSummary","l":"getUnpaid()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getUrl()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getUrl()"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFees","l":"getUsdc()"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrencies","l":"getUsdc()"},{"p":"com.bitpay.sdk.model","c":"Token","l":"getValue()"},{"p":"com.bitpay.sdk.model.Rate","c":"Rate","l":"getValue()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"getWalletProvider()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getWire()"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"getWithHoldings()"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"getWithHoldingsSum()"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFees","l":"getXrp()"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrencies","l":"getXrp()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getZip()"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"getZip()"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"GHS"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"GIP"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"GMD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"GNF"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"GTQ"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"GUSD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"GYD"},{"p":"com.bitpay.sdk.util","c":"KeyUtils","l":"hexToBytes(String)","url":"hexToBytes(java.lang.String)"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"HKD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"HNL"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"HRK"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"HTG"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"HUF"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"IDR"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"ILS"},{"p":"com.bitpay.sdk.util","c":"BitPayLogger","l":"INFO"},{"p":"com.bitpay.sdk.util","c":"BitPayLogger","l":"info(String)","url":"info(java.lang.String)"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"INR"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceStatus","l":"Invalid"},{"p":"com.bitpay.sdk.model.Payout","c":"RecipientStatus","l":"INVITED"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"Invoice()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"Invoice(Double, String)","url":"%3Cinit%3E(java.lang.Double,java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceBuyerProvidedInfo","l":"InvoiceBuyerProvidedInfo()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.exceptions","c":"InvoiceCancellationException","l":"InvoiceCancellationException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.exceptions","c":"InvoiceCreationException","l":"InvoiceCreationException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"InvoiceData","l":"InvoiceData()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.exceptions","c":"InvoiceException","l":"InvoiceException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceItemizedDetails","l":"InvoiceItemizedDetails()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.exceptions","c":"InvoiceQueryException","l":"InvoiceQueryException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceStatus","l":"InvoiceStatus()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceTransaction","l":"InvoiceTransaction()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceTransactionDetails","l":"InvoiceTransactionDetails(Double, String, Boolean)","url":"%3Cinit%3E(java.lang.Double,java.lang.String,java.lang.Boolean)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceUniversalCodes","l":"InvoiceUniversalCodes()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.exceptions","c":"InvoiceUpdateException","l":"InvoiceUpdateException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"IQD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"IRR"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"ISK"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"isValid(String)","url":"isValid(java.lang.String)"},{"p":"com.bitpay.sdk.model.Bill","c":"Item","l":"Item()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"JMD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"JOD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"JPY"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"KES"},{"p":"com.bitpay.sdk.util","c":"KeyUtils","l":"KeyUtils()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"KGS"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"KHR"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"KMF"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"KPW"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"KRW"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"KWD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"KYD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"KZT"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"LAK"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"LBP"},{"p":"com.bitpay.sdk.model.Ledger","c":"Ledger","l":"Ledger()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"LedgerEntry()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.exceptions","c":"LedgerException","l":"LedgerException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.exceptions","c":"LedgerQueryException","l":"LedgerQueryException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"LKR"},{"p":"com.bitpay.sdk.util","c":"KeyUtils","l":"loadEcKey()"},{"p":"com.bitpay.sdk.util","c":"KeyUtils","l":"loadEcKey(URI)","url":"loadEcKey(java.net.URI)"},{"p":"com.bitpay.sdk.util","c":"KeyUtils","l":"loadEcKeyAsHex(ECKey)","url":"loadEcKeyAsHex(org.bitcoinj.core.ECKey)"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"LRD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"LSL"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"LTC"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"LYD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"MAD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"MDL"},{"p":"com.bitpay.sdk","c":"Env.Tokens","l":"merchant"},{"p":"com.bitpay.sdk.model","c":"Facade","l":"Merchant"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"MethodVwap24"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"MGA"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFees","l":"MinerFees()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFeesItem","l":"MinerFeesItem()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"MKD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"MMK"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"MNT"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"MOP"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"MRU"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"MUR"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"MVR"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"MWK"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"MXN"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"MXV"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"MYR"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"MZN"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"NAD"},{"p":"com.bitpay.sdk.model.Bill","c":"BillStatus","l":"New"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceStatus","l":"New"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutStatus","l":"New"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"NGN"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"NIO"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"NOK"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"NPR"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"NZD"},{"p":"com.bitpay.sdk.util","c":"BitPayLogger","l":"OFF"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"OMR"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"PAB"},{"p":"com.bitpay.sdk.model.Bill","c":"BillStatus","l":"Paid"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceStatus","l":"Paid"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutStatus","l":"Paid"},{"p":"com.bitpay.sdk.model.Payout","c":"RecipientStatus","l":"PAUSED"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"PAX"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"PayoutBatch()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"PayoutBatch(String, long, List)","url":"%3Cinit%3E(java.lang.String,long,java.util.List)"},{"p":"com.bitpay.sdk.exceptions","c":"PayoutCancellationException","l":"PayoutCancellationException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.exceptions","c":"PayoutCreationException","l":"PayoutCreationException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.exceptions","c":"PayoutException","l":"PayoutException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"PayoutInfo()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"PayoutInstruction()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"PayoutInstruction(Double, int, String)","url":"%3Cinit%3E(java.lang.Double,int,java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstructionBtcSummary","l":"PayoutInstructionBtcSummary(Double, Double)","url":"%3Cinit%3E(java.lang.Double,java.lang.Double)"},{"p":"com.bitpay.sdk.util","c":"PayoutInstructionBtcSummaryDeserializer","l":"PayoutInstructionBtcSummaryDeserializer()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstructionTransaction","l":"PayoutInstructionTransaction()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.exceptions","c":"PayoutQueryException","l":"PayoutQueryException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipient","l":"PayoutRecipient()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipient","l":"PayoutRecipient(String, String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipients","l":"PayoutRecipients(List)","url":"%3Cinit%3E(java.util.List)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutStatus","l":"PayoutStatus()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk","c":"Env.Tokens","l":"payroll"},{"p":"com.bitpay.sdk.model","c":"Facade","l":"Payroll"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"PEN"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundStatus","l":"Pending"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"PGK"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"PHP"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"PKR"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"PLN"},{"p":"com.bitpay.sdk.model","c":"Facade","l":"PointOfSale"},{"p":"com.bitpay.sdk.model","c":"Policy","l":"Policy()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk","c":"Env.Tokens","l":"pos"},{"p":"com.bitpay.sdk","c":"Client","l":"post(String, String)","url":"post(java.lang.String,java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"post(String, String, boolean)","url":"post(java.lang.String,java.lang.String,boolean)"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundStatus","l":"Preview"},{"p":"com.bitpay.sdk.util","c":"KeyUtils","l":"privateKeyExists(String)","url":"privateKeyExists(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutStatus","l":"Processing"},{"p":"com.bitpay.sdk","c":"Env","l":"Prod"},{"p":"com.bitpay.sdk","c":"Env","l":"ProdUrl"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"PYG"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"QAR"},{"p":"com.bitpay.sdk.model.Rate","c":"Rate","l":"Rate()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.exceptions","c":"RateException","l":"RateException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.exceptions","c":"RateQueryException","l":"RateQueryException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.model.Rate","c":"Rates","l":"Rates(List, Client)","url":"%3Cinit%3E(java.util.List,com.bitpay.sdk.Client)"},{"p":"com.bitpay.sdk.model.Payout","c":"RecipientReferenceMethod","l":"RECIPIENT_ID"},{"p":"com.bitpay.sdk.model.Payout","c":"RecipientReferenceMethod","l":"RecipientReferenceMethod()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Payout","c":"RecipientStatus","l":"RecipientStatus()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"Refund()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.exceptions","c":"RefundCancellationException","l":"RefundCancellationException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.exceptions","c":"RefundCreationException","l":"RefundCreationException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.exceptions","c":"RefundException","l":"RefundException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundInfo","l":"RefundInfo()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Settlement","c":"RefundInfo","l":"RefundInfo()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundParams","l":"RefundParams()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.exceptions","c":"RefundQueryException","l":"RefundQueryException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundStatus","l":"RefundStatus()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.exceptions","c":"RefundUpdateException","l":"RefundUpdateException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"RecipientStatus","l":"REMOVED"},{"p":"com.bitpay.sdk","c":"Client","l":"requestClientAuthorization(String)","url":"requestClientAuthorization(java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"responseToJsonString(HttpResponse)","url":"responseToJsonString(org.apache.http.HttpResponse)"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"RON"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"RSD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"RUB"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"RWF"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"SAR"},{"p":"com.bitpay.sdk.util","c":"KeyUtils","l":"saveEcKey(ECKey)","url":"saveEcKey(org.bitcoinj.core.ECKey)"},{"p":"com.bitpay.sdk.util","c":"KeyUtils","l":"saveEcKey(ECKey, URI)","url":"saveEcKey(org.bitcoinj.core.ECKey,java.net.URI)"},{"p":"com.bitpay.sdk.util","c":"KeyUtils","l":"saveEcKeyAsHex(ECKey)","url":"saveEcKeyAsHex(org.bitcoinj.core.ECKey)"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"SBD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"SCR"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"SDG"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"SEK"},{"p":"com.bitpay.sdk","c":"Client","l":"sendRefundNotification(String)","url":"sendRefundNotification(java.lang.String)"},{"p":"com.bitpay.sdk.model.Bill","c":"BillStatus","l":"Sent"},{"p":"com.bitpay.sdk.util","c":"DateSerializer","l":"serialize(Long, JsonGenerator, SerializerProvider)","url":"serialize(java.lang.Long,com.fasterxml.jackson.core.JsonGenerator,com.fasterxml.jackson.databind.SerializerProvider)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setAcceptanceWindow(long)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setAccount(String)","url":"setAccount(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipient","l":"setAccount(String)","url":"setAccount(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setAccount(String)","url":"setAccount(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setAccountHolderAddress(String)","url":"setAccountHolderAddress(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setAccountHolderAddress2(String)","url":"setAccountHolderAddress2(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setAccountHolderCity(String)","url":"setAccountHolderCity(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setAccountHolderCountry(String)","url":"setAccountHolderCountry(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setAccountHolderName(String)","url":"setAccountHolderName(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setAccountHolderPostalCode(String)","url":"setAccountHolderPostalCode(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"setAccountId(String)","url":"setAccountId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setAdditionalInformation(String)","url":"setAdditionalInformation(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setAddress(String)","url":"setAddress(java.lang.String)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setAddress1(String)","url":"setAddress1(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"setAddress1(String)","url":"setAddress1(java.lang.String)"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"setAddress1(String)","url":"setAddress1(java.lang.String)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setAddress2(String)","url":"setAddress2(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"setAddress2(String)","url":"setAddress2(java.lang.String)"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"setAddress2(String)","url":"setAddress2(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceTransaction","l":"setAmount(BigDecimal)","url":"setAmount(java.math.BigDecimal)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceItemizedDetails","l":"setAmount(double)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceTransactionDetails","l":"setAmount(Double)","url":"setAmount(java.lang.Double)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"setAmount(Double)","url":"setAmount(java.lang.Double)"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundParams","l":"setAmount(Double)","url":"setAmount(java.lang.Double)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setAmount(Double)","url":"setAmount(java.lang.Double)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"setAmount(Double)","url":"setAmount(java.lang.Double)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstructionTransaction","l":"setAmount(Double)","url":"setAmount(java.lang.Double)"},{"p":"com.bitpay.sdk.model.Settlement","c":"SettlementLedgerEntry","l":"setAmount(Float)","url":"setAmount(java.lang.Float)"},{"p":"com.bitpay.sdk.model.Settlement","c":"WithHoldings","l":"setAmount(Float)","url":"setAmount(java.lang.Float)"},{"p":"com.bitpay.sdk.model.Settlement","c":"RefundInfo","l":"setAmount(Hashtable)","url":"setAmount(java.util.Hashtable)"},{"p":"com.bitpay.sdk.model.Settlement","c":"InvoiceData","l":"setAmount(RefundInfo)","url":"setAmount(com.bitpay.sdk.model.Settlement.RefundInfo)"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"setAmount(String)","url":"setAmount(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setAmountPaid(BigDecimal)","url":"setAmountPaid(java.math.BigDecimal)"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundInfo","l":"setAmounts(Hashtable)","url":"setAmounts(java.util.Hashtable)"},{"p":"com.bitpay.sdk.model.Wallet","c":"Wallet","l":"setAvatar(String)","url":"setAvatar(java.lang.String)"},{"p":"com.bitpay.sdk.model.Ledger","c":"Ledger","l":"setBalance(Double)","url":"setBalance(java.lang.Double)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setBank(String)","url":"setBank(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setBankAddress(String)","url":"setBankAddress(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setBankCountry(String)","url":"setBankCountry(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"WithHoldings","l":"setBankCountry(String)","url":"setBankCountry(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setBankName(String)","url":"setBankName(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFees","l":"setBch(MinerFeesItem)","url":"setBch(com.bitpay.sdk.model.Invoice.MinerFeesItem)"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrencies","l":"setBch(SupportedTransactionCurrency)","url":"setBch(com.bitpay.sdk.model.Invoice.SupportedTransactionCurrency)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setBillId(String)","url":"setBillId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceUniversalCodes","l":"setBitpay(String)","url":"setBitpay(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setBitpayIdRequired(Boolean)","url":"setBitpayIdRequired(java.lang.Boolean)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setBtc(Double)","url":"setBtc(java.lang.Double)"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFees","l":"setBtc(MinerFeesItem)","url":"setBtc(com.bitpay.sdk.model.Invoice.MinerFeesItem)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"setBtc(PayoutInstructionBtcSummary)","url":"setBtc(com.bitpay.sdk.model.Payout.PayoutInstructionBtcSummary)"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrencies","l":"setBtc(SupportedTransactionCurrency)","url":"setBtc(com.bitpay.sdk.model.Invoice.SupportedTransactionCurrency)"},{"p":"com.bitpay.sdk.model.Settlement","c":"InvoiceData","l":"setBtcPrice(Float)","url":"setBtcPrice(java.lang.Float)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setBuyer(Buyer)","url":"setBuyer(com.bitpay.sdk.model.Invoice.Buyer)"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"setBuyer(Buyer)","url":"setBuyer(com.bitpay.sdk.model.Ledger.Buyer)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"setBuyerPaysRefundFee(Boolean)","url":"setBuyerPaysRefundFee(java.lang.Boolean)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setBuyerProvidedEmail(String)","url":"setBuyerProvidedEmail(java.lang.String)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setCc(List)","url":"setCc(java.util.List)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setCity(String)","url":"setCity(java.lang.String)"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"setCity(String)","url":"setCity(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setCity(String)","url":"setCity(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"setClosingDate(Long)","url":"setClosingDate(java.lang.Long)"},{"p":"com.bitpay.sdk.model.Settlement","c":"SettlementLedgerEntry","l":"setCode(Integer)","url":"setCode(java.lang.Integer)"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"setCode(String)","url":"setCode(java.lang.String)"},{"p":"com.bitpay.sdk.model.Rate","c":"Rate","l":"setCode(String)","url":"setCode(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"WithHoldings","l":"setCode(String)","url":"setCode(java.lang.String)"},{"p":"com.bitpay.sdk.model.Wallet","c":"Currencies","l":"setCode(String)","url":"setCode(java.lang.String)"},{"p":"com.bitpay.sdk.model.Wallet","c":"CurrencyQr","l":"setCollapsed(Boolean)","url":"setCollapsed(java.lang.Boolean)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceTransaction","l":"setConfirmations(int)"},{"p":"com.bitpay.sdk.model","c":"Token","l":"setCount(int)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setCountry(String)","url":"setCountry(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"setCountry(String)","url":"setCountry(java.lang.String)"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"setCountry(String)","url":"setCountry(java.lang.String)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setCreateDate(String)","url":"setCreateDate(java.lang.String)"},{"p":"com.bitpay.sdk.model.Wallet","c":"Wallet","l":"setCurrencies(ArrayList)","url":"setCurrencies(java.util.ArrayList)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setCurrency(String)","url":"setCurrency(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setCurrency(String)","url":"setCurrency(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"setCurrency(String)","url":"setCurrency(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundInfo","l":"setCurrency(String)","url":"setCurrency(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundParams","l":"setCurrency(String)","url":"setCurrency(java.lang.String)"},{"p":"com.bitpay.sdk.model.Ledger","c":"Ledger","l":"setCurrency(String)","url":"setCurrency(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setCurrency(String)","url":"setCurrency(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"InvoiceData","l":"setCurrency(String)","url":"setCurrency(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"RefundInfo","l":"setCurrency(String)","url":"setCurrency(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"setCurrency(String)","url":"setCurrency(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setCurrentTime(long)"},{"p":"com.bitpay.sdk.model.Wallet","c":"Currencies","l":"setDappBrowser(Boolean)","url":"setDappBrowser(java.lang.Boolean)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstructionTransaction","l":"setDate(Long)","url":"setDate(java.lang.Long)"},{"p":"com.bitpay.sdk.model.Settlement","c":"InvoiceData","l":"setDate(Long)","url":"setDate(java.lang.Long)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"setDateCompleted(Long)","url":"setDateCompleted(java.lang.Long)"},{"p":"com.bitpay.sdk.model","c":"Token","l":"setDateCreated(long)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"setDateCreated(Long)","url":"setDateCreated(java.lang.Long)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setDateExecuted(long)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"setDateExecuted(Long)","url":"setDateExecuted(java.lang.Long)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setDepositTotal(Double)","url":"setDepositTotal(java.lang.Double)"},{"p":"com.bitpay.sdk.model.Bill","c":"Item","l":"setDescription(String)","url":"setDescription(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceItemizedDetails","l":"setDescription(String)","url":"setDescription(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceTransactionDetails","l":"setDescription(String)","url":"setDescription(java.lang.String)"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"setDescription(String)","url":"setDescription(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"SettlementLedgerEntry","l":"setDescription(String)","url":"setDescription(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"WithHoldings","l":"setDescription(String)","url":"setDescription(java.lang.String)"},{"p":"com.bitpay.sdk.model.Wallet","c":"Wallet","l":"setDisplayName(String)","url":"setDisplayName(java.lang.String)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setDueDate(String)","url":"setDueDate(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setEffectiveDate(long)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setEmail(String)","url":"setEmail(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"setEmail(String)","url":"setEmail(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundParams","l":"setEmail(String)","url":"setEmail(java.lang.String)"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"setEmail(String)","url":"setEmail(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"setEmail(String)","url":"setEmail(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceBuyerProvidedInfo","l":"setEmailAddress(String)","url":"setEmailAddress(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrency","l":"setEnabled(boolean)"},{"p":"com.bitpay.sdk.model.Ledger","c":"Ledger","l":"setEntries(List)","url":"setEntries(java.util.List)"},{"p":"com.bitpay.sdk","c":"Config","l":"setEnvConfig(JsonNode)","url":"setEnvConfig(com.fasterxml.jackson.databind.JsonNode)"},{"p":"com.bitpay.sdk","c":"Config","l":"setEnvironment(String)","url":"setEnvironment(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFees","l":"setEth(MinerFeesItem)","url":"setEth(com.bitpay.sdk.model.Invoice.MinerFeesItem)"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrencies","l":"setEth(SupportedTransactionCurrency)","url":"setEth(com.bitpay.sdk.model.Invoice.SupportedTransactionCurrency)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setExceptionStatus(String)","url":"setExceptionStatus(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setExchangeRates(Hashtable>)","url":"setExchangeRates(java.util.Hashtable)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setExpirationTime(long)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setExtendedNotifications(boolean)"},{"p":"com.bitpay.sdk.model","c":"Token","l":"setFacade(String)","url":"setFacade(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setFee(Double)","url":"setFee(java.lang.Double)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setForcedBuyerSelectedWallet(String)","url":"setForcedBuyerSelectedWallet(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setFullNotifications(boolean)"},{"p":"com.bitpay.sdk.model","c":"Token","l":"setGuid(String)","url":"setGuid(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setGuid(String)","url":"setGuid(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"setGuid(String)","url":"setGuid(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setGuid(String)","url":"setGuid(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipient","l":"setGuid(String)","url":"setGuid(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipients","l":"setGuid(String)","url":"setGuid(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFees","l":"setGusd(MinerFeesItem)","url":"setGusd(com.bitpay.sdk.model.Invoice.MinerFeesItem)"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrencies","l":"setGusd(SupportedTransactionCurrency)","url":"setGusd(com.bitpay.sdk.model.Invoice.SupportedTransactionCurrency)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setIban(String)","url":"setIban(java.lang.String)"},{"p":"com.bitpay.sdk.model","c":"Token","l":"setId(String)","url":"setId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setId(String)","url":"setId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Bill","c":"Item","l":"setId(String)","url":"setId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setId(String)","url":"setId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"setId(String)","url":"setId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"setId(String)","url":"setId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setId(String)","url":"setId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"setId(String)","url":"setId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipient","l":"setId(String)","url":"setId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"setId(String)","url":"setId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"setImmediate(Boolean)","url":"setImmediate(java.lang.Boolean)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setInstructions(List)","url":"setInstructions(java.util.List)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipients","l":"setInstructions(List)","url":"setInstructions(java.util.List)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"setInvoice(String)","url":"setInvoice(java.lang.String)"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"setInvoiceAmount(Double)","url":"setInvoiceAmount(java.lang.Double)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setInvoiceBuyerProvidedInfo(InvoiceBuyerProvidedInfo)","url":"setInvoiceBuyerProvidedInfo(com.bitpay.sdk.model.Invoice.InvoiceBuyerProvidedInfo)"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"setInvoiceCurrency(String)","url":"setInvoiceCurrency(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"SettlementLedgerEntry","l":"setInvoiceData(InvoiceData)","url":"setInvoiceData(com.bitpay.sdk.model.Settlement.InvoiceData)"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"setInvoiceId(String)","url":"setInvoiceId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"SettlementLedgerEntry","l":"setInvoiceId(String)","url":"setInvoiceId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setInvoiceTime(long)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setIsCancelled(Boolean)","url":"setIsCancelled(java.lang.Boolean)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceItemizedDetails","l":"setIsFee(Boolean)","url":"setIsFee(java.lang.Boolean)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceTransactionDetails","l":"setIsFee(Boolean)","url":"setIsFee(java.lang.Boolean)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setItemCode(String)","url":"setItemCode(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setItemDesc(String)","url":"setItemDesc(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setItemizedDetails(List)","url":"setItemizedDetails(java.util.List)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setItems(List)","url":"setItems(java.util.List)"},{"p":"com.bitpay.sdk.model.Wallet","c":"Wallet","l":"setKey(String)","url":"setKey(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setlabel(String)","url":"setlabel(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"WithHoldings","l":"setlabel(String)","url":"setlabel(java.lang.String)"},{"p":"com.bitpay.sdk.model","c":"Token","l":"setLabel(String)","url":"setLabel(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"setLabel(String)","url":"setLabel(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"setLastRefundNotification(Date)","url":"setLastRefundNotification(java.util.Date)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"setLedgerEntries(List)","url":"setLedgerEntries(java.util.List)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"setLedgerEntriesSum(Float)","url":"setLedgerEntriesSum(java.lang.Float)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"setLocality(String)","url":"setLocality(java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"setLoggerLevel(int)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setLowFeeDetected(Boolean)","url":"setLowFeeDetected(java.lang.Boolean)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setMerchant(String)","url":"setMerchant(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setMerchantEin(String)","url":"setMerchantEin(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setMerchantName(String)","url":"setMerchantName(java.lang.String)"},{"p":"com.bitpay.sdk.model","c":"Policy","l":"setMethod(String)","url":"setMethod(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setMinerFees(MinerFees)","url":"setMinerFees(com.bitpay.sdk.model.Invoice.MinerFees)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setName(String)","url":"setName(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"setName(String)","url":"setName(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceBuyerProvidedInfo","l":"setName(String)","url":"setName(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Shopper","l":"setName(String)","url":"setName(java.lang.String)"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"setName(String)","url":"setName(java.lang.String)"},{"p":"com.bitpay.sdk.model.Rate","c":"Rate","l":"setName(String)","url":"setName(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setName(String)","url":"setName(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"WithHoldings","l":"setNotes(String)","url":"setNotes(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setNotificationEmail(String)","url":"setNotificationEmail(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setNotificationEmail(String)","url":"setNotificationEmail(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setNotificationURL(String)","url":"setNotificationURL(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"setNotify(boolean)"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"setNotify(boolean)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setNumber(String)","url":"setNumber(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"setOpeningBalance(Float)","url":"setOpeningBalance(java.lang.Float)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"setOpeningDate(Long)","url":"setOpeningDate(java.lang.Long)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setOrderId(String)","url":"setOrderId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"InvoiceData","l":"setOrderId(String)","url":"setOrderId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"InvoiceData","l":"setOverPaidAmount(Float)","url":"setOverPaidAmount(java.lang.Float)"},{"p":"com.bitpay.sdk.model.Wallet","c":"Currencies","l":"setP2p(Boolean)","url":"setP2p(java.lang.Boolean)"},{"p":"com.bitpay.sdk.model","c":"Token","l":"setPairingCode(String)","url":"setPairingCode(java.lang.String)"},{"p":"com.bitpay.sdk.model","c":"Token","l":"setPairingExpiration(long)"},{"p":"com.bitpay.sdk.model","c":"Policy","l":"setParams(List)","url":"setParams(java.util.List)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setPassProcessingFee(boolean)"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFees","l":"setPax(MinerFeesItem)","url":"setPax(com.bitpay.sdk.model.Invoice.MinerFeesItem)"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrencies","l":"setPax(SupportedTransactionCurrency)","url":"setPax(com.bitpay.sdk.model.Invoice.SupportedTransactionCurrency)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setPaymentCurrencies(List)","url":"setPaymentCurrencies(java.util.List)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"setPaymentUrls(RefundParams)","url":"setPaymentUrls(com.bitpay.sdk.model.Invoice.RefundParams)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"setPayoutInfo(PayoutInfo)","url":"setPayoutInfo(com.bitpay.sdk.model.Settlement.PayoutInfo)"},{"p":"com.bitpay.sdk.model.Settlement","c":"InvoiceData","l":"setPayoutPercentage(Map)","url":"setPayoutPercentage(java.util.Map)"},{"p":"com.bitpay.sdk.model.Wallet","c":"Currencies","l":"setPayPro(Boolean)","url":"setPayPro(java.lang.Boolean)"},{"p":"com.bitpay.sdk.model.Wallet","c":"Wallet","l":"setPayPro(Boolean)","url":"setPayPro(java.lang.Boolean)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setPercentFee(Double)","url":"setPercentFee(java.lang.Double)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setPhone(String)","url":"setPhone(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"setPhone(String)","url":"setPhone(java.lang.String)"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"setPhone(String)","url":"setPhone(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceBuyerProvidedInfo","l":"setPhoneNumber(String)","url":"setPhoneNumber(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setPhysical(boolean)"},{"p":"com.bitpay.sdk.model","c":"Token","l":"setPolicies(List)","url":"setPolicies(java.util.List)"},{"p":"com.bitpay.sdk.model","c":"Policy","l":"setPolicy(String)","url":"setPolicy(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setPosData(String)","url":"setPosData(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setPostal(String)","url":"setPostal(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"setPostalCode(String)","url":"setPostalCode(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"setPreview(Boolean)","url":"setPreview(java.lang.Boolean)"},{"p":"com.bitpay.sdk.model.Bill","c":"Item","l":"setPrice(Double)","url":"setPrice(java.lang.Double)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setPrice(Double)","url":"setPrice(java.lang.Double)"},{"p":"com.bitpay.sdk.model.Settlement","c":"InvoiceData","l":"setPrice(Float)","url":"setPrice(java.lang.Float)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setPricingMethod(String)","url":"setPricingMethod(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundParams","l":"setPurchaserNotifyEmail(String)","url":"setPurchaserNotifyEmail(java.lang.String)"},{"p":"com.bitpay.sdk.model.Wallet","c":"Currencies","l":"setQr(CurrencyQr)","url":"setQr(com.bitpay.sdk.model.Wallet.CurrencyQr)"},{"p":"com.bitpay.sdk.model.Bill","c":"Item","l":"setQuantity(Integer)","url":"setQuantity(java.lang.Integer)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setRate(Double)","url":"setRate(java.lang.Double)"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrency","l":"setReason(String)","url":"setReason(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceTransaction","l":"setReceivedTime(Date)","url":"setReceivedTime(java.util.Date)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"setRecipientId(String)","url":"setRecipientId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setRedirectURL(String)","url":"setRedirectURL(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setRedirectURL(String)","url":"setRedirectURL(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setReference(String)","url":"setReference(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipient","l":"setReference(String)","url":"setReference(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"SettlementLedgerEntry","l":"setReference(String)","url":"setReference(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundParams","l":"setRefundAddress(String)","url":"setRefundAddress(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setRefundAddresses(ArrayList)","url":"setRefundAddresses(java.util.ArrayList)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setRefundAddressRequestPending(boolean)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"setRefundEmail(String)","url":"setRefundEmail(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"setRefundFee(Double)","url":"setRefundFee(java.lang.Double)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setRefundInfo(ArrayList)","url":"setRefundInfo(java.util.ArrayList)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"setRegion(String)","url":"setRegion(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"setRequestDate(Date)","url":"setRequestDate(java.util.Date)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setRequestDate(long)"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundParams","l":"setRequesterEmail(String)","url":"setRequesterEmail(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundParams","l":"setRequesterType(String)","url":"setRequesterType(java.lang.String)"},{"p":"com.bitpay.sdk.model","c":"Token","l":"setResource(String)","url":"setResource(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setRouting(String)","url":"setRouting(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFeesItem","l":"setSatoshisPerByte(BigDecimal)","url":"setSatoshisPerByte(java.math.BigDecimal)"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"setScale(String)","url":"setScale(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setSelectedTransactionCurrency(String)","url":"setSelectedTransactionCurrency(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceBuyerProvidedInfo","l":"setSelectedTransactionCurrency(String)","url":"setSelectedTransactionCurrency(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceBuyerProvidedInfo","l":"setSelectedWallet(String)","url":"setSelectedWallet(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setShopper(Shopper)","url":"setShopper(com.bitpay.sdk.model.Invoice.Shopper)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"setShopperId(String)","url":"setShopperId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceBuyerProvidedInfo","l":"setSms(String)","url":"setSms(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceBuyerProvidedInfo","l":"setSmsVerified(Boolean)","url":"setSmsVerified(java.lang.Boolean)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setSort(String)","url":"setSort(java.lang.String)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setState(String)","url":"setState(java.lang.String)"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"setState(String)","url":"setState(java.lang.String)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setStatus(String)","url":"setStatus(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setStatus(String)","url":"setStatus(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"setStatus(String)","url":"setStatus(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setStatus(String)","url":"setStatus(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"setStatus(String)","url":"setStatus(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipient","l":"setStatus(String)","url":"setStatus(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"setStatus(String)","url":"setStatus(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setSupportedTransactionCurrencies(SupportedTransactionCurrencies)","url":"setSupportedTransactionCurrencies(com.bitpay.sdk.model.Invoice.SupportedTransactionCurrencies)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setSupportPhone(String)","url":"setSupportPhone(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipient","l":"setSupportPhone(String)","url":"setSupportPhone(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundInfo","l":"setSupportRequest(String)","url":"setSupportRequest(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"RefundInfo","l":"setSupportRequest(String)","url":"setSupportRequest(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundParams","l":"setSupportRequestEid(String)","url":"setSupportRequestEid(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setSwift(String)","url":"setSwift(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setTargetConfirmations(long)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceTransaction","l":"setTime(Date)","url":"setTime(java.util.Date)"},{"p":"com.bitpay.sdk.model.Settlement","c":"SettlementLedgerEntry","l":"setTimestamp(Long)","url":"setTimestamp(java.lang.Long)"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"setTimestamp(String)","url":"setTimestamp(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"Settlement()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.exceptions","c":"SettlementException","l":"SettlementException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"SettlementLedgerEntry","l":"SettlementLedgerEntry()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.exceptions","c":"SettlementQueryException","l":"SettlementQueryException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setToken(String)","url":"setToken(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setToken(String)","url":"setToken(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"setToken(String)","url":"setToken(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setToken(String)","url":"setToken(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipient","l":"setToken(String)","url":"setToken(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipients","l":"setToken(String)","url":"setToken(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"setToken(String)","url":"setToken(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"setTotalAmount(Float)","url":"setTotalAmount(java.lang.Float)"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFeesItem","l":"setTotalFee(BigDecimal)","url":"setTotalFee(java.math.BigDecimal)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setTransactionCurrency(String)","url":"setTransactionCurrency(java.lang.String)"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"setTransactionCurrency(String)","url":"setTransactionCurrency(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"InvoiceData","l":"setTransactionCurrency(String)","url":"setTransactionCurrency(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setTransactionDetails(InvoiceTransactionDetails)","url":"setTransactionDetails(com.bitpay.sdk.model.Invoice.InvoiceTransactionDetails)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceTransaction","l":"setTransactionId(String)","url":"setTransactionId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setTransactions(List)","url":"setTransactions(java.util.List)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"setTransactions(List)","url":"setTransactions(java.util.List)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setTransactionSpeed(String)","url":"setTransactionSpeed(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstructionTransaction","l":"setTxid(String)","url":"setTxid(java.lang.String)"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"setTxType(String)","url":"setTxType(java.lang.String)"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"setType(String)","url":"setType(java.lang.String)"},{"p":"com.bitpay.sdk.model.Wallet","c":"CurrencyQr","l":"setType(String)","url":"setType(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setUniversalCodes(InvoiceUniversalCodes)","url":"setUniversalCodes(com.bitpay.sdk.model.Invoice.InvoiceUniversalCodes)"},{"p":"test","c":"BitPayTestMerchant","l":"setUp()"},{"p":"test","c":"BitPayTestPayouts","l":"setUp()"},{"p":"test","c":"BitPayTestPayouts","l":"setUpOneTime()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setUrl(String)","url":"setUrl(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setUrl(String)","url":"setUrl(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFees","l":"setUsdc(MinerFeesItem)","url":"setUsdc(com.bitpay.sdk.model.Invoice.MinerFeesItem)"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrencies","l":"setUsdc(SupportedTransactionCurrency)","url":"setUsdc(com.bitpay.sdk.model.Invoice.SupportedTransactionCurrency)"},{"p":"com.bitpay.sdk.model.Rate","c":"Rate","l":"setValue(Double)","url":"setValue(java.lang.Double)"},{"p":"com.bitpay.sdk.model","c":"Token","l":"setValue(String)","url":"setValue(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"setWalletProvider(String)","url":"setWalletProvider(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setWire(String)","url":"setWire(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"setWithHoldings(List)","url":"setWithHoldings(java.util.List)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"setWithHoldingsSum(Float)","url":"setWithHoldingsSum(java.lang.Float)"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFees","l":"setXrp(MinerFeesItem)","url":"setXrp(com.bitpay.sdk.model.Invoice.MinerFeesItem)"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrencies","l":"setXrp(SupportedTransactionCurrency)","url":"setXrp(com.bitpay.sdk.model.Invoice.SupportedTransactionCurrency)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setZip(String)","url":"setZip(java.lang.String)"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"setZip(String)","url":"setZip(java.lang.String)"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"SGD"},{"p":"com.bitpay.sdk.model.Payout","c":"RecipientReferenceMethod","l":"SHOPPER_ID"},{"p":"com.bitpay.sdk.model.Invoice","c":"Shopper","l":"Shopper()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"SHP"},{"p":"com.bitpay.sdk.util","c":"KeyUtils","l":"sign(ECKey, String)","url":"sign(org.bitcoinj.core.ECKey,java.lang.String)"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"SLL"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"SOS"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"SRD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"SSP"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"STN"},{"p":"com.bitpay.sdk","c":"Client","l":"submitPayoutBatch(PayoutBatch)","url":"submitPayoutBatch(com.bitpay.sdk.model.Payout.PayoutBatch)"},{"p":"com.bitpay.sdk","c":"Client","l":"submitPayoutRecipients(PayoutRecipients)","url":"submitPayoutRecipients(com.bitpay.sdk.model.Payout.PayoutRecipients)"},{"p":"com.bitpay.sdk.exceptions","c":"SubscriptionCreationException","l":"SubscriptionCreationException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.exceptions","c":"SubscriptionException","l":"SubscriptionException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.exceptions","c":"SubscriptionQueryException","l":"SubscriptionQueryException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.exceptions","c":"SubscriptionUpdateException","l":"SubscriptionUpdateException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundStatus","l":"Success"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrencies","l":"SupportedTransactionCurrencies()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrency","l":"SupportedTransactionCurrency()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"SVC"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"SYP"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"SZL"},{"p":"com.bitpay.sdk","c":"Env","l":"Test"},{"p":"test","c":"BitPayTestMerchant","l":"testCreateECKeyFromSeedString()"},{"p":"test","c":"BitPayTestMerchant","l":"TestGetSettlement()"},{"p":"test","c":"BitPayTestMerchant","l":"TestGetSettlementReconciliationReport()"},{"p":"test","c":"BitPayTestMerchant","l":"TestGetSettlements()"},{"p":"test","c":"BitPayTestMerchant","l":"TestShouldCancelRefund()"},{"p":"test","c":"BitPayTestMerchant","l":"TestShouldCreateBillEUR()"},{"p":"test","c":"BitPayTestMerchant","l":"TestShouldCreateBillUSD()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldCreateGetCancelRefundRequest()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldCreateGetCancelRefundRequestNEW()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldCreateInvoice100EUR()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldCreateInvoice100USD()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldCreateInvoiceBCH()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldCreateInvoiceBTC()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldCreateInvoiceETH()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldCreateInvoiceOneTenthBTC()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldCreateInvoiceWithAdditionalParams()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldCreateUpdateAndDeleteInvoice()"},{"p":"test","c":"BitPayTestMerchant","l":"TestShouldDeliverBill()"},{"p":"test","c":"BitPayTestMerchant","l":"TestShouldGetAndUpdateBill()"},{"p":"test","c":"BitPayTestMerchant","l":"TestShouldGetBill()"},{"p":"test","c":"BitPayTestMerchant","l":"TestShouldGetBills()"},{"p":"test","c":"BitPayTestMerchant","l":"TestShouldGetBillsByStatus()"},{"p":"test","c":"BitPayTestMerchant","l":"TestShouldGetBillStatus()"},{"p":"test","c":"BitPayTestMerchant","l":"TestShouldGetBillUrl()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldGetCNYExchangeRate()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldGetEURExchangeRate()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldGetExchangeRates()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldGetInvoice()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldGetInvoiceId()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldGetInvoices()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldGetInvoiceStatus()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldGetInvoiceURL()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldGetLedgerBtc()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldGetLedgers()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldGetLedgerUsd()"},{"p":"test","c":"BitPayTestPayouts","l":"testShouldGetPayoutBatches()"},{"p":"test","c":"BitPayTestPayouts","l":"testShouldGetPayoutBatchesByStatus()"},{"p":"test","c":"BitPayTestPayouts","l":"testShouldGetPayoutRecipientId()"},{"p":"test","c":"BitPayTestPayouts","l":"testShouldGetPayoutRecipients()"},{"p":"test","c":"BitPayTestMerchant","l":"TestShouldGetRefund()"},{"p":"test","c":"BitPayTestMerchant","l":"TestShouldGetRefunds()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldGetSupportedWallets()"},{"p":"test","c":"BitPayTestMerchant","l":"TestShouldNotifyRefund()"},{"p":"test","c":"BitPayTestPayouts","l":"testShouldSubmitGetAndDeletePayoutBatch()"},{"p":"test","c":"BitPayTestPayouts","l":"testShouldSubmitPayoutRecipients()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldUpdateExchangeRates()"},{"p":"test","c":"BitPayTestMerchant","l":"TestShouldUpdateRefund()"},{"p":"com.bitpay.sdk","c":"Env","l":"TestUrl"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"THB"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"TJS"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"TMT"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"TND"},{"p":"com.bitpay.sdk.model","c":"Token","l":"Token()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk","c":"Client","l":"tokenExist(String)","url":"tokenExist(java.lang.String)"},{"p":"com.bitpay.sdk","c":"Env.Tokens","l":"Tokens()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"TOP"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"TRY"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"TTD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"TWD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"TZS"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"UAH"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"UGX"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutStatus","l":"Unpaid"},{"p":"com.bitpay.sdk.model.Payout","c":"RecipientStatus","l":"UNVERIFIED"},{"p":"com.bitpay.sdk.model.Rate","c":"Rates","l":"update()"},{"p":"com.bitpay.sdk","c":"Client","l":"update(String, String)","url":"update(java.lang.String,java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"updateBill(Bill, String)","url":"updateBill(com.bitpay.sdk.model.Bill.Bill,java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"updateInvoice(String, String, String)","url":"updateInvoice(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"updateRefund(String, String)","url":"updateRefund(java.lang.String,java.lang.String)"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"USD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"USDC"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"USN"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"UYI"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"UYU"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"UZS"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"VEF"},{"p":"com.bitpay.sdk.model.Payout","c":"RecipientStatus","l":"VERIFIED"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"VND"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"VUV"},{"p":"com.bitpay.sdk.model.Wallet","c":"Wallet","l":"Wallet()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.exceptions","c":"WalletException","l":"WalletException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.exceptions","c":"WalletQueryException","l":"WalletQueryException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.util","c":"BitPayLogger","l":"WARN"},{"p":"com.bitpay.sdk.util","c":"BitPayLogger","l":"warn(String)","url":"warn(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"WithHoldings","l":"WithHoldings()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"WST"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"XAF"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"XCD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"XDR"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"XOF"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"XPF"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"XRP"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"XSU"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"XUA"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"YER"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"ZAR"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"ZMW"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"ZWL"}] \ No newline at end of file +memberSearchIndex = [{"p":"com.bitpay.sdk","c":"Client","l":"_currenciesInfo"},{"p":"com.bitpay.sdk.model.Payout","c":"RecipientStatus","l":"ACTIVE"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"AED"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"AFN"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"ALL"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"AMD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"ANG"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"AOA"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"ARS"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"AUD"},{"p":"com.bitpay.sdk","c":"Client","l":"authorizeClient(String)","url":"authorizeClient(java.lang.String)"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"AWG"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"AZN"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"BAM"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"BBD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"BCH"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"BDT"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"BGN"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"BHD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"BIF"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"Bill()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"Bill(String, String, String, List)","url":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.util.List)"},{"p":"com.bitpay.sdk.exceptions","c":"BillCreationException","l":"BillCreationException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.exceptions","c":"BillDeliveryException","l":"BillDeliveryException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.exceptions","c":"BillException","l":"BillException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.exceptions","c":"BillQueryException","l":"BillQueryException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.model.Bill","c":"BillStatus","l":"BillStatus()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.exceptions","c":"BillUpdateException","l":"BillUpdateException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk","c":"Env","l":"BitpayApiFrame"},{"p":"com.bitpay.sdk","c":"Env","l":"BitpayApiFrameVersion"},{"p":"com.bitpay.sdk","c":"Env","l":"BitpayApiVersion"},{"p":"com.bitpay.sdk","c":"BitPayException","l":"BitPayException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.exceptions","c":"BitPayException","l":"BitPayException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.util","c":"BitPayLogger","l":"BitPayLogger(int)","url":"%3Cinit%3E(int)"},{"p":"com.bitpay.sdk","c":"Env","l":"BitpayPluginInfo"},{"p":"test","c":"BitPayTestMerchant","l":"BitPayTestMerchant()","url":"%3Cinit%3E()"},{"p":"test","c":"BitPayTestPayouts","l":"BitPayTestPayouts()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"BMD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"BND"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"BOB"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"BOV"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"BRL"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"BSD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"BTC"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"BTN"},{"p":"com.bitpay.sdk","c":"Client","l":"BuildConfig(String, Env.Tokens)","url":"BuildConfig(java.lang.String,com.bitpay.sdk.Env.Tokens)"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"BUSD"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"Buyer()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"Buyer()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"BWP"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"BYR"},{"p":"com.bitpay.sdk.util","c":"KeyUtils","l":"bytesToHex(byte[])"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"BZD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"CAD"},{"p":"com.bitpay.sdk","c":"Client","l":"cancelInvoice(String)","url":"cancelInvoice(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundStatus","l":"Cancelled"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutStatus","l":"Cancelled"},{"p":"com.bitpay.sdk","c":"Client","l":"cancelPayoutBatch(String)","url":"cancelPayoutBatch(java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"cancelRefund(Invoice, String)","url":"cancelRefund(com.bitpay.sdk.model.Invoice.Invoice,java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"cancelRefund(String)","url":"cancelRefund(java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"cancelRefund(String, Refund)","url":"cancelRefund(java.lang.String,com.bitpay.sdk.model.Invoice.Refund)"},{"p":"com.bitpay.sdk","c":"Client","l":"cancelRefund(String, String)","url":"cancelRefund(java.lang.String,java.lang.String)"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"CDF"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"CHE"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"CHF"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"CHW"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"CLF"},{"p":"com.bitpay.sdk","c":"Client","l":"Client(String, HttpHost)","url":"%3Cinit%3E(java.lang.String,org.apache.http.HttpHost)"},{"p":"com.bitpay.sdk","c":"Client","l":"Client(String, String, Env.Tokens, HttpHost)","url":"%3Cinit%3E(java.lang.String,java.lang.String,com.bitpay.sdk.Env.Tokens,org.apache.http.HttpHost)"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"CLP"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"CNY"},{"p":"com.bitpay.sdk.model.Bill","c":"BillStatus","l":"Complete"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceStatus","l":"Complete"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutStatus","l":"Complete"},{"p":"com.bitpay.sdk","c":"Config","l":"Config()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceStatus","l":"Confirmed"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"COP"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"COU"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"CRC"},{"p":"com.bitpay.sdk","c":"Client","l":"createBill(Bill)","url":"createBill(com.bitpay.sdk.model.Bill.Bill)"},{"p":"com.bitpay.sdk","c":"Client","l":"createBill(Bill, String, boolean)","url":"createBill(com.bitpay.sdk.model.Bill.Bill,java.lang.String,boolean)"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundStatus","l":"Created"},{"p":"com.bitpay.sdk.util","c":"KeyUtils","l":"createEcKey()"},{"p":"com.bitpay.sdk.util","c":"KeyUtils","l":"createEcKeyFromHexString(String)","url":"createEcKeyFromHexString(java.lang.String)"},{"p":"com.bitpay.sdk.util","c":"KeyUtils","l":"createEcKeyFromHexStringFile(String)","url":"createEcKeyFromHexStringFile(java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"createInvoice(Invoice)","url":"createInvoice(com.bitpay.sdk.model.Invoice.Invoice)"},{"p":"com.bitpay.sdk","c":"Client","l":"createInvoice(Invoice, String, Boolean)","url":"createInvoice(com.bitpay.sdk.model.Invoice.Invoice,java.lang.String,java.lang.Boolean)"},{"p":"com.bitpay.sdk","c":"Client","l":"createRefund(Invoice, String, Double, String)","url":"createRefund(com.bitpay.sdk.model.Invoice.Invoice,java.lang.String,java.lang.Double,java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"createRefund(String, Double, String, Boolean, Boolean, Boolean)","url":"createRefund(java.lang.String,java.lang.Double,java.lang.String,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean)"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"CUC"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"CUP"},{"p":"com.bitpay.sdk.model.Wallet","c":"Currencies","l":"Currencies()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"Currency()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.exceptions","c":"CurrencyException","l":"CurrencyException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.model.Wallet","c":"CurrencyQr","l":"CurrencyQr()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.exceptions","c":"CurrencyQueryException","l":"CurrencyQueryException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"CVE"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"CZK"},{"p":"com.bitpay.sdk.util","c":"DateDeserializer","l":"DateDeserializer()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.util","c":"DateSerializer","l":"DateSerializer()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.util","c":"BitPayLogger","l":"DEBUG"},{"p":"com.bitpay.sdk.util","c":"BitPayLogger","l":"debug(String)","url":"debug(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceStatus","l":"Declined"},{"p":"com.bitpay.sdk","c":"Client","l":"deliverBill(String, String)","url":"deliverBill(java.lang.String,java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"deliverBill(String, String, boolean)","url":"deliverBill(java.lang.String,java.lang.String,boolean)"},{"p":"com.bitpay.sdk.util","c":"KeyUtils","l":"deriveSIN(ECKey)","url":"deriveSIN(org.bitcoinj.core.ECKey)"},{"p":"com.bitpay.sdk.util","c":"DateDeserializer","l":"deserialize(JsonParser, DeserializationContext)","url":"deserialize(com.fasterxml.jackson.core.JsonParser,com.fasterxml.jackson.databind.DeserializationContext)"},{"p":"com.bitpay.sdk.util","c":"PayoutInstructionBtcSummaryDeserializer","l":"deserialize(JsonParser, DeserializationContext)","url":"deserialize(com.fasterxml.jackson.core.JsonParser,com.fasterxml.jackson.databind.DeserializationContext)"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"DJF"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"DKK"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"DOGE"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"DOP"},{"p":"com.bitpay.sdk.model.Bill","c":"BillStatus","l":"Draft"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"DZD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"EGP"},{"p":"com.bitpay.sdk.model.Payout","c":"RecipientReferenceMethod","l":"EMAIL"},{"p":"com.bitpay.sdk","c":"Env","l":"Env()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"ERN"},{"p":"com.bitpay.sdk.util","c":"BitPayLogger","l":"ERR"},{"p":"com.bitpay.sdk.util","c":"BitPayLogger","l":"err(String)","url":"err(java.lang.String)"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"ETB"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"ETH"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"EUR"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceStatus","l":"Expired"},{"p":"com.bitpay.sdk.model","c":"Facade","l":"Facade()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutStatus","l":"Failed"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundStatus","l":"Failure"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"FJD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"FKP"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutStatus","l":"Funded"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"GBP"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"GEL"},{"p":"com.bitpay.sdk","c":"Client","l":"get(String)","url":"get(java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"get(String, List)","url":"get(java.lang.String,java.util.List)"},{"p":"com.bitpay.sdk","c":"Client","l":"get(String, List, boolean)","url":"get(java.lang.String,java.util.List,boolean)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getAcceptanceWindow()"},{"p":"com.bitpay.sdk","c":"Client","l":"getAccessToken(String)","url":"getAccessToken(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getAccount()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipient","l":"getAccount()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getAccount()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getAccountHolderAddress()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getAccountHolderAddress2()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getAccountHolderCity()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getAccountHolderCountry()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getAccountHolderName()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getAccountHolderPostalCode()"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"getAccountId()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getAdditionalInformation()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getAddress()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getAddress1()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"getAddress1()"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"getAddress1()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getAddress2()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"getAddress2()"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"getAddress2()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceItemizedDetails","l":"getAmount()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceTransaction","l":"getAmount()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceTransactionDetails","l":"getAmount()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"getAmount()"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundParams","l":"getAmount()"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"getAmount()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getAmount()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"getAmount()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstructionTransaction","l":"getAmount()"},{"p":"com.bitpay.sdk.model.Settlement","c":"InvoiceData","l":"getAmount()"},{"p":"com.bitpay.sdk.model.Settlement","c":"RefundInfo","l":"getAmount()"},{"p":"com.bitpay.sdk.model.Settlement","c":"SettlementLedgerEntry","l":"getAmount()"},{"p":"com.bitpay.sdk.model.Settlement","c":"WithHoldings","l":"getAmount()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getAmountPaid()"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundInfo","l":"getAmounts()"},{"p":"com.bitpay.sdk.model.Wallet","c":"Wallet","l":"getAvatar()"},{"p":"com.bitpay.sdk.model.Ledger","c":"Ledger","l":"getBalance()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getBank()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getBankAddress()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getBankCountry()"},{"p":"com.bitpay.sdk.model.Settlement","c":"WithHoldings","l":"getBankCountry()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getBankName()"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFees","l":"getBch()"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrencies","l":"getBch()"},{"p":"com.bitpay.sdk","c":"Client","l":"getBill(String)","url":"getBill(java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"getBill(String, String, boolean)","url":"getBill(java.lang.String,java.lang.String,boolean)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getBillId()"},{"p":"com.bitpay.sdk","c":"Client","l":"getBills()"},{"p":"com.bitpay.sdk","c":"Client","l":"getBills(String)","url":"getBills(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceUniversalCodes","l":"getBitpay()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getBitpayIdRequired()"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFees","l":"getBtc()"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrencies","l":"getBtc()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getBtc()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"getBtc()"},{"p":"com.bitpay.sdk.model.Settlement","c":"InvoiceData","l":"getBtcPrice()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getBuyer()"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"getBuyer()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"getBuyerPaysRefundFee()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getBuyerProvidedEmail()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getCc()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getCity()"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"getCity()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getCity()"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"getClosingDate()"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"getCode()"},{"p":"com.bitpay.sdk.model.Rate","c":"Rate","l":"getCode()"},{"p":"com.bitpay.sdk.model.Settlement","c":"SettlementLedgerEntry","l":"getCode()"},{"p":"com.bitpay.sdk.model.Settlement","c":"WithHoldings","l":"getCode()"},{"p":"com.bitpay.sdk.model.Wallet","c":"Currencies","l":"getCode()"},{"p":"com.bitpay.sdk.model.Wallet","c":"CurrencyQr","l":"getCollapsed()"},{"p":"com.bitpay.sdk","c":"Client","l":"GetConfig()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceTransaction","l":"getConfirmations()"},{"p":"com.bitpay.sdk.model","c":"Token","l":"getCount()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getCountry()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"getCountry()"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"getCountry()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getCreateDate()"},{"p":"com.bitpay.sdk.model.Wallet","c":"Wallet","l":"getCurrencies()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getCurrency()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getCurrency()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"getCurrency()"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundInfo","l":"getCurrency()"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundParams","l":"getCurrency()"},{"p":"com.bitpay.sdk.model.Ledger","c":"Ledger","l":"getCurrency()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getCurrency()"},{"p":"com.bitpay.sdk.model.Settlement","c":"InvoiceData","l":"getCurrency()"},{"p":"com.bitpay.sdk.model.Settlement","c":"RefundInfo","l":"getCurrency()"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"getCurrency()"},{"p":"com.bitpay.sdk","c":"Client","l":"getCurrencyInfo(String)","url":"getCurrencyInfo(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getCurrentTime()"},{"p":"com.bitpay.sdk.model.Wallet","c":"Currencies","l":"getDappBrowser()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstructionTransaction","l":"getDate()"},{"p":"com.bitpay.sdk.model.Settlement","c":"InvoiceData","l":"getDate()"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"getDateCompleted()"},{"p":"com.bitpay.sdk.model","c":"Token","l":"getDateCreated()"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"getDateCreated()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getDateExecuted()"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"getDateExecuted()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getDepositTotal()"},{"p":"com.bitpay.sdk.model.Bill","c":"Item","l":"getDescription()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceItemizedDetails","l":"getDescription()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceTransactionDetails","l":"getDescription()"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"getDescription()"},{"p":"com.bitpay.sdk.model.Settlement","c":"SettlementLedgerEntry","l":"getDescription()"},{"p":"com.bitpay.sdk.model.Settlement","c":"WithHoldings","l":"getDescription()"},{"p":"com.bitpay.sdk.model.Wallet","c":"Wallet","l":"getDisplayName()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getDueDate()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getEffectiveDate()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getEmail()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"getEmail()"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundParams","l":"getEmail()"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"getEmail()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"getEmail()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceBuyerProvidedInfo","l":"getEmailAddress()"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrency","l":"getEnabled()"},{"p":"com.bitpay.sdk.model.Ledger","c":"Ledger","l":"getEntries()"},{"p":"com.bitpay.sdk","c":"Config","l":"getEnvConfig(String)","url":"getEnvConfig(java.lang.String)"},{"p":"com.bitpay.sdk","c":"Config","l":"getEnvironment()"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFees","l":"getEth()"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrencies","l":"getEth()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getExceptionStatus()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getExchangeRates()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getExpirationTime()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getExtendedNotifications()"},{"p":"com.bitpay.sdk.model","c":"Token","l":"getFacade()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getFee()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getForcedBuyerSelectedWallet()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getFullNotifications()"},{"p":"com.bitpay.sdk.model","c":"Token","l":"getGuid()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getGuid()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"getGuid()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getGuid()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipient","l":"getGuid()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipients","l":"getGuid()"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFees","l":"getGusd()"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrencies","l":"getGusd()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getIban()"},{"p":"com.bitpay.sdk.model","c":"Token","l":"getId()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getId()"},{"p":"com.bitpay.sdk.model.Bill","c":"Item","l":"getId()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getId()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"getId()"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"getId()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getId()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"getId()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipient","l":"getId()"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"getId()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"getImmediate()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getInstructions()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipients","l":"getInstructions()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"getInvoice()"},{"p":"com.bitpay.sdk","c":"Client","l":"getInvoice(String)","url":"getInvoice(java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"getInvoice(String, String, Boolean)","url":"getInvoice(java.lang.String,java.lang.String,java.lang.Boolean)"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"getInvoiceAmount()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getInvoiceBuyerProvidedInfo()"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"getInvoiceCurrency()"},{"p":"com.bitpay.sdk.model.Settlement","c":"SettlementLedgerEntry","l":"getInvoiceData()"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"getInvoiceId()"},{"p":"com.bitpay.sdk.model.Settlement","c":"SettlementLedgerEntry","l":"getInvoiceId()"},{"p":"com.bitpay.sdk","c":"Client","l":"getInvoices(String, String, String, String, Integer, Integer)","url":"getInvoices(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.Integer,java.lang.Integer)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getInvoiceTime()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getIsCancelled()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceItemizedDetails","l":"getIsFee()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceTransactionDetails","l":"getIsFee()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getItemCode()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getItemDesc()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getItemizedDetails()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getItems()"},{"p":"com.bitpay.sdk.model.Wallet","c":"Wallet","l":"getKey()"},{"p":"com.bitpay.sdk.util","c":"KeyUtils","l":"getKeyStringFromFile(String)","url":"getKeyStringFromFile(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getlabel()"},{"p":"com.bitpay.sdk.model.Settlement","c":"WithHoldings","l":"getlabel()"},{"p":"com.bitpay.sdk.model","c":"Token","l":"getLabel()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"getLabel()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"getLastRefundNotification()"},{"p":"com.bitpay.sdk","c":"Client","l":"getLedger(String, String, String)","url":"getLedger(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"getLedgerEntries()"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"getLedgerEntriesSum()"},{"p":"com.bitpay.sdk","c":"Client","l":"getLedgers()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"getLocality()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getLowFeeDetected()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getMerchant()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getMerchantEin()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getMerchantName()"},{"p":"com.bitpay.sdk.model","c":"Policy","l":"getMethod()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getMinerFees()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getName()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"getName()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceBuyerProvidedInfo","l":"getName()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Shopper","l":"getName()"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"getName()"},{"p":"com.bitpay.sdk.model.Rate","c":"Rate","l":"getName()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getName()"},{"p":"com.bitpay.sdk.model.Settlement","c":"WithHoldings","l":"getNotes()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getNotificationEmail()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getNotificationEmail()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getNotificationURL()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getNotificationURL()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"getNotify()"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"getNotify()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getNumber()"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"getOpeningBalance()"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"getOpeningDate()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getOrderId()"},{"p":"com.bitpay.sdk.model.Settlement","c":"InvoiceData","l":"getOrderId()"},{"p":"com.bitpay.sdk.model.Settlement","c":"InvoiceData","l":"getOverPaidAmount()"},{"p":"com.bitpay.sdk.model.Wallet","c":"Currencies","l":"getP2p()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstructionBtcSummary","l":"getPaid()"},{"p":"com.bitpay.sdk.model","c":"Token","l":"getPairingCode()"},{"p":"com.bitpay.sdk.model","c":"Token","l":"getPairingExpiration()"},{"p":"com.bitpay.sdk.model","c":"Policy","l":"getParams()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"getParams()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getPassProcessingFee()"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFees","l":"getPax()"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrencies","l":"getPax()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getPaymentCurrencies()"},{"p":"com.bitpay.sdk","c":"Client","l":"getPayoutBatch(String)","url":"getPayoutBatch(java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"getPayoutBatches()"},{"p":"com.bitpay.sdk","c":"Client","l":"getPayoutBatches(String)","url":"getPayoutBatches(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"getPayoutInfo()"},{"p":"com.bitpay.sdk.model.Settlement","c":"InvoiceData","l":"getPayoutPercentage()"},{"p":"com.bitpay.sdk","c":"Client","l":"getPayoutRecipient(String)","url":"getPayoutRecipient(java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"getPayoutRecipients(String, Integer)","url":"getPayoutRecipients(java.lang.String,java.lang.Integer)"},{"p":"com.bitpay.sdk.model.Wallet","c":"Currencies","l":"getPayPro()"},{"p":"com.bitpay.sdk.model.Wallet","c":"Wallet","l":"getPayPro()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getPercentFee()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getPhone()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"getPhone()"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"getPhone()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceBuyerProvidedInfo","l":"getPhoneNumber()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getPhysical()"},{"p":"com.bitpay.sdk.model","c":"Token","l":"getPolicies()"},{"p":"com.bitpay.sdk.model","c":"Policy","l":"getPolicy()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getPosData()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getPostal()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"getPostalCode()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"getPreview()"},{"p":"com.bitpay.sdk.model.Bill","c":"Item","l":"getPrice()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getPrice()"},{"p":"com.bitpay.sdk.model.Settlement","c":"InvoiceData","l":"getPrice()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getPricingMethod()"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundParams","l":"getPurchaserNotifyEmail()"},{"p":"com.bitpay.sdk.model.Wallet","c":"Currencies","l":"getQr()"},{"p":"com.bitpay.sdk.model.Bill","c":"Item","l":"getQuantity()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getRate()"},{"p":"com.bitpay.sdk.model.Rate","c":"Rates","l":"getRate(String)","url":"getRate(java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"getRates()"},{"p":"com.bitpay.sdk.model.Rate","c":"Rates","l":"getRates()"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrency","l":"getReason()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceTransaction","l":"getReceivedTime()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"getRecipientId()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getRedirectURL()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getReference()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipient","l":"getReference()"},{"p":"com.bitpay.sdk.model.Settlement","c":"SettlementLedgerEntry","l":"getReference()"},{"p":"com.bitpay.sdk","c":"Client","l":"getRefund(Invoice, String)","url":"getRefund(com.bitpay.sdk.model.Invoice.Invoice,java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"getRefund(String)","url":"getRefund(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundParams","l":"getRefundAddress()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getRefundAddresses()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getRefundAddressRequestPending()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"getRefundEmail()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"getRefundFee()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getRefundInfo()"},{"p":"com.bitpay.sdk","c":"Client","l":"getRefunds(Invoice)","url":"getRefunds(com.bitpay.sdk.model.Invoice.Invoice)"},{"p":"com.bitpay.sdk","c":"Client","l":"getRefunds(String)","url":"getRefunds(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"getRegion()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"getRequestDate()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getRequestDate()"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundParams","l":"getRequesterEmail()"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundParams","l":"getRequesterType()"},{"p":"com.bitpay.sdk.model","c":"Token","l":"getResource()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getRouting()"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFeesItem","l":"getSatoshisPerByte()"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"getScale()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getSelectedTransactionCurrency()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceBuyerProvidedInfo","l":"getSelectedTransactionCurrency()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceBuyerProvidedInfo","l":"getSelectedWallet()"},{"p":"com.bitpay.sdk","c":"Client","l":"getSettlement(String)","url":"getSettlement(java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"getSettlementReconciliationReport(Settlement)","url":"getSettlementReconciliationReport(com.bitpay.sdk.model.Settlement.Settlement)"},{"p":"com.bitpay.sdk","c":"Client","l":"getSettlements(String, String, String, String, Integer, Integer)","url":"getSettlements(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.Integer,java.lang.Integer)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getShopper()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"getShopperId()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceBuyerProvidedInfo","l":"getSms()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceBuyerProvidedInfo","l":"getSmsVerified()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getSort()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getState()"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"getState()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getStatus()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getStatus()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"getStatus()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getStatus()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"getStatus()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipient","l":"getStatus()"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"getStatus()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getSupportedTransactionCurrencies()"},{"p":"com.bitpay.sdk","c":"Client","l":"getSupportedWallets()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getSupportPhone()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipient","l":"getSupportPhone()"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundInfo","l":"getSupportRequest()"},{"p":"com.bitpay.sdk.model.Settlement","c":"RefundInfo","l":"getSupportRequest()"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundParams","l":"getSupportRequestEid()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getSwift()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getTargetConfirmations()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceTransaction","l":"getTime()"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"getTimestamp()"},{"p":"com.bitpay.sdk.model.Settlement","c":"SettlementLedgerEntry","l":"getTimestamp()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getToken()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getToken()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"getToken()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getToken()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipient","l":"getToken()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipients","l":"getToken()"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"getToken()"},{"p":"com.bitpay.sdk","c":"Client","l":"GetTokenByFacade(String)","url":"GetTokenByFacade(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"getTotalAmount()"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFeesItem","l":"getTotalFee()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getTransactionCurrency()"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"getTransactionCurrency()"},{"p":"com.bitpay.sdk.model.Settlement","c":"InvoiceData","l":"getTransactionCurrency()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getTransactionDetails()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceTransaction","l":"getTransactionId()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getTransactions()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"getTransactions()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getTransactionSpeed()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstructionTransaction","l":"getTxid()"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"getTxType()"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"getType()"},{"p":"com.bitpay.sdk.model.Wallet","c":"CurrencyQr","l":"getType()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getUniversalCodes()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstructionBtcSummary","l":"getUnpaid()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getUrl()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getUrl()"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFees","l":"getUsdc()"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrencies","l":"getUsdc()"},{"p":"com.bitpay.sdk.model","c":"Token","l":"getValue()"},{"p":"com.bitpay.sdk.model.Rate","c":"Rate","l":"getValue()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"getWalletProvider()"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"getWire()"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"getWithHoldings()"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"getWithHoldingsSum()"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFees","l":"getXrp()"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrencies","l":"getXrp()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getZip()"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"getZip()"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"GHS"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"GIP"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"GMD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"GNF"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"GTQ"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"GUSD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"GYD"},{"p":"com.bitpay.sdk.util","c":"KeyUtils","l":"hexToBytes(String)","url":"hexToBytes(java.lang.String)"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"HKD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"HNL"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"HRK"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"HTG"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"HUF"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"IDR"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"ILS"},{"p":"com.bitpay.sdk.util","c":"BitPayLogger","l":"INFO"},{"p":"com.bitpay.sdk.util","c":"BitPayLogger","l":"info(String)","url":"info(java.lang.String)"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"INR"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceStatus","l":"Invalid"},{"p":"com.bitpay.sdk.model.Payout","c":"RecipientStatus","l":"INVITED"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"Invoice()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"Invoice(Double, String)","url":"%3Cinit%3E(java.lang.Double,java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceBuyerProvidedInfo","l":"InvoiceBuyerProvidedInfo()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.exceptions","c":"InvoiceCancellationException","l":"InvoiceCancellationException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.exceptions","c":"InvoiceCreationException","l":"InvoiceCreationException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"InvoiceData","l":"InvoiceData()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.exceptions","c":"InvoiceException","l":"InvoiceException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceItemizedDetails","l":"InvoiceItemizedDetails()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.exceptions","c":"InvoiceQueryException","l":"InvoiceQueryException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceStatus","l":"InvoiceStatus()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceTransaction","l":"InvoiceTransaction()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceTransactionDetails","l":"InvoiceTransactionDetails(Double, String, Boolean)","url":"%3Cinit%3E(java.lang.Double,java.lang.String,java.lang.Boolean)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceUniversalCodes","l":"InvoiceUniversalCodes()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.exceptions","c":"InvoiceUpdateException","l":"InvoiceUpdateException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"IQD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"IRR"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"ISK"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"isValid(String)","url":"isValid(java.lang.String)"},{"p":"com.bitpay.sdk.model.Bill","c":"Item","l":"Item()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"JMD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"JOD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"JPY"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"KES"},{"p":"com.bitpay.sdk.util","c":"KeyUtils","l":"KeyUtils()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"KGS"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"KHR"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"KMF"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"KPW"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"KRW"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"KWD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"KYD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"KZT"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"LAK"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"LBP"},{"p":"com.bitpay.sdk.model.Ledger","c":"Ledger","l":"Ledger()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"LedgerEntry()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.exceptions","c":"LedgerException","l":"LedgerException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.exceptions","c":"LedgerQueryException","l":"LedgerQueryException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"LKR"},{"p":"com.bitpay.sdk.util","c":"KeyUtils","l":"loadEcKey()"},{"p":"com.bitpay.sdk.util","c":"KeyUtils","l":"loadEcKey(URI)","url":"loadEcKey(java.net.URI)"},{"p":"com.bitpay.sdk.util","c":"KeyUtils","l":"loadEcKeyAsHex(ECKey)","url":"loadEcKeyAsHex(org.bitcoinj.core.ECKey)"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"LRD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"LSL"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"LTC"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"LYD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"MAD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"MDL"},{"p":"com.bitpay.sdk","c":"Env.Tokens","l":"merchant"},{"p":"com.bitpay.sdk.model","c":"Facade","l":"Merchant"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"MethodVwap24"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"MGA"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFees","l":"MinerFees()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFeesItem","l":"MinerFeesItem()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"MKD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"MMK"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"MNT"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"MOP"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"MRU"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"MUR"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"MVR"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"MWK"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"MXN"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"MXV"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"MYR"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"MZN"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"NAD"},{"p":"com.bitpay.sdk.model.Bill","c":"BillStatus","l":"New"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceStatus","l":"New"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutStatus","l":"New"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"NGN"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"NIO"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"NOK"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"NPR"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"NZD"},{"p":"com.bitpay.sdk.util","c":"BitPayLogger","l":"OFF"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"OMR"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"PAB"},{"p":"com.bitpay.sdk.model.Bill","c":"BillStatus","l":"Paid"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceStatus","l":"Paid"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutStatus","l":"Paid"},{"p":"com.bitpay.sdk.model.Payout","c":"RecipientStatus","l":"PAUSED"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"PAX"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"PayoutBatch()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"PayoutBatch(String, long, List)","url":"%3Cinit%3E(java.lang.String,long,java.util.List)"},{"p":"com.bitpay.sdk.exceptions","c":"PayoutCancellationException","l":"PayoutCancellationException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.exceptions","c":"PayoutCreationException","l":"PayoutCreationException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.exceptions","c":"PayoutException","l":"PayoutException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"PayoutInfo()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"PayoutInstruction()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"PayoutInstruction(Double, int, String)","url":"%3Cinit%3E(java.lang.Double,int,java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstructionBtcSummary","l":"PayoutInstructionBtcSummary(Double, Double)","url":"%3Cinit%3E(java.lang.Double,java.lang.Double)"},{"p":"com.bitpay.sdk.util","c":"PayoutInstructionBtcSummaryDeserializer","l":"PayoutInstructionBtcSummaryDeserializer()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstructionTransaction","l":"PayoutInstructionTransaction()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.exceptions","c":"PayoutQueryException","l":"PayoutQueryException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipient","l":"PayoutRecipient()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipient","l":"PayoutRecipient(String, String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipients","l":"PayoutRecipients(List)","url":"%3Cinit%3E(java.util.List)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutStatus","l":"PayoutStatus()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk","c":"Env.Tokens","l":"payroll"},{"p":"com.bitpay.sdk.model","c":"Facade","l":"Payroll"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"PEN"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundStatus","l":"Pending"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"PGK"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"PHP"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"PKR"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"PLN"},{"p":"com.bitpay.sdk.model","c":"Facade","l":"PointOfSale"},{"p":"com.bitpay.sdk.model","c":"Policy","l":"Policy()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk","c":"Env.Tokens","l":"pos"},{"p":"com.bitpay.sdk","c":"Client","l":"post(String, String)","url":"post(java.lang.String,java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"post(String, String, boolean)","url":"post(java.lang.String,java.lang.String,boolean)"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundStatus","l":"Preview"},{"p":"com.bitpay.sdk.util","c":"KeyUtils","l":"privateKeyExists(String)","url":"privateKeyExists(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutStatus","l":"Processing"},{"p":"com.bitpay.sdk","c":"Env","l":"Prod"},{"p":"com.bitpay.sdk","c":"Env","l":"ProdUrl"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"PYG"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"QAR"},{"p":"com.bitpay.sdk.model.Rate","c":"Rate","l":"Rate()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.exceptions","c":"RateException","l":"RateException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.exceptions","c":"RateQueryException","l":"RateQueryException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.model.Rate","c":"Rates","l":"Rates(List, Client)","url":"%3Cinit%3E(java.util.List,com.bitpay.sdk.Client)"},{"p":"com.bitpay.sdk.model.Payout","c":"RecipientReferenceMethod","l":"RECIPIENT_ID"},{"p":"com.bitpay.sdk.model.Payout","c":"RecipientReferenceMethod","l":"RecipientReferenceMethod()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Payout","c":"RecipientStatus","l":"RecipientStatus()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"Refund()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.exceptions","c":"RefundCancellationException","l":"RefundCancellationException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.exceptions","c":"RefundCreationException","l":"RefundCreationException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.exceptions","c":"RefundException","l":"RefundException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundInfo","l":"RefundInfo()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Settlement","c":"RefundInfo","l":"RefundInfo()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundParams","l":"RefundParams()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.exceptions","c":"RefundQueryException","l":"RefundQueryException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundStatus","l":"RefundStatus()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.exceptions","c":"RefundUpdateException","l":"RefundUpdateException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"RecipientStatus","l":"REMOVED"},{"p":"com.bitpay.sdk","c":"Client","l":"requestClientAuthorization(String)","url":"requestClientAuthorization(java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"responseToJsonString(HttpResponse)","url":"responseToJsonString(org.apache.http.HttpResponse)"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"RON"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"RSD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"RUB"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"RWF"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"SAR"},{"p":"com.bitpay.sdk.util","c":"KeyUtils","l":"saveEcKey(ECKey)","url":"saveEcKey(org.bitcoinj.core.ECKey)"},{"p":"com.bitpay.sdk.util","c":"KeyUtils","l":"saveEcKey(ECKey, URI)","url":"saveEcKey(org.bitcoinj.core.ECKey,java.net.URI)"},{"p":"com.bitpay.sdk.util","c":"KeyUtils","l":"saveEcKeyAsHex(ECKey)","url":"saveEcKeyAsHex(org.bitcoinj.core.ECKey)"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"SBD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"SCR"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"SDG"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"SEK"},{"p":"com.bitpay.sdk","c":"Client","l":"sendRefundNotification(String)","url":"sendRefundNotification(java.lang.String)"},{"p":"com.bitpay.sdk.model.Bill","c":"BillStatus","l":"Sent"},{"p":"com.bitpay.sdk.util","c":"DateSerializer","l":"serialize(Long, JsonGenerator, SerializerProvider)","url":"serialize(java.lang.Long,com.fasterxml.jackson.core.JsonGenerator,com.fasterxml.jackson.databind.SerializerProvider)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setAcceptanceWindow(long)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setAccount(String)","url":"setAccount(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipient","l":"setAccount(String)","url":"setAccount(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setAccount(String)","url":"setAccount(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setAccountHolderAddress(String)","url":"setAccountHolderAddress(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setAccountHolderAddress2(String)","url":"setAccountHolderAddress2(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setAccountHolderCity(String)","url":"setAccountHolderCity(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setAccountHolderCountry(String)","url":"setAccountHolderCountry(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setAccountHolderName(String)","url":"setAccountHolderName(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setAccountHolderPostalCode(String)","url":"setAccountHolderPostalCode(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"setAccountId(String)","url":"setAccountId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setAdditionalInformation(String)","url":"setAdditionalInformation(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setAddress(String)","url":"setAddress(java.lang.String)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setAddress1(String)","url":"setAddress1(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"setAddress1(String)","url":"setAddress1(java.lang.String)"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"setAddress1(String)","url":"setAddress1(java.lang.String)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setAddress2(String)","url":"setAddress2(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"setAddress2(String)","url":"setAddress2(java.lang.String)"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"setAddress2(String)","url":"setAddress2(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceTransaction","l":"setAmount(BigDecimal)","url":"setAmount(java.math.BigDecimal)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceItemizedDetails","l":"setAmount(double)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceTransactionDetails","l":"setAmount(Double)","url":"setAmount(java.lang.Double)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"setAmount(Double)","url":"setAmount(java.lang.Double)"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundParams","l":"setAmount(Double)","url":"setAmount(java.lang.Double)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setAmount(Double)","url":"setAmount(java.lang.Double)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"setAmount(Double)","url":"setAmount(java.lang.Double)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstructionTransaction","l":"setAmount(Double)","url":"setAmount(java.lang.Double)"},{"p":"com.bitpay.sdk.model.Settlement","c":"SettlementLedgerEntry","l":"setAmount(Float)","url":"setAmount(java.lang.Float)"},{"p":"com.bitpay.sdk.model.Settlement","c":"WithHoldings","l":"setAmount(Float)","url":"setAmount(java.lang.Float)"},{"p":"com.bitpay.sdk.model.Settlement","c":"RefundInfo","l":"setAmount(Hashtable)","url":"setAmount(java.util.Hashtable)"},{"p":"com.bitpay.sdk.model.Settlement","c":"InvoiceData","l":"setAmount(RefundInfo)","url":"setAmount(com.bitpay.sdk.model.Settlement.RefundInfo)"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"setAmount(String)","url":"setAmount(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setAmountPaid(BigDecimal)","url":"setAmountPaid(java.math.BigDecimal)"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundInfo","l":"setAmounts(Hashtable)","url":"setAmounts(java.util.Hashtable)"},{"p":"com.bitpay.sdk.model.Wallet","c":"Wallet","l":"setAvatar(String)","url":"setAvatar(java.lang.String)"},{"p":"com.bitpay.sdk.model.Ledger","c":"Ledger","l":"setBalance(Double)","url":"setBalance(java.lang.Double)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setBank(String)","url":"setBank(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setBankAddress(String)","url":"setBankAddress(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setBankCountry(String)","url":"setBankCountry(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"WithHoldings","l":"setBankCountry(String)","url":"setBankCountry(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setBankName(String)","url":"setBankName(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFees","l":"setBch(MinerFeesItem)","url":"setBch(com.bitpay.sdk.model.Invoice.MinerFeesItem)"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrencies","l":"setBch(SupportedTransactionCurrency)","url":"setBch(com.bitpay.sdk.model.Invoice.SupportedTransactionCurrency)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setBillId(String)","url":"setBillId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceUniversalCodes","l":"setBitpay(String)","url":"setBitpay(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setBitpayIdRequired(boolean)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setBtc(Double)","url":"setBtc(java.lang.Double)"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFees","l":"setBtc(MinerFeesItem)","url":"setBtc(com.bitpay.sdk.model.Invoice.MinerFeesItem)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"setBtc(PayoutInstructionBtcSummary)","url":"setBtc(com.bitpay.sdk.model.Payout.PayoutInstructionBtcSummary)"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrencies","l":"setBtc(SupportedTransactionCurrency)","url":"setBtc(com.bitpay.sdk.model.Invoice.SupportedTransactionCurrency)"},{"p":"com.bitpay.sdk.model.Settlement","c":"InvoiceData","l":"setBtcPrice(Float)","url":"setBtcPrice(java.lang.Float)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setBuyer(Buyer)","url":"setBuyer(com.bitpay.sdk.model.Invoice.Buyer)"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"setBuyer(Buyer)","url":"setBuyer(com.bitpay.sdk.model.Ledger.Buyer)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"setBuyerPaysRefundFee(Boolean)","url":"setBuyerPaysRefundFee(java.lang.Boolean)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setBuyerProvidedEmail(String)","url":"setBuyerProvidedEmail(java.lang.String)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setCc(List)","url":"setCc(java.util.List)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setCity(String)","url":"setCity(java.lang.String)"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"setCity(String)","url":"setCity(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setCity(String)","url":"setCity(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"setClosingDate(Long)","url":"setClosingDate(java.lang.Long)"},{"p":"com.bitpay.sdk.model.Settlement","c":"SettlementLedgerEntry","l":"setCode(Integer)","url":"setCode(java.lang.Integer)"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"setCode(String)","url":"setCode(java.lang.String)"},{"p":"com.bitpay.sdk.model.Rate","c":"Rate","l":"setCode(String)","url":"setCode(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"WithHoldings","l":"setCode(String)","url":"setCode(java.lang.String)"},{"p":"com.bitpay.sdk.model.Wallet","c":"Currencies","l":"setCode(String)","url":"setCode(java.lang.String)"},{"p":"com.bitpay.sdk.model.Wallet","c":"CurrencyQr","l":"setCollapsed(Boolean)","url":"setCollapsed(java.lang.Boolean)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceTransaction","l":"setConfirmations(int)"},{"p":"com.bitpay.sdk.model","c":"Token","l":"setCount(int)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setCountry(String)","url":"setCountry(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"setCountry(String)","url":"setCountry(java.lang.String)"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"setCountry(String)","url":"setCountry(java.lang.String)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setCreateDate(String)","url":"setCreateDate(java.lang.String)"},{"p":"com.bitpay.sdk.model.Wallet","c":"Wallet","l":"setCurrencies(ArrayList)","url":"setCurrencies(java.util.ArrayList)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setCurrency(String)","url":"setCurrency(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setCurrency(String)","url":"setCurrency(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"setCurrency(String)","url":"setCurrency(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundInfo","l":"setCurrency(String)","url":"setCurrency(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundParams","l":"setCurrency(String)","url":"setCurrency(java.lang.String)"},{"p":"com.bitpay.sdk.model.Ledger","c":"Ledger","l":"setCurrency(String)","url":"setCurrency(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setCurrency(String)","url":"setCurrency(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"InvoiceData","l":"setCurrency(String)","url":"setCurrency(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"RefundInfo","l":"setCurrency(String)","url":"setCurrency(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"setCurrency(String)","url":"setCurrency(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setCurrentTime(long)"},{"p":"com.bitpay.sdk.model.Wallet","c":"Currencies","l":"setDappBrowser(Boolean)","url":"setDappBrowser(java.lang.Boolean)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstructionTransaction","l":"setDate(Long)","url":"setDate(java.lang.Long)"},{"p":"com.bitpay.sdk.model.Settlement","c":"InvoiceData","l":"setDate(Long)","url":"setDate(java.lang.Long)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"setDateCompleted(Long)","url":"setDateCompleted(java.lang.Long)"},{"p":"com.bitpay.sdk.model","c":"Token","l":"setDateCreated(long)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"setDateCreated(Long)","url":"setDateCreated(java.lang.Long)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setDateExecuted(long)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"setDateExecuted(Long)","url":"setDateExecuted(java.lang.Long)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setDepositTotal(Double)","url":"setDepositTotal(java.lang.Double)"},{"p":"com.bitpay.sdk.model.Bill","c":"Item","l":"setDescription(String)","url":"setDescription(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceItemizedDetails","l":"setDescription(String)","url":"setDescription(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceTransactionDetails","l":"setDescription(String)","url":"setDescription(java.lang.String)"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"setDescription(String)","url":"setDescription(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"SettlementLedgerEntry","l":"setDescription(String)","url":"setDescription(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"WithHoldings","l":"setDescription(String)","url":"setDescription(java.lang.String)"},{"p":"com.bitpay.sdk.model.Wallet","c":"Wallet","l":"setDisplayName(String)","url":"setDisplayName(java.lang.String)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setDueDate(String)","url":"setDueDate(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setEffectiveDate(long)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setEmail(String)","url":"setEmail(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"setEmail(String)","url":"setEmail(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundParams","l":"setEmail(String)","url":"setEmail(java.lang.String)"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"setEmail(String)","url":"setEmail(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"setEmail(String)","url":"setEmail(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceBuyerProvidedInfo","l":"setEmailAddress(String)","url":"setEmailAddress(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrency","l":"setEnabled(boolean)"},{"p":"com.bitpay.sdk.model.Ledger","c":"Ledger","l":"setEntries(List)","url":"setEntries(java.util.List)"},{"p":"com.bitpay.sdk","c":"Config","l":"setEnvConfig(JsonNode)","url":"setEnvConfig(com.fasterxml.jackson.databind.JsonNode)"},{"p":"com.bitpay.sdk","c":"Config","l":"setEnvironment(String)","url":"setEnvironment(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFees","l":"setEth(MinerFeesItem)","url":"setEth(com.bitpay.sdk.model.Invoice.MinerFeesItem)"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrencies","l":"setEth(SupportedTransactionCurrency)","url":"setEth(com.bitpay.sdk.model.Invoice.SupportedTransactionCurrency)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setExceptionStatus(String)","url":"setExceptionStatus(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setExchangeRates(Hashtable>)","url":"setExchangeRates(java.util.Hashtable)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setExpirationTime(long)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setExtendedNotifications(boolean)"},{"p":"com.bitpay.sdk.model","c":"Token","l":"setFacade(String)","url":"setFacade(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setFee(Double)","url":"setFee(java.lang.Double)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setForcedBuyerSelectedWallet(String)","url":"setForcedBuyerSelectedWallet(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setFullNotifications(boolean)"},{"p":"com.bitpay.sdk.model","c":"Token","l":"setGuid(String)","url":"setGuid(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setGuid(String)","url":"setGuid(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"setGuid(String)","url":"setGuid(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setGuid(String)","url":"setGuid(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipient","l":"setGuid(String)","url":"setGuid(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipients","l":"setGuid(String)","url":"setGuid(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFees","l":"setGusd(MinerFeesItem)","url":"setGusd(com.bitpay.sdk.model.Invoice.MinerFeesItem)"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrencies","l":"setGusd(SupportedTransactionCurrency)","url":"setGusd(com.bitpay.sdk.model.Invoice.SupportedTransactionCurrency)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setIban(String)","url":"setIban(java.lang.String)"},{"p":"com.bitpay.sdk.model","c":"Token","l":"setId(String)","url":"setId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setId(String)","url":"setId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Bill","c":"Item","l":"setId(String)","url":"setId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setId(String)","url":"setId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"setId(String)","url":"setId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"setId(String)","url":"setId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setId(String)","url":"setId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"setId(String)","url":"setId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipient","l":"setId(String)","url":"setId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"setId(String)","url":"setId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"setImmediate(Boolean)","url":"setImmediate(java.lang.Boolean)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setInstructions(List)","url":"setInstructions(java.util.List)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipients","l":"setInstructions(List)","url":"setInstructions(java.util.List)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"setInvoice(String)","url":"setInvoice(java.lang.String)"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"setInvoiceAmount(Double)","url":"setInvoiceAmount(java.lang.Double)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setInvoiceBuyerProvidedInfo(InvoiceBuyerProvidedInfo)","url":"setInvoiceBuyerProvidedInfo(com.bitpay.sdk.model.Invoice.InvoiceBuyerProvidedInfo)"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"setInvoiceCurrency(String)","url":"setInvoiceCurrency(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"SettlementLedgerEntry","l":"setInvoiceData(InvoiceData)","url":"setInvoiceData(com.bitpay.sdk.model.Settlement.InvoiceData)"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"setInvoiceId(String)","url":"setInvoiceId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"SettlementLedgerEntry","l":"setInvoiceId(String)","url":"setInvoiceId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setInvoiceTime(long)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setIsCancelled(boolean)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceItemizedDetails","l":"setIsFee(Boolean)","url":"setIsFee(java.lang.Boolean)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceTransactionDetails","l":"setIsFee(Boolean)","url":"setIsFee(java.lang.Boolean)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setItemCode(String)","url":"setItemCode(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setItemDesc(String)","url":"setItemDesc(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setItemizedDetails(List)","url":"setItemizedDetails(java.util.List)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setItems(List)","url":"setItems(java.util.List)"},{"p":"com.bitpay.sdk.model.Wallet","c":"Wallet","l":"setKey(String)","url":"setKey(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setlabel(String)","url":"setlabel(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"WithHoldings","l":"setlabel(String)","url":"setlabel(java.lang.String)"},{"p":"com.bitpay.sdk.model","c":"Token","l":"setLabel(String)","url":"setLabel(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"setLabel(String)","url":"setLabel(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"setLastRefundNotification(Date)","url":"setLastRefundNotification(java.util.Date)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"setLedgerEntries(List)","url":"setLedgerEntries(java.util.List)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"setLedgerEntriesSum(Float)","url":"setLedgerEntriesSum(java.lang.Float)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"setLocality(String)","url":"setLocality(java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"setLoggerLevel(int)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setLowFeeDetected(boolean)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setMerchant(String)","url":"setMerchant(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setMerchantEin(String)","url":"setMerchantEin(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setMerchantName(String)","url":"setMerchantName(java.lang.String)"},{"p":"com.bitpay.sdk.model","c":"Policy","l":"setMethod(String)","url":"setMethod(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setMinerFees(MinerFees)","url":"setMinerFees(com.bitpay.sdk.model.Invoice.MinerFees)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setName(String)","url":"setName(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"setName(String)","url":"setName(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceBuyerProvidedInfo","l":"setName(String)","url":"setName(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Shopper","l":"setName(String)","url":"setName(java.lang.String)"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"setName(String)","url":"setName(java.lang.String)"},{"p":"com.bitpay.sdk.model.Rate","c":"Rate","l":"setName(String)","url":"setName(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setName(String)","url":"setName(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"WithHoldings","l":"setNotes(String)","url":"setNotes(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setNotificationEmail(String)","url":"setNotificationEmail(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setNotificationEmail(String)","url":"setNotificationEmail(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setNotificationURL(String)","url":"setNotificationURL(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"setNotify(boolean)"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"setNotify(boolean)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setNumber(String)","url":"setNumber(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"setOpeningBalance(Float)","url":"setOpeningBalance(java.lang.Float)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"setOpeningDate(Long)","url":"setOpeningDate(java.lang.Long)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setOrderId(String)","url":"setOrderId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"InvoiceData","l":"setOrderId(String)","url":"setOrderId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"InvoiceData","l":"setOverPaidAmount(Float)","url":"setOverPaidAmount(java.lang.Float)"},{"p":"com.bitpay.sdk.model.Wallet","c":"Currencies","l":"setP2p(Boolean)","url":"setP2p(java.lang.Boolean)"},{"p":"com.bitpay.sdk.model","c":"Token","l":"setPairingCode(String)","url":"setPairingCode(java.lang.String)"},{"p":"com.bitpay.sdk.model","c":"Token","l":"setPairingExpiration(long)"},{"p":"com.bitpay.sdk.model","c":"Policy","l":"setParams(List)","url":"setParams(java.util.List)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setPassProcessingFee(boolean)"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFees","l":"setPax(MinerFeesItem)","url":"setPax(com.bitpay.sdk.model.Invoice.MinerFeesItem)"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrencies","l":"setPax(SupportedTransactionCurrency)","url":"setPax(com.bitpay.sdk.model.Invoice.SupportedTransactionCurrency)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setPaymentCurrencies(List)","url":"setPaymentCurrencies(java.util.List)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"setPaymentUrls(RefundParams)","url":"setPaymentUrls(com.bitpay.sdk.model.Invoice.RefundParams)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"setPayoutInfo(PayoutInfo)","url":"setPayoutInfo(com.bitpay.sdk.model.Settlement.PayoutInfo)"},{"p":"com.bitpay.sdk.model.Settlement","c":"InvoiceData","l":"setPayoutPercentage(Map)","url":"setPayoutPercentage(java.util.Map)"},{"p":"com.bitpay.sdk.model.Wallet","c":"Currencies","l":"setPayPro(Boolean)","url":"setPayPro(java.lang.Boolean)"},{"p":"com.bitpay.sdk.model.Wallet","c":"Wallet","l":"setPayPro(Boolean)","url":"setPayPro(java.lang.Boolean)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setPercentFee(Double)","url":"setPercentFee(java.lang.Double)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setPhone(String)","url":"setPhone(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"setPhone(String)","url":"setPhone(java.lang.String)"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"setPhone(String)","url":"setPhone(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceBuyerProvidedInfo","l":"setPhoneNumber(String)","url":"setPhoneNumber(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setPhysical(boolean)"},{"p":"com.bitpay.sdk.model","c":"Token","l":"setPolicies(List)","url":"setPolicies(java.util.List)"},{"p":"com.bitpay.sdk.model","c":"Policy","l":"setPolicy(String)","url":"setPolicy(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setPosData(String)","url":"setPosData(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setPostal(String)","url":"setPostal(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"setPostalCode(String)","url":"setPostalCode(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"setPreview(Boolean)","url":"setPreview(java.lang.Boolean)"},{"p":"com.bitpay.sdk.model.Bill","c":"Item","l":"setPrice(Double)","url":"setPrice(java.lang.Double)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setPrice(Double)","url":"setPrice(java.lang.Double)"},{"p":"com.bitpay.sdk.model.Settlement","c":"InvoiceData","l":"setPrice(Float)","url":"setPrice(java.lang.Float)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setPricingMethod(String)","url":"setPricingMethod(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundParams","l":"setPurchaserNotifyEmail(String)","url":"setPurchaserNotifyEmail(java.lang.String)"},{"p":"com.bitpay.sdk.model.Wallet","c":"Currencies","l":"setQr(CurrencyQr)","url":"setQr(com.bitpay.sdk.model.Wallet.CurrencyQr)"},{"p":"com.bitpay.sdk.model.Bill","c":"Item","l":"setQuantity(Integer)","url":"setQuantity(java.lang.Integer)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setRate(Double)","url":"setRate(java.lang.Double)"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrency","l":"setReason(String)","url":"setReason(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceTransaction","l":"setReceivedTime(Date)","url":"setReceivedTime(java.util.Date)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"setRecipientId(String)","url":"setRecipientId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setRedirectURL(String)","url":"setRedirectURL(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setRedirectURL(String)","url":"setRedirectURL(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setReference(String)","url":"setReference(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipient","l":"setReference(String)","url":"setReference(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"SettlementLedgerEntry","l":"setReference(String)","url":"setReference(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundParams","l":"setRefundAddress(String)","url":"setRefundAddress(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setRefundAddresses(ArrayList)","url":"setRefundAddresses(java.util.ArrayList)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setRefundAddressRequestPending(boolean)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"setRefundEmail(String)","url":"setRefundEmail(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"setRefundFee(Double)","url":"setRefundFee(java.lang.Double)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setRefundInfo(ArrayList)","url":"setRefundInfo(java.util.ArrayList)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Buyer","l":"setRegion(String)","url":"setRegion(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"setRequestDate(Date)","url":"setRequestDate(java.util.Date)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setRequestDate(long)"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundParams","l":"setRequesterEmail(String)","url":"setRequesterEmail(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundParams","l":"setRequesterType(String)","url":"setRequesterType(java.lang.String)"},{"p":"com.bitpay.sdk.model","c":"Token","l":"setResource(String)","url":"setResource(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setRouting(String)","url":"setRouting(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFeesItem","l":"setSatoshisPerByte(BigDecimal)","url":"setSatoshisPerByte(java.math.BigDecimal)"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"setScale(String)","url":"setScale(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setSelectedTransactionCurrency(String)","url":"setSelectedTransactionCurrency(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceBuyerProvidedInfo","l":"setSelectedTransactionCurrency(String)","url":"setSelectedTransactionCurrency(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceBuyerProvidedInfo","l":"setSelectedWallet(String)","url":"setSelectedWallet(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setShopper(Shopper)","url":"setShopper(com.bitpay.sdk.model.Invoice.Shopper)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"setShopperId(String)","url":"setShopperId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceBuyerProvidedInfo","l":"setSms(String)","url":"setSms(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceBuyerProvidedInfo","l":"setSmsVerified(Boolean)","url":"setSmsVerified(java.lang.Boolean)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setSort(String)","url":"setSort(java.lang.String)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setState(String)","url":"setState(java.lang.String)"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"setState(String)","url":"setState(java.lang.String)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setStatus(String)","url":"setStatus(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setStatus(String)","url":"setStatus(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"setStatus(String)","url":"setStatus(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setStatus(String)","url":"setStatus(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"setStatus(String)","url":"setStatus(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipient","l":"setStatus(String)","url":"setStatus(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"setStatus(String)","url":"setStatus(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setSupportedTransactionCurrencies(SupportedTransactionCurrencies)","url":"setSupportedTransactionCurrencies(com.bitpay.sdk.model.Invoice.SupportedTransactionCurrencies)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setSupportPhone(String)","url":"setSupportPhone(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipient","l":"setSupportPhone(String)","url":"setSupportPhone(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundInfo","l":"setSupportRequest(String)","url":"setSupportRequest(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"RefundInfo","l":"setSupportRequest(String)","url":"setSupportRequest(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundParams","l":"setSupportRequestEid(String)","url":"setSupportRequestEid(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setSwift(String)","url":"setSwift(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setTargetConfirmations(long)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceTransaction","l":"setTime(Date)","url":"setTime(java.util.Date)"},{"p":"com.bitpay.sdk.model.Settlement","c":"SettlementLedgerEntry","l":"setTimestamp(Long)","url":"setTimestamp(java.lang.Long)"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"setTimestamp(String)","url":"setTimestamp(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"Settlement()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.exceptions","c":"SettlementException","l":"SettlementException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"SettlementLedgerEntry","l":"SettlementLedgerEntry()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.exceptions","c":"SettlementQueryException","l":"SettlementQueryException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setToken(String)","url":"setToken(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setToken(String)","url":"setToken(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Refund","l":"setToken(String)","url":"setToken(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setToken(String)","url":"setToken(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipient","l":"setToken(String)","url":"setToken(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutRecipients","l":"setToken(String)","url":"setToken(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"setToken(String)","url":"setToken(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"setTotalAmount(Float)","url":"setTotalAmount(java.lang.Float)"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFeesItem","l":"setTotalFee(BigDecimal)","url":"setTotalFee(java.math.BigDecimal)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setTransactionCurrency(String)","url":"setTransactionCurrency(java.lang.String)"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"setTransactionCurrency(String)","url":"setTransactionCurrency(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"InvoiceData","l":"setTransactionCurrency(String)","url":"setTransactionCurrency(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setTransactionDetails(InvoiceTransactionDetails)","url":"setTransactionDetails(com.bitpay.sdk.model.Invoice.InvoiceTransactionDetails)"},{"p":"com.bitpay.sdk.model.Invoice","c":"InvoiceTransaction","l":"setTransactionId(String)","url":"setTransactionId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setTransactions(List)","url":"setTransactions(java.util.List)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"setTransactions(List)","url":"setTransactions(java.util.List)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setTransactionSpeed(String)","url":"setTransactionSpeed(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstructionTransaction","l":"setTxid(String)","url":"setTxid(java.lang.String)"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"setTxType(String)","url":"setTxType(java.lang.String)"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"setType(String)","url":"setType(java.lang.String)"},{"p":"com.bitpay.sdk.model.Wallet","c":"CurrencyQr","l":"setType(String)","url":"setType(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setUniversalCodes(InvoiceUniversalCodes)","url":"setUniversalCodes(com.bitpay.sdk.model.Invoice.InvoiceUniversalCodes)"},{"p":"test","c":"BitPayTestMerchant","l":"setUp()"},{"p":"test","c":"BitPayTestPayouts","l":"setUp()"},{"p":"test","c":"BitPayTestPayouts","l":"setUpOneTime()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setUrl(String)","url":"setUrl(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setUrl(String)","url":"setUrl(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFees","l":"setUsdc(MinerFeesItem)","url":"setUsdc(com.bitpay.sdk.model.Invoice.MinerFeesItem)"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrencies","l":"setUsdc(SupportedTransactionCurrency)","url":"setUsdc(com.bitpay.sdk.model.Invoice.SupportedTransactionCurrency)"},{"p":"com.bitpay.sdk.model.Rate","c":"Rate","l":"setValue(Double)","url":"setValue(java.lang.Double)"},{"p":"com.bitpay.sdk.model","c":"Token","l":"setValue(String)","url":"setValue(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"setWalletProvider(String)","url":"setWalletProvider(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"PayoutInfo","l":"setWire(String)","url":"setWire(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"setWithHoldings(List)","url":"setWithHoldings(java.util.List)"},{"p":"com.bitpay.sdk.model.Settlement","c":"Settlement","l":"setWithHoldingsSum(Float)","url":"setWithHoldingsSum(java.lang.Float)"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFees","l":"setXrp(MinerFeesItem)","url":"setXrp(com.bitpay.sdk.model.Invoice.MinerFeesItem)"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrencies","l":"setXrp(SupportedTransactionCurrency)","url":"setXrp(com.bitpay.sdk.model.Invoice.SupportedTransactionCurrency)"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"setZip(String)","url":"setZip(java.lang.String)"},{"p":"com.bitpay.sdk.model.Ledger","c":"Buyer","l":"setZip(String)","url":"setZip(java.lang.String)"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"SGD"},{"p":"com.bitpay.sdk.model.Payout","c":"RecipientReferenceMethod","l":"SHOPPER_ID"},{"p":"com.bitpay.sdk.model.Invoice","c":"Shopper","l":"Shopper()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"SHP"},{"p":"com.bitpay.sdk.util","c":"KeyUtils","l":"sign(ECKey, String)","url":"sign(org.bitcoinj.core.ECKey,java.lang.String)"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"SLL"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"SOS"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"SRD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"SSP"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"STN"},{"p":"com.bitpay.sdk","c":"Client","l":"submitPayoutBatch(PayoutBatch)","url":"submitPayoutBatch(com.bitpay.sdk.model.Payout.PayoutBatch)"},{"p":"com.bitpay.sdk","c":"Client","l":"submitPayoutRecipients(PayoutRecipients)","url":"submitPayoutRecipients(com.bitpay.sdk.model.Payout.PayoutRecipients)"},{"p":"com.bitpay.sdk.exceptions","c":"SubscriptionCreationException","l":"SubscriptionCreationException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.exceptions","c":"SubscriptionException","l":"SubscriptionException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.exceptions","c":"SubscriptionQueryException","l":"SubscriptionQueryException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.exceptions","c":"SubscriptionUpdateException","l":"SubscriptionUpdateException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundStatus","l":"Success"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrencies","l":"SupportedTransactionCurrencies()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrency","l":"SupportedTransactionCurrency()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"SVC"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"SYP"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"SZL"},{"p":"com.bitpay.sdk","c":"Env","l":"Test"},{"p":"test","c":"BitPayTestMerchant","l":"testCreateECKeyFromSeedString()"},{"p":"test","c":"BitPayTestMerchant","l":"TestGetSettlement()"},{"p":"test","c":"BitPayTestMerchant","l":"TestGetSettlementReconciliationReport()"},{"p":"test","c":"BitPayTestMerchant","l":"TestGetSettlements()"},{"p":"test","c":"BitPayTestMerchant","l":"TestShouldCancelRefund()"},{"p":"test","c":"BitPayTestMerchant","l":"TestShouldCreateBillEUR()"},{"p":"test","c":"BitPayTestMerchant","l":"TestShouldCreateBillUSD()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldCreateGetCancelRefundRequest()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldCreateGetCancelRefundRequestNEW()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldCreateInvoice100EUR()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldCreateInvoice100USD()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldCreateInvoiceBCH()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldCreateInvoiceBTC()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldCreateInvoiceETH()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldCreateInvoiceOneTenthBTC()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldCreateInvoiceWithAdditionalParams()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldCreateUpdateAndDeleteInvoice()"},{"p":"test","c":"BitPayTestMerchant","l":"TestShouldDeliverBill()"},{"p":"test","c":"BitPayTestMerchant","l":"TestShouldGetAndUpdateBill()"},{"p":"test","c":"BitPayTestMerchant","l":"TestShouldGetBill()"},{"p":"test","c":"BitPayTestMerchant","l":"TestShouldGetBills()"},{"p":"test","c":"BitPayTestMerchant","l":"TestShouldGetBillsByStatus()"},{"p":"test","c":"BitPayTestMerchant","l":"TestShouldGetBillStatus()"},{"p":"test","c":"BitPayTestMerchant","l":"TestShouldGetBillUrl()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldGetCNYExchangeRate()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldGetEURExchangeRate()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldGetExchangeRates()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldGetInvoice()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldGetInvoiceId()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldGetInvoices()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldGetInvoiceStatus()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldGetInvoiceURL()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldGetLedgerBtc()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldGetLedgers()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldGetLedgerUsd()"},{"p":"test","c":"BitPayTestPayouts","l":"testShouldGetPayoutBatches()"},{"p":"test","c":"BitPayTestPayouts","l":"testShouldGetPayoutBatchesByStatus()"},{"p":"test","c":"BitPayTestPayouts","l":"testShouldGetPayoutRecipientId()"},{"p":"test","c":"BitPayTestPayouts","l":"testShouldGetPayoutRecipients()"},{"p":"test","c":"BitPayTestMerchant","l":"TestShouldGetRefund()"},{"p":"test","c":"BitPayTestMerchant","l":"TestShouldGetRefunds()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldGetSupportedWallets()"},{"p":"test","c":"BitPayTestMerchant","l":"TestShouldNotifyRefund()"},{"p":"test","c":"BitPayTestPayouts","l":"testShouldSubmitGetAndDeletePayoutBatch()"},{"p":"test","c":"BitPayTestPayouts","l":"testShouldSubmitPayoutRecipients()"},{"p":"test","c":"BitPayTestMerchant","l":"testShouldUpdateExchangeRates()"},{"p":"test","c":"BitPayTestMerchant","l":"TestShouldUpdateRefund()"},{"p":"com.bitpay.sdk","c":"Env","l":"TestUrl"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"THB"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"TJS"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"TMT"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"TND"},{"p":"com.bitpay.sdk.model","c":"Token","l":"Token()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk","c":"Client","l":"tokenExist(String)","url":"tokenExist(java.lang.String)"},{"p":"com.bitpay.sdk","c":"Env.Tokens","l":"Tokens()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"TOP"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"TRY"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"TTD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"TWD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"TZS"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"UAH"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"UGX"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutStatus","l":"Unpaid"},{"p":"com.bitpay.sdk.model.Payout","c":"RecipientStatus","l":"UNVERIFIED"},{"p":"com.bitpay.sdk.model.Rate","c":"Rates","l":"update()"},{"p":"com.bitpay.sdk","c":"Client","l":"update(String, String)","url":"update(java.lang.String,java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"updateBill(Bill, String)","url":"updateBill(com.bitpay.sdk.model.Bill.Bill,java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"updateInvoice(String, String, String)","url":"updateInvoice(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"updateRefund(String, String)","url":"updateRefund(java.lang.String,java.lang.String)"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"USD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"USDC"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"USN"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"UYI"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"UYU"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"UZS"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"VEF"},{"p":"com.bitpay.sdk.model.Payout","c":"RecipientStatus","l":"VERIFIED"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"VND"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"VUV"},{"p":"com.bitpay.sdk.model.Wallet","c":"Wallet","l":"Wallet()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.exceptions","c":"WalletException","l":"WalletException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.exceptions","c":"WalletQueryException","l":"WalletQueryException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk.util","c":"BitPayLogger","l":"WARN"},{"p":"com.bitpay.sdk.util","c":"BitPayLogger","l":"warn(String)","url":"warn(java.lang.String)"},{"p":"com.bitpay.sdk.model.Settlement","c":"WithHoldings","l":"WithHoldings()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"WST"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"XAF"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"XCD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"XDR"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"XOF"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"XPF"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"XRP"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"XSU"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"XUA"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"YER"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"ZAR"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"ZMW"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"ZWL"}] \ No newline at end of file diff --git a/apidocs/member-search-index.zip b/apidocs/member-search-index.zip index 9633e0d2332cfa29f48e2e6b713b7b52a3f95a93..67434a69affb16a955b5d2e9c66a4c7ec1e3487e 100644 GIT binary patch delta 3777 zcmV;y4nFbnOXf=rP)h>@6aWYa2mo%4F|iHc7Jrc4z$}tWZ_AFdEvRK_vXiY2b$p7c z==e0(TgNxGs2S5vb{)TMCLjkGDslQ4rc@sDVXA9ghhb`FMN$d)6OUapy2`RMq;*4v zc^U@!zfEp=y0S3}B1bzFApplQ;;&wa^UKA8*R+0EtaAYnT+GW&KW#yZTh92SRFKZ> zmVff)LK|;+gdRs}n#$v?U6{L^iDZ8Qvn8Q&m-*ylWFhs+5OUm)qnJhK=I^1+<2F|z zv$;*{+0BseOLU$}Dl=?fGt#RH*_H`re*}*C^~}W3zW2#e{iyC6Fsm;T&q1RoIHuGR zgY;^h>qVV{uDIswBcU#OxIh#y#m+&P!+%6etk8V&)f;lpYdBa6l* z6X;RpX0A&|Zu@kE7n9DCBzVmy$~v(%S=NQ?NwXqD*SmaF0;+YH=XWjDKg+f?_EsEQ zbN3r@ZEwi*!B^=m?1Q0x<=h8Xv!&FVaDJ;EWo8xrEG@ww<1z@X(^@B!;CLJ*@qdq$ ztqB2>LCm)`8W0Z``2H!eGbo{z$(EHNZfwb+!$A*o4aQ^7(mZ(oxK- zP+-CpC^D^DPp{J^`6&ppJ^8Lo1q#-t%Jp3xa-<7J{%{xMwi>uLrLJ(cz*&YR~eHqJx0N+Y@*+pO!K(wm9964#zno0Bl=^H@&BG!k6GcQp zBi~6D)rOHE&w<6Am~K}pS9wgEhUIyCLBTe?6lEzhzkX@2GgsQ9$m*FV4S(1XpKB^x zi$|HQIrCFf+p-Un_^>B%l#`h4J2+vQse%(&?oSR*U?LdrdTQnEFF2t(OI#dbhQ4E~ zh~M=qMSr4LgkMt84IS&I6gy-e+d>L3_AzBzDUV^2yRc0c+FHPj9H?3pk0+*P>IYul zNnS9nbG#c8Y!?<-tTZ=g5q}{WowhoUlP%fhv&o7?)OaB~Zo7fCl@|8fZ_iIrx2-y3`82AlLFKc~+1u$$BFD)sklTZX=5lC1Evee6z(_sU{Pk(DkbX}GCHZ9~?3bS7C$z?E0i<=pZ{gieaakEqwe$8`yhY0>0 z0R(omA!MN%|1N&+Xi=J;t+S&bumsaB^wa7LzoN=Pjy0b2qf%q%BpQVd<8x9eABe zMQ3d#^XZ7$K90RxNRMG-H+ za({BT03j2>I9fm}Z+}5~bhc(=Svbk6=o#&z9=E9q@J$k>12IaI4jmRd$3sN$plUhX zg04?#!Qhb$u7acTHoOi&{TV5#v+50A>4=B5FVC{|ttcbPjZ{L@2Z61d7 zFv^s#0^lD4(9E&?jZ#=y7J0VXQW{*xuP=l2W9wcsA2A<(nHkQzlB?S=_qG|#ITV$C zf4S4RS)hkgYKs%|fTtwk?gyzC2Q25|uAzp1mGLDR)K?HS*ng4SBgY|!A{DMnw* zjBWowmtj?zb%o6?#M1YG{E1qii!YnL3dC?SJGZtZK?Gv9&ShpVQMvu_R;)6A z!5FfBq%cwQJXLXCwpqY;hZnHLE4btmpzhwX5o5`p3tf-{+sHvVu-b-L@zk$u1{Jft z8i4hcrqDbB+;{53HWOa|t#4GT6F&k%rj)z=z9yNz#~FvJ!4ZULOn5B~4+9 z2I5;}`8j^qG;3Eu7N<{Px**Bul^x)KANFV$%SEw!-9sP8z1jv5*zi2V@0?Q}-35$a zPy|Kso_$vT_av2{o$mF(bP*&oDE@CUF7nj-EhV9s^+SOMuO8~mzQ4&HH0M@-dp|~; zn)5A5!iP|DHL#d(>whv*sVlm=1?$ezeH~Y2S60AED??nar1G5m<)o|-d`(9$w{!H% zu5FJ*5NgA84Z1Cdm+saz z^84vZJxTy6iPqe~(TfF!f`3_m!nI@n3?WR`U`-BF_;!$Pp+1&Ks~_P5+zNSy-%-8} zlE?Pb0@xFlpnDs3YumfCZGDW4Lz)HqV>b-4&aw)E)UWJnVBqUPTs=(=b;6)#`OEL) z@DOId{5~B>8IbZuva|zTT~^lNQRQ@MDX{F*gAC^RtNE7`NnYjEZ)SUcYy+vOn)`0R zE|q6^RtP;ZYn!QldFf~S-uVIZ``htM`(kQjo&FS-SrAEMu*F=Lvy&2!Vh*1lvxi-Y zRX)Ops2ieY9x@M}F@q`Z&1C6x2{3Nu?c_24NaewQ>CFu?(Mm$)3Q2+L%Y>^FVJ}~^ zKyU5XymLXw_$ZUc{q7@w(CN^XsZ+QI>C78ybtFXhp?DduUKzOayufRzJl(%KdXep+ z6*>Mn%J?C;X&<5U$xPFon(rW&x~rMmkfB9jqO;m)rMwwkC{>m)i*#Spgz}8KAmVYL zq2XOLbtJht@SBIQ_WLFQHBpjs$dzHVdzQd9KQe9W(F{LaRg{p0v9#0c)P8_pu@o&%|@X zKur1A5<)2J|B4wA9=>6wUBb&EsTSaCa#Sb?miv?S0~5hmJ!s{1&<@gx<9i5t5?Qjx z4OeemT82yMIlGvDSg4fBn^A><@|gb;?DA%@m@fY{(_pHu6)9sR>>P%w8eT4BRBT8W zM4!p)CKImd3m*@I>6oUL4>1U>&+_8rks)p4@bJfQ8z*GQOMCey^Ermmrs&4Q1_VxjmfE8?XeYo@2?To4L@;CL z`02iSDlC7AklkU@_K>T}cyW^}#Zrm$hGM{*2hsxl3$!`z@&^~?617Tr+|hu%|2$Tq z5@XA5Pw+mwYa$L1n&19Vk*bKtx#xC_q56i>uHR*|Mp1rxcrJ>vm9*7zo|WNmoaVFK zc@pnegzR{KH`A@zTUadVf(2m;yP{6?RAt7r=R{$y)Ru&OS69pw0YEL6Q?%ok7xU4C z2g%!-nVZwi(gVt7HL*m=S}3%2#F~|{9({mbPwyOY3vKZ0-~MLbd~z)JMl8cs$CsXf z)?+_F)3qmwm@|$JpC@mUv1RbtZWpql9Yn?VXgI$bbAk1~qF{G@D{ zp)u${pz?6RT!DPh&p>_>J!FsxV~CrsIHCNjp8O5k5IE(l9#+i7hc9-rY|87!Y*W) zx=`wmHq7NqMPX4c3`u+4U|a#~KT zxWjCdG-0l9r_0&-Y^vEEX>CWBlcMn;j{?(@cb7;={R8if5LW11I` zZnx$Cco3sBY?}=rlc_ANZ4VEU6?1}GprR0(y>d{jFvFHoVH}#9m2BfjN%d`pqS|18 zs8IUoc6#ot6^wL(guU5h+NRpvTEw|E?mR6H%sZat;3(}qk5+0wTQ8gmxC;bjc@aX` zWacI#e|x87d$yF04K?MDAn6L2C%VSY0B=V$!eP8wH+L(H4f*vW6WUrI$2_< zZcq{~P*h8dh4^)a(UM;`X9%iqQ%oB@6aWYa2msY%Be4zO7Jm>r6}2P4phC8{cIZvtQMLt@GEH_e z?V)i(F%{#4=6V|^rUp1;+R3iNz0CyV07E5CAETPeV?L^Nt?MwV&5TYe0e=y)Yjsyy zc6PUJgfYj&Apf_?El*cAMnU9g)*=MpI7a-{>vnz@S@4?H?~s8Crd!O*#XxOAic8V> z8-G@iitU#2<#8Ktc|adWX)9)jZ)0>`Rw^@WA3xHo3fT?|W;+EA5%$c)a5>}S|^j>cz+xv z@sE_P2?3Kq%=h5t(e3-e2DS&w8tk#Xaf3PwgB{2FBmExK00X(!**5H96Dr5c=jWYC zM=`HLfeBZj$h2xby-u6thbGAOa#^P?~s&C z6afg0d?#5{8%BaW2NtHX8<^cwp4SLz0O=|kAEVoXPz`* zCxWi2Y%LyTw&sXXO>N6QOya|yz(G-Bw(nSmX{L&0V7WgzmVt?2yz8lzx4&41>gaKC z;u-pmts;KcuN3`>ViA6)MK{u{n^NqMeQXOUz}SbNX{9`dN$$cnU1)0oGjgD6Q9R9< znyDXnc_(@BxX$rzNU&X4V1KdF+?+*(WOUlexY?6~a))>c~BZ@)c1 zMUl6UcX0xqKPl7w%H1EUwl~=)Cw*`1nHz9)^sP9iZ}IVfIrid|?i7=3p8b<&*<1$W zX;v?>&*&m3Oks8(fJ@pu-R}FriUbZzv=2#?uK9Xk&~!`rVxUoj{eQ4&t3Y2|^zI{H zob-yeM^4~EwMTw{QuoEp$m9G*op8S=yO241p#7XW*MHEi@I4zhz{1y{w+XC5-V7&D znMBZ?v`+G9J_*kSzkZSBUqf(U`9Zp70ly}^%p)|AWk8a3sg;wt9NJGysy2JuMS6DG z3!9k(;Ws2wUPi-o*nhzA(^?W;S7p9U3wf5ptk-*T8O+k+B1cIupP26@oKL!CH%n!K z+C0a1FyYS;Kww83LKd}I<$3Np6qapt$ynxj{#lBzGw0JI+!a1{luH_479u%oHW>gBl2PviT{&gO?Z>1}1L0(Re7dthbp z+Yz*vS-Pc>3@>V_=&Y?|4j?hx#~Ql8t0RsKT!#{~vv{mSdapo{@5f)W2-38E<%)UX zFpqu#aeoMl;6)LJz;b_b6ao{$I0!*2Z-23Vbhc(=SvVl8=o#&z9(TVA@J$k>12Om- zk{~anY_BGQ`(YFLlK5q2IPXesgu`41XE5hbRQmnpPUB{Q9uB`PPRs+Il7zb-q+T4b zoXeR^$bZWCk__sbjT-E~NUo>jkVBCQ*Rj8xfT;9clzA)!9vzK7set0WZnSWqtT0c^lsCk~MIELFS;Jd>M*y7Dz zatTmZdfAAv6 zRDW<-zaAwjQ7quY<-R0oOf6Xnw<52Ph3Jx|Fhv9LEwcQa>T8;{t00Thr!ZZRWc13; zg}~2?w2S4U*u62L4-a2$g9vPRp5b@SDNh6g#xE#>qIl0ftN(kF%8z9CdJek?k{J~L zHyIas>iw3I(98OvK!aBgb!Ok+WDlBitAD*8BTmivmL%arD2ZYe^KJc4Mk;khSGQo@ zS-P)Nu-kAH0-HC1!p4cMjf49^OoM`mp^)h{poY~MRSV19o) zo@rl9jjYq3!ZHgYX$-cQ>vGUi;!(`u^E3IdE3wK)_z-nN)XYQX!82ws<-M6Koh|{! zt-PH)<{zoNB|v)3gG{uNP`N@O|Pf*DTOmJ2o$95Hdc>q;bDe34e4tbYS}ITXuZ~`1duT_`fVuxc&(j(!wL39G+Rd|M7tjc?EtDhqQ-J;FH zt6!e0vSP;!JcQ6H(T6APE=<6h=jnZ{NW?So+%OPRKDLAq%KE>LMudm2qiL7$vPh~0 z_?jFQ3WDYSWc|QIFjfy*c^$NabmI6Pf}TW{>~X`@8<&>hQhLrVCVv(xrSfJ}VW2$b zzXZFySuCc@f6X+Qs%u5c7zsOvp{jIzzR7%!p}JXNsFvz)C81hL+f+rhzLrpxuU;U_A2?)pn6y3Qsxn^Oq@5j=TIFN4Z3;5*~LnAn!kqRj9<+vfC59&+eLt1BB+cKUAbD;&JY| z9b>4zp|tCF*{o5NpB|ozqHHB?wVY>V_|vKREO(y7`xPNO-ha(>YxWivOS)h|n8L28 z6FpU#G3_}~m@Bm@ zWvoXZpx4toN8Cai{Q9@Q**BjY%e@iHaMkgpC!qD%572b&Nh0Qqqr>OPn`CSme74(# zY-k5jaY2w9GJl^@&knl@VQ*O%jL@TuqA))x8)j$>IuNKlTrgK4AM|+jR|1S)i?ByW zAU`O~$BOMVOi5jT6W{Z5fuah@8&um2UT$5)8o zs9{zoSp%lnX=BUN;z5z)Yvac0QYGc1K#<(IxpQ zS0+|{z98XUxx0~3WVidg@g9bpWxfVs|Hzo;1*F?;`9B`SC=J_Y1IT15OKaQ1gJi{= zpcbeogl4ZC6f4ZIrBoP)=4K_^_)$`Qo1v&S7=J31KDwQrJ8K0aogiUvHkr1mHn$dW zZjC!niv#nHXE``Zd(Wel+RxStX9Dg5L0Mje5H^{)$;cn-DcPParDH=)`6EcW0_KUX zu`|Hi5sh#dZ`RG-3S&clJyVZ53Dp=gSiVk{7^)kTgbNha5@R8LU17B3*UcG%>f034 zhB@EQP*hiU7^=JZ`+xuQe*sWS2ME4HN*_=q008la0RT`-0Rj{N6aWYa2msY%BU8RZ VN*_=q008lmqa{5CmL&iH002xdhJpY9 diff --git a/apidocs/overview-summary.html b/apidocs/overview-summary.html index ce9b75d1..1909d183 100644 --- a/apidocs/overview-summary.html +++ b/apidocs/overview-summary.html @@ -2,10 +2,10 @@ - + Generated Documentation (Untitled) - +