diff --git a/GUIDE.md b/GUIDE.md
index 05cf2828..a52ceaf6 100644
--- a/GUIDE.md
+++ b/GUIDE.md
@@ -26,6 +26,7 @@ The private key should be stored in the client environment such that it cannot b
* Using the [BitPaySetup Script](https://github.com/bitpay/java-bitpay-client/blob/master/src/setup/java/BitPaySetup.java) helps to generate the private key, as well as a environment file formatted in JSON which contains all configuration requirements, that should be stored in the client local file system. It is not recommended to transmit the private key over any public or unsecure networks.
Once the BitPaySetup Script has run and generated the Json correctly, read the console output and follow the instructions in order to pair your new tokens.
+ This method would also allow you to generate the Private Key as plain text which you can securely store in case you are using cloud services.
* Or using the [BitPay.Net Setup utility](https://github.com/bitpay/csharp-bitpay-client/releases/download/v2.0.1904/BitPay.Net_Setup_utility.zip) on a Windows machine, helps to generate the private key, as well as a environment file formatted in JSON which contains all configuration requirements, that should be stored in the client local file system. It is not recommended to transmit the private key over any public or unsecure networks.
@@ -40,6 +41,7 @@ The environment file can be either generated by the BitPay.Net Setup utility or
"EnvConfig": {
"Test": {
"PrivateKeyPath": "",
+ "PrivateKey": "",
"ApiTokens": {
"pos": "",
"merchant": "",
@@ -48,6 +50,7 @@ The environment file can be either generated by the BitPay.Net Setup utility or
},
"Prod": {
"PrivateKeyPath": "",
+ "PrivateKey": "",
"ApiTokens": {
"pos": "",
"merchant": "",
diff --git a/apidocs/allclasses-index.html b/apidocs/allclasses-index.html
index f8745a72..49ce54fe 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 69d38620..3c919cc4 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 8cf55a8f..caebb8a5 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 3252fd10..2c7c03ee 100644
--- a/apidocs/com/bitpay/sdk/Client.html
+++ b/apidocs/com/bitpay/sdk/Client.html
@@ -2,10 +2,10 @@
-
+
Client
-
+
@@ -28,7 +28,7 @@
catch(err) {
}
//-->
-var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":9,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10,"i29":10,"i30":10,"i31":10,"i32":10,"i33":10,"i34":10,"i35":10,"i36":10,"i37":10,"i38":10,"i39":10,"i40":10,"i41":10,"i42":10,"i43":10,"i44":10,"i45":10,"i46":10};
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":9,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10,"i29":10,"i30":10,"i31":10,"i32":10,"i33":10,"i34":10,"i35":10,"i36":10,"i37":10,"i38":10,"i39":10,"i40":10,"i41":10,"i42":10,"i43":10,"i44":10,"i45":10};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
@@ -118,9 +118,9 @@ Class Client
extends java.lang.Object
Version:
-4.2.1912
+4.3.2001
See bitpay.com/api for more information.
- date 13.12.2019
+ date 30.01.2020
Author:
Antonio Buedo
@@ -180,7 +180,7 @@ Constructor Summary
Client (java.lang.String environment,
- java.lang.String privateKeyPath,
+ java.lang.String privateKey,
Env.Tokens tokens)
Constructor for use if the keys and SIN are managed by this library.
@@ -218,7 +218,7 @@ Method Summary
void
-BuildConfig (java.lang.String privateKeyPath,
+BuildConfig (java.lang.String privateKey,
Env.Tokens tokens)
Builds the configuration object
@@ -504,58 +504,51 @@ Method Summary
-boolean
-isFullyPaid (Invoice invoice)
-
-Checks whether a BitPay invoice has been paid in full.
-
-
-
org.apache.http.HttpResponse
post (java.lang.String uri,
java.lang.String json)
-
+
org.apache.http.HttpResponse
post (java.lang.String uri,
java.lang.String json,
boolean signatureRequired)
-
+
java.lang.String
requestClientAuthorization (java.lang.String facade)
Request a pairing code from the BitPay server.
-
+
java.lang.String
responseToJsonString (org.apache.http.HttpResponse response)
-
+
PayoutBatch
submitPayoutBatch (PayoutBatch batch)
Submit a BitPay Payout batch.
-
+
boolean
tokenExist (java.lang.String facade)
Specified whether the client has authorization (a token) for the specified facade.
-
+
org.apache.http.HttpResponse
update (java.lang.String uri,
java.lang.String json)
-
+
Bill
updateBill (Bill bill,
java.lang.String billId)
@@ -616,14 +609,14 @@ Constructor Detail
Client
public Client(java.lang.String environment,
- java.lang.String privateKeyPath,
+ java.lang.String privateKey,
Env.Tokens tokens)
throws BitPayException
Constructor for use if the keys and SIN are managed by this library.
Parameters:
environment
- Target environment. Options: Env.Test / Env.Prod
-privateKeyPath
- Private Key file path.
+privateKey
- The full path to the securely located private key or the HEX key value.
tokens
- Env.Tokens containing the available tokens.
Throws:
BitPayException
- BitPayException class
@@ -943,7 +936,7 @@ cancelRefund
Parameters:
invoice
- The BitPay invoice having the associated refund to be canceled. Must have been obtained using the merchant facade.
-refundId
- The refund id for the refund to be canceled.
+refundId
- The refund Id for the refund to be canceled.
Returns:
True if the refund was successfully canceled, false otherwise.
Throws:
@@ -963,8 +956,8 @@ cancelRefund
Cancel a previously submitted refund request on a BitPay invoice.
Parameters:
-invoiceId
- The BitPay invoiceId having the associated refund to be canceled.
-refund
- The refund id for the refund to be canceled.
+invoiceId
- The BitPay invoice Id having the associated refund to be canceled.
+refund
- The BitPay refund for the refund to be canceled.
Returns:
True if the refund was successfully canceled, false otherwise.
Throws:
@@ -1402,26 +1395,6 @@ getSettlementReconciliationReport
-
-
-
-
-
-isFullyPaid
-public boolean isFullyPaid(Invoice invoice)
- throws BitPayException
-Checks whether a BitPay invoice has been paid in full.
- Returns true if the amountPaid higher or equal to paymentTotals, returns false otherwise
-
-Parameters:
-invoice
- A Bitpay invoice object
-Returns:
-true if the amountPaid higher or equal to paymentTotals, returns false otherwise
-Throws:
-BitPayException
- BitPayException class
-
-
-
@@ -1567,13 +1540,13 @@ GetConfig
static java.lang.String
-XSU
+XRP
static java.lang.String
-XUA
+XSU
static java.lang.String
-YER
+XUA
static java.lang.String
-ZAR
+YER
static java.lang.String
-ZMW
+ZAR
static java.lang.String
+ZMW
+
+
+
+static java.lang.String
ZWL
@@ -1166,6 +1171,19 @@ PAX
+
+
+
+
diff --git a/apidocs/com/bitpay/sdk/model/Facade.html b/apidocs/com/bitpay/sdk/model/Facade.html
index c6fafd33..30db8ec1 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 1e0f283e..086bafd1 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 03a8a0bb..783bbc9d 100644
--- a/apidocs/com/bitpay/sdk/model/Invoice/Invoice.html
+++ b/apidocs/com/bitpay/sdk/model/Invoice/Invoice.html
@@ -2,10 +2,10 @@
-
+
Invoice
-
+
diff --git a/apidocs/com/bitpay/sdk/model/Invoice/InvoiceBuyerProvidedInfo.html b/apidocs/com/bitpay/sdk/model/Invoice/InvoiceBuyerProvidedInfo.html
index 0f69e12a..6093277a 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 7fce5af1..ecb92f2c 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 9c9c9a7f..fabedf05 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 81c20617..77de5741 100644
--- a/apidocs/com/bitpay/sdk/model/Invoice/MinerFees.html
+++ b/apidocs/com/bitpay/sdk/model/Invoice/MinerFees.html
@@ -2,10 +2,10 @@
-
+
MinerFees
-
+
@@ -28,7 +28,7 @@
catch(err) {
}
//-->
-var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10};
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
@@ -195,8 +195,8 @@ Method Summary
-void
-set (MinerFeesItem pax)
+MinerFeesItem
+getXrp ()
@@ -216,14 +216,24 @@ Method Summary
void
-setPax (MinerFeesItem gusd)
+setGusd (MinerFeesItem gusd)
void
+setPax (MinerFeesItem pax)
+
+
+
+void
setUsdc (MinerFeesItem usdc)
+
+void
+setXrp (MinerFeesItem xrp)
+
+
@@ -351,13 +361,13 @@ getGusd
public MinerFeesItem getGusd()
-
+
@@ -369,13 +379,31 @@ getPax
public MinerFeesItem getPax()
-
+
+
+
+
+
+
+
+
+
diff --git a/apidocs/com/bitpay/sdk/model/Invoice/MinerFeesItem.html b/apidocs/com/bitpay/sdk/model/Invoice/MinerFeesItem.html
index c881858c..8a03f633 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/PaymentCode.html b/apidocs/com/bitpay/sdk/model/Invoice/PaymentCode.html
index 85faf973..eb6b12c3 100644
--- a/apidocs/com/bitpay/sdk/model/Invoice/PaymentCode.html
+++ b/apidocs/com/bitpay/sdk/model/Invoice/PaymentCode.html
@@ -2,10 +2,10 @@
-
+
PaymentCode
-
+
@@ -28,7 +28,7 @@
catch(err) {
}
//-->
-var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10};
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
@@ -185,25 +185,35 @@ Method Summary
+java.lang.String
+getRip681 ()
+
+
+
void
setBip72b (java.lang.String bip72b)
-
+
void
setBip73 (java.lang.String bip73)
-
+
void
setEip681 (java.lang.String eip681)
-
+
void
setEip681b (java.lang.String eip681b)
+
+void
+setRip681 (java.lang.String rip681)
+
+
@@ -316,12 +326,30 @@ getEip681b
-
diff --git a/apidocs/com/bitpay/sdk/model/Invoice/PaymentCodes.html b/apidocs/com/bitpay/sdk/model/Invoice/PaymentCodes.html
index 3fb7bf5d..fddffc1d 100644
--- a/apidocs/com/bitpay/sdk/model/Invoice/PaymentCodes.html
+++ b/apidocs/com/bitpay/sdk/model/Invoice/PaymentCodes.html
@@ -2,10 +2,10 @@
-
+
PaymentCodes
-
+
@@ -28,7 +28,7 @@
catch(err) {
}
//-->
-var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10};
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
@@ -195,8 +195,8 @@ Method Summary
-void
-set (PaymentCode pax)
+PaymentCode
+getXrp ()
@@ -216,14 +216,24 @@ Method Summary
void
-setPax (PaymentCode gusd)
+setGusd (PaymentCode gusd)
void
+setPax (PaymentCode pax)
+
+
+
+void
setUsdc (PaymentCode usdc)
+
+void
+setXrp (PaymentCode xrp)
+
+
@@ -351,13 +361,13 @@ getGusd
public PaymentCode getGusd()
-
+
@@ -369,13 +379,31 @@ getPax
public PaymentCode getPax()
-
+
+
+
+
+
+
+
+
+
diff --git a/apidocs/com/bitpay/sdk/model/Invoice/PaymentTotal.html b/apidocs/com/bitpay/sdk/model/Invoice/PaymentTotal.html
index 3cd0a7db..49b982ab 100644
--- a/apidocs/com/bitpay/sdk/model/Invoice/PaymentTotal.html
+++ b/apidocs/com/bitpay/sdk/model/Invoice/PaymentTotal.html
@@ -2,10 +2,10 @@
-
+
PaymentTotal
-
+
@@ -28,7 +28,7 @@
catch(err) {
}
//-->
-var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10};
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
@@ -165,63 +165,73 @@ Method Summary
-java.lang.Double
+java.math.BigDecimal
getBch ()
-java.lang.Double
+java.math.BigDecimal
getBtc ()
-java.lang.Double
+java.math.BigDecimal
getEth ()
-java.lang.Double
+java.math.BigDecimal
getGusd ()
-java.lang.Double
+java.math.BigDecimal
getPax ()
-java.lang.Double
+java.math.BigDecimal
getUsdc ()
-void
-set (java.lang.Double pax)
+java.math.BigDecimal
+getXrp ()
void
-setBch (java.lang.Double bch)
+setBch (java.math.BigDecimal bch)
void
-setBtc (java.lang.Double btc)
+setBtc (java.math.BigDecimal btc)
void
-setEth (java.lang.Double eth)
+setEth (java.math.BigDecimal eth)
void
-setPax (java.lang.Double gusd)
+setGusd (java.math.BigDecimal gusd)
void
-setUsdc (java.lang.Double usdc)
+setPax (java.math.BigDecimal pax)
+
+
+
+void
+setUsdc (java.math.BigDecimal usdc)
+
+
+
+void
+setXrp (java.math.BigDecimal xrp)
@@ -276,16 +286,16 @@ Method Detail
-
+
@@ -294,16 +304,16 @@ setBtc
-
+
@@ -312,16 +322,16 @@ setBch
-
+
@@ -330,16 +340,16 @@ setEth
-
+
@@ -348,16 +358,16 @@ setUsdc
-
+
@@ -366,16 +376,34 @@ setPax
+
+
+
+
+
+
+
+
-
+
diff --git a/apidocs/com/bitpay/sdk/model/Invoice/Refund.html b/apidocs/com/bitpay/sdk/model/Invoice/Refund.html
index 6c21594d..8b69ded1 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 0f9686e7..c7fa03bf 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 fd210b15..a3a1b429 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 6b286947..682fdfcf 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 58367e96..e140744d 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 ae9e5fd1..ea94c0f5 100644
--- a/apidocs/com/bitpay/sdk/model/Invoice/SupportedTransactionCurrencies.html
+++ b/apidocs/com/bitpay/sdk/model/Invoice/SupportedTransactionCurrencies.html
@@ -2,10 +2,10 @@
-
+
SupportedTransactionCurrencies
-
+
@@ -28,7 +28,7 @@
catch(err) {
}
//-->
-var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10};
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
@@ -195,8 +195,8 @@ Method Summary
-void
-set (SupportedTransactionCurrency pax)
+SupportedTransactionCurrency
+getXrp ()
@@ -216,14 +216,24 @@ Method Summary
void
-setPax (SupportedTransactionCurrency gusd)
+setGusd (SupportedTransactionCurrency gusd)
void
+setPax (SupportedTransactionCurrency pax)
+
+
+
+void
setUsdc (SupportedTransactionCurrency usdc)
+
+void
+setXrp (SupportedTransactionCurrency xrp)
+
+
@@ -351,13 +361,13 @@ getGusd
public SupportedTransactionCurrency getGusd()
-
+
@@ -369,13 +379,31 @@ getPax
public SupportedTransactionCurrency getPax()
-
+
+
+
+
+
+
+
+
+
diff --git a/apidocs/com/bitpay/sdk/model/Invoice/SupportedTransactionCurrency.html b/apidocs/com/bitpay/sdk/model/Invoice/SupportedTransactionCurrency.html
index cbed930e..9815b811 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 6e582de3..6d84b2ac 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 81770161..d8f41baa 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 6aceb507..973557d6 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 db5b095a..5c850345 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 1d3aa567..0842c2c2 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 ddfa6ef9..931312be 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 b5a83a69..71688174 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 6feab550..cd514c1f 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 ac90034c..595e7bfd 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 d5931744..59ba17d1 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 5e0a5c5d..113b767a 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/PayoutStatus.html b/apidocs/com/bitpay/sdk/model/Payout/PayoutStatus.html
index da719924..418d520d 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/package-summary.html b/apidocs/com/bitpay/sdk/model/Payout/package-summary.html
index 3c27101b..5a653d08 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 5a76ee51..faebb64e 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 de6f95ab..1e36f90c 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 5d106339..d09d9e46 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 79948506..e19b7496 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 ec486efe..8dc54bdb 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 2bfa176c..91202728 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 57b2690d..d61ff382 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 7b456dfd..0a89b5e5 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 98f6ff74..39641429 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 a05b0b4e..009ecd92 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 7ad99e6c..30e92ade 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 251a6824..61b6ee1f 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 939c2ed1..8ef40d03 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 c966941c..fc70ce6d 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 948ae63c..619914ad 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 d1ce5320..206e14aa 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 a8e8c337..0ae8f832 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 c30d23b6..70971efc 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 90864305..f793966c 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 ced5c9b3..f1d69a94 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 6644762e..dad9da88 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 dfb3c0fd..d5da328f 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 768c956d..9c09d571 100644
--- a/apidocs/com/bitpay/sdk/util/KeyUtils.html
+++ b/apidocs/com/bitpay/sdk/util/KeyUtils.html
@@ -2,10 +2,10 @@
-
+
KeyUtils
-
+
@@ -28,7 +28,7 @@
catch(err) {
}
//-->
-var data = {"i0":9,"i1":9,"i2":9,"i3":9,"i4":9,"i5":9,"i6":9,"i7":9,"i8":9,"i9":9,"i10":9,"i11":9,"i12":9};
+var data = {"i0":9,"i1":9,"i2":9,"i3":9,"i4":9,"i5":9,"i6":9,"i7":9,"i8":9,"i9":9,"i10":9,"i11":9,"i12":9,"i13":9,"i14":9};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
@@ -210,22 +210,32 @@ Method Summary
+static java.lang.String
+loadEcKeyAsHex (org.bitcoinj.core.ECKey ecKey)
+
+
+
static boolean
privateKeyExists (java.lang.String privateKeyFile)
-
+
static void
saveEcKey (org.bitcoinj.core.ECKey ecKey)
-
+
static void
saveEcKey (org.bitcoinj.core.ECKey ecKey,
java.net.URI privateKey)
-
+
+static void
+saveEcKeyAsHex (org.bitcoinj.core.ECKey ecKey)
+
+
+
static java.lang.String
sign (org.bitcoinj.core.ECKey key,
java.lang.String input)
@@ -376,6 +386,34 @@ saveEcKey
+
+
+
+
+
+
+
+
diff --git a/apidocs/com/bitpay/sdk/util/PayoutInstructionBtcSummaryDeserializer.html b/apidocs/com/bitpay/sdk/util/PayoutInstructionBtcSummaryDeserializer.html
index cfe5c80d..d3ab012b 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 9c0810e4..6da88ca1 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 c26dc19f..eb31bb97 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 548b00e9..fe34616e 100644
--- a/apidocs/constant-values.html
+++ b/apidocs/constant-values.html
@@ -2,10 +2,10 @@
-
+
Constant Field Values
-
+
@@ -112,7 +112,7 @@ com.bitpay.*
public static final java.lang.String
BitpayPluginInfo
-"BitPay_Java_Client_v4.2.1912"
+"BitPay_Java_Client_v4.3.2001"
@@ -1335,41 +1335,48 @@ com.bitpay.*
"XPF"
+
+
+ public static final java.lang.String
+XRP
+"XRP"
+
+
public static final java.lang.String
XSU
"XSU"
-
+
public static final java.lang.String
XUA
"XUA"
-
+
public static final java.lang.String
YER
"YER"
-
+
public static final java.lang.String
ZAR
"ZAR"
-
+
public static final java.lang.String
ZMW
"ZMW"
-
+
public static final java.lang.String
diff --git a/apidocs/help-doc.html b/apidocs/help-doc.html
index 0ccd54fc..f840f936 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 9520b9f2..414e293d 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 e52be5ea..69e070f3 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 95aa912e..5665b315 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 8c2c78a8..dd0b063d 100644
--- a/apidocs/index-files/index-12.html
+++ b/apidocs/index-files/index-12.html
@@ -2,10 +2,10 @@
-
+
L-Index
-
+
@@ -110,6 +110,8 @@ L
loadEcKey(URI) - Static method in class com.bitpay.sdk.util.KeyUtils
+loadEcKeyAsHex(ECKey) - Static method in class com.bitpay.sdk.util.KeyUtils
+
LRD - Static variable in class com.bitpay.sdk.model.Currency
LSL - Static variable in class com.bitpay.sdk.model.Currency
diff --git a/apidocs/index-files/index-13.html b/apidocs/index-files/index-13.html
index 4c70a435..c4b4f5b0 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 6af5710a..f668d44b 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 7323bf7e..d548cd8c 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 898cb22b..1d0c5ecb 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 54942ea1..77c94ee7 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 669d64b6..4d805a89 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 141b7076..f1de7a98 100644
--- a/apidocs/index-files/index-19.html
+++ b/apidocs/index-files/index-19.html
@@ -2,10 +2,10 @@
-
+
S-Index
-
+
@@ -86,6 +86,8 @@ S
saveEcKey(ECKey, URI) - Static method in class com.bitpay.sdk.util.KeyUtils
+saveEcKeyAsHex(ECKey) - Static method in class com.bitpay.sdk.util.KeyUtils
+
SBD - Static variable in class com.bitpay.sdk.model.Currency
SCR - Static variable in class com.bitpay.sdk.model.Currency
@@ -98,14 +100,6 @@ S
serialize(Long, JsonGenerator, SerializerProvider) - Method in class com.bitpay.sdk.util.DateSerializer
-set(MinerFeesItem) - Method in class com.bitpay.sdk.model.Invoice.MinerFees
-
-set(PaymentCode) - Method in class com.bitpay.sdk.model.Invoice.PaymentCodes
-
-set(SupportedTransactionCurrency) - Method in class com.bitpay.sdk.model.Invoice.SupportedTransactionCurrencies
-
-set(Double) - Method in class com.bitpay.sdk.model.Invoice.PaymentTotal
-
setAcceptanceWindow(long) - Method in class com.bitpay.sdk.model.Invoice.Invoice
setAccount(String) - Method in class com.bitpay.sdk.model.Payout.PayoutBatch
@@ -188,7 +182,7 @@ S
setBch(SupportedTransactionCurrency) - Method in class com.bitpay.sdk.model.Invoice.SupportedTransactionCurrencies
-setBch(Double) - Method in class com.bitpay.sdk.model.Invoice.PaymentTotal
+setBch(BigDecimal) - Method in class com.bitpay.sdk.model.Invoice.PaymentTotal
setBillId(String) - Method in class com.bitpay.sdk.model.Invoice.Invoice
@@ -204,10 +198,10 @@ S
setBtc(PayoutInstructionBtcSummary) - Method in class com.bitpay.sdk.model.Payout.PayoutInstruction
-setBtc(Double) - Method in class com.bitpay.sdk.model.Invoice.PaymentTotal
-
setBtc(Double) - Method in class com.bitpay.sdk.model.Payout.PayoutBatch
+setBtc(BigDecimal) - Method in class com.bitpay.sdk.model.Invoice.PaymentTotal
+
setBtcPrice(Float) - Method in class com.bitpay.sdk.model.Settlement.InvoiceData
setBuyer(Buyer) - Method in class com.bitpay.sdk.model.Invoice.Invoice
@@ -324,7 +318,7 @@ S
setEth(SupportedTransactionCurrency) - Method in class com.bitpay.sdk.model.Invoice.SupportedTransactionCurrencies
-setEth(Double) - Method in class com.bitpay.sdk.model.Invoice.PaymentTotal
+setEth(BigDecimal) - Method in class com.bitpay.sdk.model.Invoice.PaymentTotal
setExceptionStatus(String) - Method in class com.bitpay.sdk.model.Invoice.Invoice
@@ -348,6 +342,14 @@ S
setGuid(String) - Method in class com.bitpay.sdk.model.Token
+setGusd(MinerFeesItem) - Method in class com.bitpay.sdk.model.Invoice.MinerFees
+
+setGusd(PaymentCode) - Method in class com.bitpay.sdk.model.Invoice.PaymentCodes
+
+setGusd(SupportedTransactionCurrency) - Method in class com.bitpay.sdk.model.Invoice.SupportedTransactionCurrencies
+
+setGusd(BigDecimal) - Method in class com.bitpay.sdk.model.Invoice.PaymentTotal
+
setIban(String) - Method in class com.bitpay.sdk.model.Settlement.PayoutInfo
setId(String) - Method in class com.bitpay.sdk.model.Bill.Bill
@@ -466,7 +468,7 @@ S
setPax(SupportedTransactionCurrency) - Method in class com.bitpay.sdk.model.Invoice.SupportedTransactionCurrencies
-setPax(Double) - Method in class com.bitpay.sdk.model.Invoice.PaymentTotal
+setPax(BigDecimal) - Method in class com.bitpay.sdk.model.Invoice.PaymentTotal
setPaymentCodes(PaymentCodes) - Method in class com.bitpay.sdk.model.Invoice.Invoice
@@ -556,6 +558,8 @@ S
setResource(String) - Method in class com.bitpay.sdk.model.Token
+setRip681(String) - Method in class com.bitpay.sdk.model.Invoice.PaymentCode
+
setRouting(String) - Method in class com.bitpay.sdk.model.Settlement.PayoutInfo
setSatoshisPerByte(Double) - Method in class com.bitpay.sdk.model.Invoice.MinerFeesItem
@@ -680,7 +684,7 @@ S
setUsdc(SupportedTransactionCurrency) - Method in class com.bitpay.sdk.model.Invoice.SupportedTransactionCurrencies
-setUsdc(Double) - Method in class com.bitpay.sdk.model.Invoice.PaymentTotal
+setUsdc(BigDecimal) - Method in class com.bitpay.sdk.model.Invoice.PaymentTotal
setValue(Double) - Method in class com.bitpay.sdk.model.Rate.Rate
@@ -692,6 +696,14 @@ S
setWithHoldingsSum(Float) - Method in class com.bitpay.sdk.model.Settlement.Settlement
+setXrp(MinerFeesItem) - Method in class com.bitpay.sdk.model.Invoice.MinerFees
+
+setXrp(PaymentCode) - Method in class com.bitpay.sdk.model.Invoice.PaymentCodes
+
+setXrp(SupportedTransactionCurrency) - Method in class com.bitpay.sdk.model.Invoice.SupportedTransactionCurrencies
+
+setXrp(BigDecimal) - Method in class com.bitpay.sdk.model.Invoice.PaymentTotal
+
setZip(String) - Method in class com.bitpay.sdk.model.Bill.Bill
setZip(String) - Method in class com.bitpay.sdk.model.Ledger.Buyer
diff --git a/apidocs/index-files/index-2.html b/apidocs/index-files/index-2.html
index 3605c5a6..839849fc 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 88963e05..dd0378ee 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 8e58ad86..10ee220c 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 0937e62e..6d666438 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 e81581c6..95ecc3f3 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 dc2533b1..36b33c92 100644
--- a/apidocs/index-files/index-24.html
+++ b/apidocs/index-files/index-24.html
@@ -2,10 +2,10 @@
-
+
X-Index
-
+
@@ -90,6 +90,8 @@ X
XPF - Static variable in class com.bitpay.sdk.model.Currency
+XRP - Static variable in class com.bitpay.sdk.model.Currency
+
XSU - Static variable in class com.bitpay.sdk.model.Currency
XUA - Static variable in class com.bitpay.sdk.model.Currency
diff --git a/apidocs/index-files/index-25.html b/apidocs/index-files/index-25.html
index c98856ec..e7ddbcf5 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 ca246e00..22530aa4 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
new file mode 100644
index 00000000..669907f3
--- /dev/null
+++ b/apidocs/index-files/index-27.html
@@ -0,0 +1,114 @@
+
+
+
+
+
+_-Index
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
diff --git a/apidocs/index-files/index-3.html b/apidocs/index-files/index-3.html
index 0abe56c8..cc00027c 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 316a0549..d968c78c 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 257838b9..60b7ee27 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 80f46a4a..c329cbf9 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 84716977..9928716c 100644
--- a/apidocs/index-files/index-7.html
+++ b/apidocs/index-files/index-7.html
@@ -2,10 +2,10 @@
-
+
G-Index
-
+
@@ -628,6 +628,8 @@ G
getResource() - Method in class com.bitpay.sdk.model.Token
+getRip681() - Method in class com.bitpay.sdk.model.Invoice.PaymentCode
+
getRouting() - Method in class com.bitpay.sdk.model.Settlement.PayoutInfo
getSatoshisPerByte() - Method in class com.bitpay.sdk.model.Invoice.MinerFeesItem
@@ -750,6 +752,14 @@ G
getWithHoldingsSum() - Method in class com.bitpay.sdk.model.Settlement.Settlement
+getXrp() - Method in class com.bitpay.sdk.model.Invoice.MinerFees
+
+getXrp() - Method in class com.bitpay.sdk.model.Invoice.PaymentCodes
+
+getXrp() - Method in class com.bitpay.sdk.model.Invoice.PaymentTotal
+
+getXrp() - Method in class com.bitpay.sdk.model.Invoice.SupportedTransactionCurrencies
+
getZip() - Method in class com.bitpay.sdk.model.Bill.Bill
getZip() - Method in class com.bitpay.sdk.model.Ledger.Buyer
diff --git a/apidocs/index-files/index-8.html b/apidocs/index-files/index-8.html
index 1c368227..bffa17fd 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 543039c7..bcfb3e8a 100644
--- a/apidocs/index-files/index-9.html
+++ b/apidocs/index-files/index-9.html
@@ -2,10 +2,10 @@
-
+
I-Index
-
+
@@ -140,10 +140,6 @@ I
IRR - Static variable in class com.bitpay.sdk.model.Currency
-isFullyPaid(Invoice) - Method in class com.bitpay.sdk.Client
-
-Checks whether a BitPay invoice has been paid in full.
-
ISK - Static variable in class com.bitpay.sdk.model.Currency
isValid(String) - Static method in class com.bitpay.sdk.model.Currency
diff --git a/apidocs/index.html b/apidocs/index.html
index 393c3d5e..1139cce0 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 3572fdae..a78c4c94 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","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":"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":"BitPayTest","l":"BitPayTest()","url":"%3Cinit%3E()"},{"p":"test","c":"BitPayTest2","l":"BitPayTest2()","url":"%3Cinit%3E()"},{"p":"test","c":"BitPayTest3","l":"BitPayTest3()","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.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.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, 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)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"Client(String, String, Env.Tokens)","url":"%3Cinit%3E(java.lang.String,java.lang.String,com.bitpay.sdk.Env.Tokens)"},{"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.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.model","c":"Currency","l":"CUC"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"CUP"},{"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.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","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":"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","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.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.Payout","c":"PayoutInstruction","l":"getAddress()"},{"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":"InvoiceTransaction","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.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":"PaymentCodes","l":"getBch()"},{"p":"com.bitpay.sdk.model.Invoice","c":"PaymentTotal","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":"PaymentCode","l":"getBip72b()"},{"p":"com.bitpay.sdk.model.Invoice","c":"PaymentCode","l":"getBip73()"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFees","l":"getBtc()"},{"p":"com.bitpay.sdk.model.Invoice","c":"PaymentCodes","l":"getBtc()"},{"p":"com.bitpay.sdk.model.Invoice","c":"PaymentTotal","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":"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","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.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.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.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.Bill","c":"Bill","l":"getDueDate()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getEffectiveDate()"},{"p":"com.bitpay.sdk.model.Invoice","c":"PaymentCode","l":"getEip681()"},{"p":"com.bitpay.sdk.model.Invoice","c":"PaymentCode","l":"getEip681b()"},{"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.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":"PaymentCodes","l":"getEth()"},{"p":"com.bitpay.sdk.model.Invoice","c":"PaymentTotal","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":"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.Invoice","c":"MinerFees","l":"getGusd()"},{"p":"com.bitpay.sdk.model.Invoice","c":"PaymentCodes","l":"getGusd()"},{"p":"com.bitpay.sdk.model.Invoice","c":"PaymentTotal","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.Settlement","c":"Settlement","l":"getId()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getInstructions()"},{"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":"getItemCode()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getItemDesc()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getItems()"},{"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","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","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.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":"PaymentCodes","l":"getPax()"},{"p":"com.bitpay.sdk.model.Invoice","c":"PaymentTotal","l":"getPax()"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrencies","l":"getPax()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getPaymentCodes()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getPaymentCurrencies()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getPaymentDisplaySubTotals()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getPaymentDisplayTotals()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getPaymentSubtotals()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getPaymentTotals()"},{"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.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.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.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.Invoice","c":"Invoice","l":"getRedirectURL()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","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.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":"Invoice","l":"getRefundInfo()"},{"p":"com.bitpay.sdk","c":"Client","l":"getRefunds(Invoice)","url":"getRefunds(com.bitpay.sdk.model.Invoice.Invoice)"},{"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":"InvoiceBuyerProvidedInfo","l":"getSelectedTransactionCurrency()"},{"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.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.Settlement","c":"Settlement","l":"getStatus()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getSupportedTransactionCurrencies()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","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.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":"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.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":"PaymentCodes","l":"getUsdc()"},{"p":"com.bitpay.sdk.model.Invoice","c":"PaymentTotal","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.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.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.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":"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.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","c":"Currency","l":"IQD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"IRR"},{"p":"com.bitpay.sdk","c":"Client","l":"isFullyPaid(Invoice)","url":"isFullyPaid(com.bitpay.sdk.model.Invoice.Invoice)"},{"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.model","c":"Currency","l":"LRD"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"LSL"},{"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":"MethodManual2"},{"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","c":"Currency","l":"PAX"},{"p":"com.bitpay.sdk.model.Invoice","c":"PaymentCode","l":"PaymentCode()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Invoice","c":"PaymentCodes","l":"PaymentCodes()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Invoice","c":"PaymentTotal","l":"PaymentTotal()","url":"%3Cinit%3E()"},{"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, String)","url":"%3Cinit%3E(java.lang.Double,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":"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.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.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","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.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.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":"PaymentTotal","l":"set(Double)","url":"set(java.lang.Double)"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFees","l":"set(MinerFeesItem)","url":"set(com.bitpay.sdk.model.Invoice.MinerFeesItem)"},{"p":"com.bitpay.sdk.model.Invoice","c":"PaymentCodes","l":"set(PaymentCode)","url":"set(com.bitpay.sdk.model.Invoice.PaymentCode)"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrencies","l":"set(SupportedTransactionCurrency)","url":"set(com.bitpay.sdk.model.Invoice.SupportedTransactionCurrency)"},{"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.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.Payout","c":"PayoutInstruction","l":"setAddress(String)","url":"setAddress(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(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(long)"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundInfo","l":"setAmounts(Hashtable)","url":"setAmounts(java.util.Hashtable)"},{"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":"PaymentTotal","l":"setBch(Double)","url":"setBch(java.lang.Double)"},{"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":"PaymentCodes","l":"setBch(PaymentCode)","url":"setBch(com.bitpay.sdk.model.Invoice.PaymentCode)"},{"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":"PaymentCode","l":"setBip72b(String)","url":"setBip72b(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"PaymentCode","l":"setBip73(String)","url":"setBip73(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"PaymentTotal","l":"setBtc(Double)","url":"setBtc(java.lang.Double)"},{"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.Invoice","c":"PaymentCodes","l":"setBtc(PaymentCode)","url":"setBtc(com.bitpay.sdk.model.Invoice.PaymentCode)"},{"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":"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.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.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.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.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.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.Invoice","c":"PaymentCode","l":"setEip681(String)","url":"setEip681(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"PaymentCode","l":"setEip681b(String)","url":"setEip681b(java.lang.String)"},{"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.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":"PaymentTotal","l":"setEth(Double)","url":"setEth(java.lang.Double)"},{"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":"PaymentCodes","l":"setEth(PaymentCode)","url":"setEth(com.bitpay.sdk.model.Invoice.PaymentCode)"},{"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":"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.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.Settlement","c":"Settlement","l":"setId(String)","url":"setId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setInstructions(List)","url":"setInstructions(java.util.List)"},{"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":"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.Bill","c":"Bill","l":"setItems(List- )","url":"setItems(java.util.List)"},{"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.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.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","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","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":"PaymentTotal","l":"setPax(Double)","url":"setPax(java.lang.Double)"},{"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":"PaymentCodes","l":"setPax(PaymentCode)","url":"setPax(com.bitpay.sdk.model.Invoice.PaymentCode)"},{"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":"setPaymentCodes(PaymentCodes)","url":"setPaymentCodes(com.bitpay.sdk.model.Invoice.PaymentCodes)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setPaymentCurrencies(List)","url":"setPaymentCurrencies(java.util.List)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setPaymentDisplaySubTotals(PaymentTotal)","url":"setPaymentDisplaySubTotals(com.bitpay.sdk.model.Invoice.PaymentTotal)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setPaymentDisplayTotals(PaymentTotal)","url":"setPaymentDisplayTotals(com.bitpay.sdk.model.Invoice.PaymentTotal)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setPaymentSubtotals(PaymentTotal)","url":"setPaymentSubtotals(com.bitpay.sdk.model.Invoice.PaymentTotal)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setPaymentTotals(PaymentTotal)","url":"setPaymentTotals(com.bitpay.sdk.model.Invoice.PaymentTotal)"},{"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(Double)","url":"setPayoutPercentage(java.lang.Double)"},{"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.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.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.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.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(List>>)","url":"setRefundAddresses(java.util.List)"},{"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":"Invoice","l":"setRefundInfo(RefundInfo)","url":"setRefundInfo(com.bitpay.sdk.model.Invoice.RefundInfo)"},{"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(Double)","url":"setSatoshisPerByte(java.lang.Double)"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"setScale(String)","url":"setScale(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":"Invoice","l":"setShopper(Shopper)","url":"setShopper(com.bitpay.sdk.model.Invoice.Shopper)"},{"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.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.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.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(Double)","url":"setTotalFee(java.lang.Double)"},{"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":"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":"test","c":"BitPayTest","l":"setUp()"},{"p":"test","c":"BitPayTest2","l":"setUp()"},{"p":"test","c":"BitPayTest3","l":"setUp()"},{"p":"test","c":"BitPayTest","l":"setUpOneTime()"},{"p":"test","c":"BitPayTest2","l":"setUpOneTime()"},{"p":"test","c":"BitPayTest3","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":"PaymentTotal","l":"setUsdc(Double)","url":"setUsdc(java.lang.Double)"},{"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":"PaymentCodes","l":"setUsdc(PaymentCode)","url":"setUsdc(com.bitpay.sdk.model.Invoice.PaymentCode)"},{"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.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.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.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.Payout","c":"PayoutInstruction","l":"STATUS_PAID"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"STATUS_UNPAID"},{"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.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":"BitPayTest","l":"testCreateECKeyFromSeedString()"},{"p":"test","c":"BitPayTest2","l":"testCurrency()"},{"p":"test","c":"BitPayTest","l":"TestGetSettlement()"},{"p":"test","c":"BitPayTest","l":"TestGetSettlementReconciliationReport()"},{"p":"test","c":"BitPayTest","l":"TestGetSettlements()"},{"p":"test","c":"BitPayTest","l":"TestShouldCreateBillEUR()"},{"p":"test","c":"BitPayTest","l":"TestShouldCreateBillUSD()"},{"p":"test","c":"BitPayTest","l":"testShouldCreateGetCancelRefundRequest()"},{"p":"test","c":"BitPayTest","l":"testShouldCreateInvoice100EUR()"},{"p":"test","c":"BitPayTest","l":"testShouldCreateInvoice100USD()"},{"p":"test","c":"BitPayTest","l":"testShouldCreateInvoiceBCH()"},{"p":"test","c":"BitPayTest","l":"testShouldCreateInvoiceBTC()"},{"p":"test","c":"BitPayTest","l":"testShouldCreateInvoiceETH()"},{"p":"test","c":"BitPayTest","l":"testShouldCreateInvoiceOneTenthBTC()"},{"p":"test","c":"BitPayTest","l":"testShouldCreateInvoiceWithAdditionalParams()"},{"p":"test","c":"BitPayTest","l":"TestShouldDeliverBill()"},{"p":"test","c":"BitPayTest","l":"TestShouldGetAndUpdateBill()"},{"p":"test","c":"BitPayTest","l":"TestShouldGetBill()"},{"p":"test","c":"BitPayTest","l":"TestShouldGetBills()"},{"p":"test","c":"BitPayTest","l":"TestShouldGetBillsByStatus()"},{"p":"test","c":"BitPayTest","l":"TestShouldGetBillStatus()"},{"p":"test","c":"BitPayTest","l":"TestShouldGetBillUrl()"},{"p":"test","c":"BitPayTest","l":"testShouldGetCNYExchangeRate()"},{"p":"test","c":"BitPayTest","l":"testShouldGetEURExchangeRate()"},{"p":"test","c":"BitPayTest","l":"testShouldGetExchangeRates()"},{"p":"test","c":"BitPayTest","l":"testShouldGetInvoice()"},{"p":"test","c":"BitPayTest","l":"testShouldGetInvoiceId()"},{"p":"test","c":"BitPayTest2","l":"testShouldGetInvoiceId()"},{"p":"test","c":"BitPayTest","l":"testShouldGetInvoices()"},{"p":"test","c":"BitPayTest","l":"testShouldGetInvoiceStatus()"},{"p":"test","c":"BitPayTest","l":"testShouldGetInvoiceURL()"},{"p":"test","c":"BitPayTest","l":"testShouldGetLedgerBtc()"},{"p":"test","c":"BitPayTest","l":"testShouldGetLedgers()"},{"p":"test","c":"BitPayTest","l":"testShouldGetLedgerUsd()"},{"p":"test","c":"BitPayTest3","l":"testShouldGetPayoutBatches()"},{"p":"test","c":"BitPayTest3","l":"testShouldGetPayoutBatchesByStatus()"},{"p":"test","c":"BitPayTest3","l":"testShouldSubmitGetAndDeletePayoutBatch()"},{"p":"test","c":"BitPayTest3","l":"testShouldSubmitPayoutBatch()"},{"p":"test","c":"BitPayTest","l":"testShouldUpdateExchangeRates()"},{"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.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.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","c":"Currency","l":"VND"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"VUV"},{"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":"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","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":"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":"BitPayTest","l":"BitPayTest()","url":"%3Cinit%3E()"},{"p":"test","c":"BitPayTest2","l":"BitPayTest2()","url":"%3Cinit%3E()"},{"p":"test","c":"BitPayTest3","l":"BitPayTest3()","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.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.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, 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)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.bitpay.sdk","c":"Client","l":"Client(String, String, Env.Tokens)","url":"%3Cinit%3E(java.lang.String,java.lang.String,com.bitpay.sdk.Env.Tokens)"},{"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.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.model","c":"Currency","l":"CUC"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"CUP"},{"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.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","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":"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","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.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.Payout","c":"PayoutInstruction","l":"getAddress()"},{"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":"InvoiceTransaction","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.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":"PaymentCodes","l":"getBch()"},{"p":"com.bitpay.sdk.model.Invoice","c":"PaymentTotal","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":"PaymentCode","l":"getBip72b()"},{"p":"com.bitpay.sdk.model.Invoice","c":"PaymentCode","l":"getBip73()"},{"p":"com.bitpay.sdk.model.Invoice","c":"MinerFees","l":"getBtc()"},{"p":"com.bitpay.sdk.model.Invoice","c":"PaymentCodes","l":"getBtc()"},{"p":"com.bitpay.sdk.model.Invoice","c":"PaymentTotal","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":"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","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.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.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.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.Bill","c":"Bill","l":"getDueDate()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getEffectiveDate()"},{"p":"com.bitpay.sdk.model.Invoice","c":"PaymentCode","l":"getEip681()"},{"p":"com.bitpay.sdk.model.Invoice","c":"PaymentCode","l":"getEip681b()"},{"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.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":"PaymentCodes","l":"getEth()"},{"p":"com.bitpay.sdk.model.Invoice","c":"PaymentTotal","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":"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.Invoice","c":"MinerFees","l":"getGusd()"},{"p":"com.bitpay.sdk.model.Invoice","c":"PaymentCodes","l":"getGusd()"},{"p":"com.bitpay.sdk.model.Invoice","c":"PaymentTotal","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.Settlement","c":"Settlement","l":"getId()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"getInstructions()"},{"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":"getItemCode()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getItemDesc()"},{"p":"com.bitpay.sdk.model.Bill","c":"Bill","l":"getItems()"},{"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","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","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.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":"PaymentCodes","l":"getPax()"},{"p":"com.bitpay.sdk.model.Invoice","c":"PaymentTotal","l":"getPax()"},{"p":"com.bitpay.sdk.model.Invoice","c":"SupportedTransactionCurrencies","l":"getPax()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getPaymentCodes()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getPaymentCurrencies()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getPaymentDisplaySubTotals()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getPaymentDisplayTotals()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getPaymentSubtotals()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getPaymentTotals()"},{"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.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.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.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.Invoice","c":"Invoice","l":"getRedirectURL()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","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.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":"Invoice","l":"getRefundInfo()"},{"p":"com.bitpay.sdk","c":"Client","l":"getRefunds(Invoice)","url":"getRefunds(com.bitpay.sdk.model.Invoice.Invoice)"},{"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.Invoice","c":"PaymentCode","l":"getRip681()"},{"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":"InvoiceBuyerProvidedInfo","l":"getSelectedTransactionCurrency()"},{"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.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.Settlement","c":"Settlement","l":"getStatus()"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"getSupportedTransactionCurrencies()"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","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.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":"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.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":"PaymentCodes","l":"getUsdc()"},{"p":"com.bitpay.sdk.model.Invoice","c":"PaymentTotal","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.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":"PaymentCodes","l":"getXrp()"},{"p":"com.bitpay.sdk.model.Invoice","c":"PaymentTotal","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.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":"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.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","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":"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":"MethodManual2"},{"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","c":"Currency","l":"PAX"},{"p":"com.bitpay.sdk.model.Invoice","c":"PaymentCode","l":"PaymentCode()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Invoice","c":"PaymentCodes","l":"PaymentCodes()","url":"%3Cinit%3E()"},{"p":"com.bitpay.sdk.model.Invoice","c":"PaymentTotal","l":"PaymentTotal()","url":"%3Cinit%3E()"},{"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, String)","url":"%3Cinit%3E(java.lang.Double,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":"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.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.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","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.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.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.Payout","c":"PayoutInstruction","l":"setAddress(String)","url":"setAddress(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(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(long)"},{"p":"com.bitpay.sdk.model.Invoice","c":"RefundInfo","l":"setAmounts(Hashtable)","url":"setAmounts(java.util.Hashtable)"},{"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":"PaymentTotal","l":"setBch(BigDecimal)","url":"setBch(java.math.BigDecimal)"},{"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":"PaymentCodes","l":"setBch(PaymentCode)","url":"setBch(com.bitpay.sdk.model.Invoice.PaymentCode)"},{"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":"PaymentCode","l":"setBip72b(String)","url":"setBip72b(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"PaymentCode","l":"setBip73(String)","url":"setBip73(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"PaymentTotal","l":"setBtc(BigDecimal)","url":"setBtc(java.math.BigDecimal)"},{"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.Invoice","c":"PaymentCodes","l":"setBtc(PaymentCode)","url":"setBtc(com.bitpay.sdk.model.Invoice.PaymentCode)"},{"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":"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.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.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.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.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.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.Invoice","c":"PaymentCode","l":"setEip681(String)","url":"setEip681(java.lang.String)"},{"p":"com.bitpay.sdk.model.Invoice","c":"PaymentCode","l":"setEip681b(String)","url":"setEip681b(java.lang.String)"},{"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.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":"PaymentTotal","l":"setEth(BigDecimal)","url":"setEth(java.math.BigDecimal)"},{"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":"PaymentCodes","l":"setEth(PaymentCode)","url":"setEth(com.bitpay.sdk.model.Invoice.PaymentCode)"},{"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":"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.Invoice","c":"PaymentTotal","l":"setGusd(BigDecimal)","url":"setGusd(java.math.BigDecimal)"},{"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":"PaymentCodes","l":"setGusd(PaymentCode)","url":"setGusd(com.bitpay.sdk.model.Invoice.PaymentCode)"},{"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.Settlement","c":"Settlement","l":"setId(String)","url":"setId(java.lang.String)"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutBatch","l":"setInstructions(List)","url":"setInstructions(java.util.List)"},{"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":"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.Bill","c":"Bill","l":"setItems(List- )","url":"setItems(java.util.List)"},{"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.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.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","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","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":"PaymentTotal","l":"setPax(BigDecimal)","url":"setPax(java.math.BigDecimal)"},{"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":"PaymentCodes","l":"setPax(PaymentCode)","url":"setPax(com.bitpay.sdk.model.Invoice.PaymentCode)"},{"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":"setPaymentCodes(PaymentCodes)","url":"setPaymentCodes(com.bitpay.sdk.model.Invoice.PaymentCodes)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setPaymentCurrencies(List)","url":"setPaymentCurrencies(java.util.List)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setPaymentDisplaySubTotals(PaymentTotal)","url":"setPaymentDisplaySubTotals(com.bitpay.sdk.model.Invoice.PaymentTotal)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setPaymentDisplayTotals(PaymentTotal)","url":"setPaymentDisplayTotals(com.bitpay.sdk.model.Invoice.PaymentTotal)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setPaymentSubtotals(PaymentTotal)","url":"setPaymentSubtotals(com.bitpay.sdk.model.Invoice.PaymentTotal)"},{"p":"com.bitpay.sdk.model.Invoice","c":"Invoice","l":"setPaymentTotals(PaymentTotal)","url":"setPaymentTotals(com.bitpay.sdk.model.Invoice.PaymentTotal)"},{"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(Double)","url":"setPayoutPercentage(java.lang.Double)"},{"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.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.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.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.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(List>>)","url":"setRefundAddresses(java.util.List)"},{"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":"Invoice","l":"setRefundInfo(RefundInfo)","url":"setRefundInfo(com.bitpay.sdk.model.Invoice.RefundInfo)"},{"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.Invoice","c":"PaymentCode","l":"setRip681(String)","url":"setRip681(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(Double)","url":"setSatoshisPerByte(java.lang.Double)"},{"p":"com.bitpay.sdk.model.Ledger","c":"LedgerEntry","l":"setScale(String)","url":"setScale(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":"Invoice","l":"setShopper(Shopper)","url":"setShopper(com.bitpay.sdk.model.Invoice.Shopper)"},{"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.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.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.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(Double)","url":"setTotalFee(java.lang.Double)"},{"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":"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":"test","c":"BitPayTest","l":"setUp()"},{"p":"test","c":"BitPayTest2","l":"setUp()"},{"p":"test","c":"BitPayTest3","l":"setUp()"},{"p":"test","c":"BitPayTest","l":"setUpOneTime()"},{"p":"test","c":"BitPayTest2","l":"setUpOneTime()"},{"p":"test","c":"BitPayTest3","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":"PaymentTotal","l":"setUsdc(BigDecimal)","url":"setUsdc(java.math.BigDecimal)"},{"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":"PaymentCodes","l":"setUsdc(PaymentCode)","url":"setUsdc(com.bitpay.sdk.model.Invoice.PaymentCode)"},{"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.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":"PaymentTotal","l":"setXrp(BigDecimal)","url":"setXrp(java.math.BigDecimal)"},{"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":"PaymentCodes","l":"setXrp(PaymentCode)","url":"setXrp(com.bitpay.sdk.model.Invoice.PaymentCode)"},{"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.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.Payout","c":"PayoutInstruction","l":"STATUS_PAID"},{"p":"com.bitpay.sdk.model.Payout","c":"PayoutInstruction","l":"STATUS_UNPAID"},{"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.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":"BitPayTest","l":"testCreateECKeyFromSeedString()"},{"p":"test","c":"BitPayTest2","l":"testCurrency()"},{"p":"test","c":"BitPayTest","l":"TestGetSettlement()"},{"p":"test","c":"BitPayTest","l":"TestGetSettlementReconciliationReport()"},{"p":"test","c":"BitPayTest","l":"TestGetSettlements()"},{"p":"test","c":"BitPayTest","l":"TestShouldCreateBillEUR()"},{"p":"test","c":"BitPayTest","l":"TestShouldCreateBillUSD()"},{"p":"test","c":"BitPayTest","l":"testShouldCreateGetCancelRefundRequest()"},{"p":"test","c":"BitPayTest","l":"testShouldCreateInvoice100EUR()"},{"p":"test","c":"BitPayTest","l":"testShouldCreateInvoice100USD()"},{"p":"test","c":"BitPayTest","l":"testShouldCreateInvoiceBCH()"},{"p":"test","c":"BitPayTest","l":"testShouldCreateInvoiceBTC()"},{"p":"test","c":"BitPayTest","l":"testShouldCreateInvoiceETH()"},{"p":"test","c":"BitPayTest","l":"testShouldCreateInvoiceOneTenthBTC()"},{"p":"test","c":"BitPayTest","l":"testShouldCreateInvoiceWithAdditionalParams()"},{"p":"test","c":"BitPayTest","l":"TestShouldDeliverBill()"},{"p":"test","c":"BitPayTest","l":"TestShouldGetAndUpdateBill()"},{"p":"test","c":"BitPayTest","l":"TestShouldGetBill()"},{"p":"test","c":"BitPayTest","l":"TestShouldGetBills()"},{"p":"test","c":"BitPayTest","l":"TestShouldGetBillsByStatus()"},{"p":"test","c":"BitPayTest","l":"TestShouldGetBillStatus()"},{"p":"test","c":"BitPayTest","l":"TestShouldGetBillUrl()"},{"p":"test","c":"BitPayTest","l":"testShouldGetCNYExchangeRate()"},{"p":"test","c":"BitPayTest","l":"testShouldGetEURExchangeRate()"},{"p":"test","c":"BitPayTest","l":"testShouldGetExchangeRates()"},{"p":"test","c":"BitPayTest","l":"testShouldGetInvoice()"},{"p":"test","c":"BitPayTest","l":"testShouldGetInvoiceId()"},{"p":"test","c":"BitPayTest2","l":"testShouldGetInvoiceId()"},{"p":"test","c":"BitPayTest","l":"testShouldGetInvoices()"},{"p":"test","c":"BitPayTest","l":"testShouldGetInvoiceStatus()"},{"p":"test","c":"BitPayTest","l":"testShouldGetInvoiceURL()"},{"p":"test","c":"BitPayTest","l":"testShouldGetLedgerBtc()"},{"p":"test","c":"BitPayTest","l":"testShouldGetLedgers()"},{"p":"test","c":"BitPayTest","l":"testShouldGetLedgerUsd()"},{"p":"test","c":"BitPayTest3","l":"testShouldGetPayoutBatches()"},{"p":"test","c":"BitPayTest3","l":"testShouldGetPayoutBatchesByStatus()"},{"p":"test","c":"BitPayTest3","l":"testShouldSubmitGetAndDeletePayoutBatch()"},{"p":"test","c":"BitPayTest3","l":"testShouldSubmitPayoutBatch()"},{"p":"test","c":"BitPayTest","l":"testShouldUpdateExchangeRates()"},{"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.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.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","c":"Currency","l":"VND"},{"p":"com.bitpay.sdk.model","c":"Currency","l":"VUV"},{"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 2500072b..f09c4928 100644
Binary files a/apidocs/member-search-index.zip and b/apidocs/member-search-index.zip differ
diff --git a/apidocs/overview-summary.html b/apidocs/overview-summary.html
index f2c59d1d..3d73ebad 100644
--- a/apidocs/overview-summary.html
+++ b/apidocs/overview-summary.html
@@ -2,10 +2,10 @@
-
+
Generated Documentation (Untitled)
-
+
diff --git a/apidocs/overview-tree.html b/apidocs/overview-tree.html
index e4e72757..c680db34 100644
--- a/apidocs/overview-tree.html
+++ b/apidocs/overview-tree.html
@@ -2,10 +2,10 @@
-
+
Class Hierarchy
-
+
diff --git a/apidocs/package-search-index.zip b/apidocs/package-search-index.zip
index 5d905cc1..30e18909 100644
Binary files a/apidocs/package-search-index.zip and b/apidocs/package-search-index.zip differ
diff --git a/apidocs/serialized-form.html b/apidocs/serialized-form.html
index 4bbb985a..4f8806ac 100644
--- a/apidocs/serialized-form.html
+++ b/apidocs/serialized-form.html
@@ -2,10 +2,10 @@
-
+
Serialized Form
-
+
diff --git a/apidocs/test/BitPayTest.html b/apidocs/test/BitPayTest.html
index 12792fd8..5eaba00a 100644
--- a/apidocs/test/BitPayTest.html
+++ b/apidocs/test/BitPayTest.html
@@ -2,10 +2,10 @@
-
+
BitPayTest
-
+
diff --git a/apidocs/test/BitPayTest2.html b/apidocs/test/BitPayTest2.html
index 2d3bdb1f..c9836174 100644
--- a/apidocs/test/BitPayTest2.html
+++ b/apidocs/test/BitPayTest2.html
@@ -2,10 +2,10 @@
-
+
BitPayTest2
-
+
diff --git a/apidocs/test/BitPayTest3.html b/apidocs/test/BitPayTest3.html
index 3b1adc04..98e3e57b 100644
--- a/apidocs/test/BitPayTest3.html
+++ b/apidocs/test/BitPayTest3.html
@@ -2,10 +2,10 @@
-
+
BitPayTest3
-
+
diff --git a/apidocs/test/package-summary.html b/apidocs/test/package-summary.html
index 20bad626..18cf0c23 100644
--- a/apidocs/test/package-summary.html
+++ b/apidocs/test/package-summary.html
@@ -2,10 +2,10 @@
-
+
test
-
+
diff --git a/apidocs/test/package-tree.html b/apidocs/test/package-tree.html
index 67af3ec6..a78f457b 100644
--- a/apidocs/test/package-tree.html
+++ b/apidocs/test/package-tree.html
@@ -2,10 +2,10 @@
-
+
test Class Hierarchy
-
+
diff --git a/apidocs/type-search-index.zip b/apidocs/type-search-index.zip
index dea93dd7..33db99c3 100644
Binary files a/apidocs/type-search-index.zip and b/apidocs/type-search-index.zip differ
diff --git a/java-bitpay-client.iml b/java-bitpay-client.iml
index 4a874308..3c3a6c1c 100644
--- a/java-bitpay-client.iml
+++ b/java-bitpay-client.iml
@@ -5,6 +5,7 @@
+
diff --git a/pom.xml b/pom.xml
index 0f645b9d..1aa279c2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
com.bitpay
bitpay_sdk
- 4.2.1912
+ 4.3.2001
jar
BitPay
diff --git a/src/main/java/com/bitpay/sdk/Client.java b/src/main/java/com/bitpay/sdk/Client.java
index 34d7ba1c..4577d702 100644
--- a/src/main/java/com/bitpay/sdk/Client.java
+++ b/src/main/java/com/bitpay/sdk/Client.java
@@ -4,13 +4,12 @@
import com.bitpay.sdk.model.Bill.Bill;
import com.bitpay.sdk.model.Facade;
import com.bitpay.sdk.model.Invoice.Invoice;
-import com.bitpay.sdk.model.Invoice.PaymentTotal;
+import com.bitpay.sdk.model.Invoice.Refund;
import com.bitpay.sdk.model.Ledger.Ledger;
import com.bitpay.sdk.model.Ledger.LedgerEntry;
import com.bitpay.sdk.model.Payout.PayoutBatch;
import com.bitpay.sdk.model.Rate.Rate;
import com.bitpay.sdk.model.Rate.Rates;
-import com.bitpay.sdk.model.Invoice.Refund;
import com.bitpay.sdk.model.Settlement.Settlement;
import com.bitpay.sdk.model.Token;
import com.bitpay.sdk.util.BitPayLogger;
@@ -47,9 +46,9 @@
/**
* @author Antonio Buedo
- * @version 4.2.1912
+ * @version 4.3.2001
* See bitpay.com/api for more information.
- * date 13.12.2019
+ * date 30.01.2020
*/
public class Client {
@@ -72,15 +71,15 @@ public class Client {
/**
* Constructor for use if the keys and SIN are managed by this library.
*
- * @param environment Target environment. Options: Env.Test / Env.Prod
- * @param privateKeyPath Private Key file path.
- * @param tokens Env.Tokens containing the available tokens.
+ * @param environment Target environment. Options: Env.Test / Env.Prod
+ * @param privateKey The full path to the securely located private key or the HEX key value.
+ * @param tokens Env.Tokens containing the available tokens.
* @throws BitPayException BitPayException class
*/
- public Client(String environment, String privateKeyPath, Env.Tokens tokens) throws BitPayException {
+ public Client(String environment, String privateKey, Env.Tokens tokens) throws BitPayException {
try {
this._env = environment;
- this.BuildConfig(privateKeyPath, tokens);
+ this.BuildConfig(privateKey, tokens);
this.initKeys();
this.init();
} catch (JsonProcessingException e) {
@@ -476,7 +475,7 @@ public Boolean cancelRefund(String invoiceId, String refundId) throws RefundCanc
* Cancel a previously submitted refund request on a BitPay invoice.
*
* @param invoice The BitPay invoice having the associated refund to be canceled. Must have been obtained using the merchant facade.
- * @param refundId The refund id for the refund to be canceled.
+ * @param refundId The refund Id for the refund to be canceled.
* @return True if the refund was successfully canceled, false otherwise.
* @throws RefundCancellationException RefundCancellationException class
*/
@@ -509,8 +508,8 @@ public Boolean cancelRefund(Invoice invoice, String refundId) throws RefundCance
/**
* Cancel a previously submitted refund request on a BitPay invoice.
*
- * @param invoiceId The BitPay invoiceId having the associated refund to be canceled.
- * @param refund The refund id for the refund to be canceled.
+ * @param invoiceId The BitPay invoice Id having the associated refund to be canceled.
+ * @param refund The BitPay refund for the refund to be canceled.
* @return True if the refund was successfully canceled, false otherwise.
* @throws RefundCancellationException RefundCancellationException class
*/
@@ -1069,35 +1068,12 @@ public Settlement getSettlementReconciliationReport(Settlement settlement) throw
return reconciliationReport;
}
- /**
- * Checks whether a BitPay invoice has been paid in full.
- * Returns true if the amountPaid higher or equal to paymentTotals, returns false otherwise
- *
- * @param invoice A Bitpay invoice object
- * @return true if the amountPaid higher or equal to paymentTotals, returns false otherwise
- * @throws BitPayException BitPayException class
+ /* @deprecated As of release 4.3.2001, not replaced
+ * Check the Invoice Status when receiving the IPN
*/
+ @Deprecated
public boolean isFullyPaid(Invoice invoice) throws BitPayException {
- try {
- long amountPaid = invoice.getAmountPaid();
- String transactionCurrency = invoice.getTransactionCurrency();
- // first check if invoice has a transactionCurrency. If not, this means the invoice has not been paid
- if (transactionCurrency == null) {
- return false;
- }
- PaymentTotal paymentTotals = invoice.getPaymentTotals();
- if (transactionCurrency.equals("BTC")) {
- return amountPaid >= paymentTotals.getBtc();
- } else if (transactionCurrency.equals("BCH")) {
- return amountPaid >= paymentTotals.getBch();
- } else if (transactionCurrency.equals("ETH")) {
- return amountPaid >= paymentTotals.getEth();
- }
- } catch (Exception e) {
- throw new BitPayException("failed to check whether a BitPay invoice has been paid in full : " + e.getMessage());
- }
-
- return true;
+ throw new BitPayException("The isFullyPaid method has been deprecated, please base this check on the Invoice Status when receiving the IPN");
}
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
@@ -1129,11 +1105,19 @@ private void init() throws BitPayException {
* @throws URISyntaxException
*/
private void initKeys() throws Exception, URISyntaxException {
- if (KeyUtils.privateKeyExists(this._configuration.getEnvConfig(this._env).path("PrivateKeyPath").toString().replace("\"", ""))) {
- _ecKey = KeyUtils.loadEcKey();
- } else {
- _ecKey = KeyUtils.createEcKey();
- KeyUtils.saveEcKey(_ecKey);
+ if (_ecKey == null) {
+ try {
+ if (KeyUtils.privateKeyExists(this._configuration.getEnvConfig(this._env).path("PrivateKeyPath").toString().replace("\"", ""))) {
+ _ecKey = KeyUtils.loadEcKey();
+ } else {
+ String keyHex = this._configuration.getEnvConfig(this._env).path("PrivateKey").toString().replace("\"", "");
+ if (!keyHex.isEmpty()) {
+ _ecKey = KeyUtils.createEcKeyFromHexString(keyHex);
+ }
+ }
+ } catch (Exception e) {
+ throw new BitPayException("When trying to load private key. Make sure the configuration details are correct and the private key and tokens are valid : " + e.getMessage());
+ }
}
}
@@ -1425,16 +1409,29 @@ public void GetConfig() throws BitPayException {
/**
* Builds the configuration object
*
- * @param privateKeyPath The full path to the securely located private key.
- * @param tokens Env.Tokens object containing the BitPay's API tokens.
+ * @param privateKey The full path to the securely located private key.
+ * @param tokens Env.Tokens object containing the BitPay's API tokens.
* @throws BitPayException BitPayException class
*/
- public void BuildConfig(String privateKeyPath, Env.Tokens tokens) throws BitPayException {
+ public void BuildConfig(String privateKey, Env.Tokens tokens) throws BitPayException {
try {
- File privateKeyFile = new File(privateKeyPath);
+ String keyHex = "", keyFile = "";
+ File privateKeyFile = new File(privateKey);
if (!privateKeyFile.exists()) {
- throw new BitPayException("Private Key file not found");
+ try {
+ _ecKey = KeyUtils.createEcKeyFromHexString(privateKey);
+ keyHex = privateKey;
+ } catch (Exception e) {
+ throw new BitPayException("Private Key file not found");
+ }
+ } else {
+ try {
+ keyFile = privateKey;
+ } catch (Exception e) {
+ throw new BitPayException("Could not read private Key file");
+ }
}
+
Config config = new Config();
config.setEnvironment(this._env);
@@ -1442,7 +1439,9 @@ public void BuildConfig(String privateKeyPath, Env.Tokens tokens) throws BitPayE
JsonNode ApiTokens = mapper.valueToTree(tokens);
ObjectNode envConfig = mapper.createObjectNode();
- envConfig.put("PrivateKeyPath", privateKeyPath).put("ApiTokens", ApiTokens);
+ envConfig.put("PrivateKeyPath", keyFile);
+ envConfig.put("PrivateKey", keyHex);
+ envConfig.put("ApiTokens", ApiTokens);
ObjectNode envTarget = mapper.createObjectNode();
envTarget.put(this._env, envConfig);
@@ -1472,12 +1471,10 @@ private void loadCurrencies() throws BitPayException {
* Gets info for specific currency.
*
* @param currencyCode String Currency code for which the info will be retrieved.
- *
* @return Map|null
*/
- public static Map getCurrencyInfo(String currencyCode)
- {
- for(int i = 0; i < _currenciesInfo.size(); i++) {
+ public static Map getCurrencyInfo(String currencyCode) {
+ for (int i = 0; i < _currenciesInfo.size(); i++) {
Map currencyInfo = new ObjectMapper().convertValue(_currenciesInfo.get(i), Map.class);
if (currencyInfo.get("code").toString().equals(currencyCode)) {
diff --git a/src/main/java/com/bitpay/sdk/Env.java b/src/main/java/com/bitpay/sdk/Env.java
index beef6fca..e4e15bac 100644
--- a/src/main/java/com/bitpay/sdk/Env.java
+++ b/src/main/java/com/bitpay/sdk/Env.java
@@ -6,7 +6,7 @@ public class Env {
public static final String TestUrl = "https://test.bitpay.com/";
public static final String ProdUrl = "https://bitpay.com/";
public static final String BitpayApiVersion = "2.0.0";
- public static final String BitpayPluginInfo = "BitPay_Java_Client_v4.2.1912";
+ public static final String BitpayPluginInfo = "BitPay_Java_Client_v4.3.2001";
public static class Tokens {
public String pos;
diff --git a/src/main/java/com/bitpay/sdk/model/Currency.java b/src/main/java/com/bitpay/sdk/model/Currency.java
index 533ab061..4a55d59a 100644
--- a/src/main/java/com/bitpay/sdk/model/Currency.java
+++ b/src/main/java/com/bitpay/sdk/model/Currency.java
@@ -11,6 +11,7 @@ public class Currency {
public static final String USDC = "USDC";
public static final String GUSD = "GUSD";
public static final String PAX = "PAX";
+ public static final String XRP = "XRP";
// FIAT
public static final String AED = "AED";
diff --git a/src/main/java/com/bitpay/sdk/model/Invoice/MinerFees.java b/src/main/java/com/bitpay/sdk/model/Invoice/MinerFees.java
index 620106c4..7ab92a2f 100644
--- a/src/main/java/com/bitpay/sdk/model/Invoice/MinerFees.java
+++ b/src/main/java/com/bitpay/sdk/model/Invoice/MinerFees.java
@@ -13,6 +13,7 @@ public class MinerFees {
private MinerFeesItem _usdc = new MinerFeesItem();
private MinerFeesItem _gusd = new MinerFeesItem();
private MinerFeesItem _pax = new MinerFeesItem();
+ private MinerFeesItem _xrp = new MinerFeesItem();
public MinerFees() {
}
@@ -57,11 +58,17 @@ public void setEth(MinerFeesItem eth) {
public MinerFeesItem getGusd() { return _gusd; }
@JsonProperty("GUSD")
- public void setPax(MinerFeesItem gusd) { this._gusd = gusd; }
+ public void setGusd(MinerFeesItem gusd) { this._gusd = gusd; }
@JsonIgnore
public MinerFeesItem getPax() { return _pax; }
@JsonProperty("PAX")
- public void set(MinerFeesItem pax) { this._pax = pax; }
+ public void setPax(MinerFeesItem pax) { this._pax = pax; }
+
+ @JsonIgnore
+ public MinerFeesItem getXrp() { return _xrp; }
+
+ @JsonProperty("XRP")
+ public void setXrp(MinerFeesItem xrp) { this._xrp = xrp; }
}
diff --git a/src/main/java/com/bitpay/sdk/model/Invoice/PaymentCode.java b/src/main/java/com/bitpay/sdk/model/Invoice/PaymentCode.java
index 1c272449..2ea51d8e 100644
--- a/src/main/java/com/bitpay/sdk/model/Invoice/PaymentCode.java
+++ b/src/main/java/com/bitpay/sdk/model/Invoice/PaymentCode.java
@@ -11,6 +11,7 @@ public class PaymentCode {
private String _bip73;
private String _eip681;
private String _eip681b;
+ private String _rip681;
public PaymentCode() {
}
@@ -54,4 +55,14 @@ public String getEip681b() {
public void setEip681b(String eip681b) {
this._eip681b = eip681b;
}
+
+ @JsonIgnore
+ public String getRip681() {
+ return _rip681;
+ }
+
+ @JsonProperty("RIP681")
+ public void setRip681(String rip681) {
+ this._rip681 = rip681;
+ }
}
diff --git a/src/main/java/com/bitpay/sdk/model/Invoice/PaymentCodes.java b/src/main/java/com/bitpay/sdk/model/Invoice/PaymentCodes.java
index 64c2ea29..5c29f6fe 100644
--- a/src/main/java/com/bitpay/sdk/model/Invoice/PaymentCodes.java
+++ b/src/main/java/com/bitpay/sdk/model/Invoice/PaymentCodes.java
@@ -13,6 +13,7 @@ public class PaymentCodes {
private PaymentCode _usdc = new PaymentCode();
private PaymentCode _gusd = new PaymentCode();
private PaymentCode _pax = new PaymentCode();
+ private PaymentCode _xrp = new PaymentCode();
public PaymentCodes() {
}
@@ -57,11 +58,17 @@ public void setEth(PaymentCode eth) {
public PaymentCode getGusd() { return _gusd; }
@JsonProperty("GUSD")
- public void setPax(PaymentCode gusd) { this._gusd = gusd; }
+ public void setGusd(PaymentCode gusd) { this._gusd = gusd; }
@JsonIgnore
public PaymentCode getPax() { return _pax; }
@JsonProperty("PAX")
- public void set(PaymentCode pax) { this._pax = pax; }
+ public void setPax(PaymentCode pax) { this._pax = pax; }
+
+ @JsonIgnore
+ public PaymentCode getXrp() { return _xrp; }
+
+ @JsonProperty("XRP")
+ public void setXrp(PaymentCode xrp) { this._xrp = xrp; }
}
diff --git a/src/main/java/com/bitpay/sdk/model/Invoice/PaymentTotal.java b/src/main/java/com/bitpay/sdk/model/Invoice/PaymentTotal.java
index 28b874df..fd4d9441 100644
--- a/src/main/java/com/bitpay/sdk/model/Invoice/PaymentTotal.java
+++ b/src/main/java/com/bitpay/sdk/model/Invoice/PaymentTotal.java
@@ -3,63 +3,71 @@
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
+import java.math.BigDecimal;
@JsonIgnoreProperties(ignoreUnknown = true)
public class PaymentTotal {
- private Double _btc;
- private Double _bch;
- private Double _eth;
- private Double _usdc;
- private Double _gusd;
- private Double _pax;
+ private BigDecimal _btc;
+ private BigDecimal _bch;
+ private BigDecimal _eth;
+ private BigDecimal _usdc;
+ private BigDecimal _gusd;
+ private BigDecimal _pax;
+ private BigDecimal _xrp;
public PaymentTotal() {
}
@JsonIgnore
- public Double getBtc() {
+ public BigDecimal getBtc() {
return _btc;
}
@JsonProperty("BTC")
- public void setBtc(Double btc) {
+ public void setBtc(BigDecimal btc) {
this._btc = btc;
}
@JsonIgnore
- public Double getBch() {
+ public BigDecimal getBch() {
return _bch;
}
@JsonProperty("BCH")
- public void setBch(Double bch) {
+ public void setBch(BigDecimal bch) {
this._bch = bch;
}
@JsonIgnore
- public Double getEth() { return _eth; }
+ public BigDecimal getEth() { return _eth; }
@JsonProperty("ETH")
- public void setEth(Double eth) {
+ public void setEth(BigDecimal eth) {
this._eth = eth;
}
@JsonIgnore
- public Double getUsdc() { return _usdc; }
+ public BigDecimal getUsdc() { return _usdc; }
@JsonProperty("USDC")
- public void setUsdc(Double usdc) { this._usdc = usdc; }
+ public void setUsdc(BigDecimal usdc) { this._usdc = usdc; }
@JsonIgnore
- public Double getGusd() { return _gusd; }
+ public BigDecimal getGusd() { return _gusd; }
@JsonProperty("GUSD")
- public void setPax(Double gusd) { this._gusd = gusd; }
+ public void setGusd(BigDecimal gusd) { this._gusd = gusd; }
@JsonIgnore
- public Double getPax() { return _pax; }
+ public BigDecimal getPax() { return _pax; }
@JsonProperty("PAX")
- public void set(Double pax) { this._pax = pax; }
+ public void setPax(BigDecimal pax) { this._pax = pax; }
+
+ @JsonIgnore
+ public BigDecimal getXrp() { return _xrp; }
+
+ @JsonProperty("XRP")
+ public void setXrp(BigDecimal xrp) { this._xrp = xrp; }
}
diff --git a/src/main/java/com/bitpay/sdk/model/Invoice/SupportedTransactionCurrencies.java b/src/main/java/com/bitpay/sdk/model/Invoice/SupportedTransactionCurrencies.java
index 123e4d73..08c2a769 100644
--- a/src/main/java/com/bitpay/sdk/model/Invoice/SupportedTransactionCurrencies.java
+++ b/src/main/java/com/bitpay/sdk/model/Invoice/SupportedTransactionCurrencies.java
@@ -13,6 +13,7 @@ public class SupportedTransactionCurrencies {
private SupportedTransactionCurrency _usdc = new SupportedTransactionCurrency();
private SupportedTransactionCurrency _gusd = new SupportedTransactionCurrency();
private SupportedTransactionCurrency _pax = new SupportedTransactionCurrency();
+ private SupportedTransactionCurrency _xrp = new SupportedTransactionCurrency();
public SupportedTransactionCurrencies() {
}
@@ -55,11 +56,17 @@ public void setEth(SupportedTransactionCurrency eth) {
public SupportedTransactionCurrency getGusd() { return _gusd; }
@JsonProperty("GUSD")
- public void setPax(SupportedTransactionCurrency gusd) { this._gusd = gusd; }
+ public void setGusd(SupportedTransactionCurrency gusd) { this._gusd = gusd; }
@JsonIgnore
public SupportedTransactionCurrency getPax() { return _pax; }
@JsonProperty("PAX")
- public void set(SupportedTransactionCurrency pax) { this._pax = pax; }
+ public void setPax(SupportedTransactionCurrency pax) { this._pax = pax; }
+
+ @JsonIgnore
+ public SupportedTransactionCurrency getXrp() { return _xrp; }
+
+ @JsonProperty("XRP")
+ public void setXrp(SupportedTransactionCurrency xrp) { this._xrp = xrp; }
}
diff --git a/src/main/java/com/bitpay/sdk/util/KeyUtils.java b/src/main/java/com/bitpay/sdk/util/KeyUtils.java
index eaa62f52..5ea38b36 100644
--- a/src/main/java/com/bitpay/sdk/util/KeyUtils.java
+++ b/src/main/java/com/bitpay/sdk/util/KeyUtils.java
@@ -10,7 +10,6 @@
import java.net.URI;
import java.net.URISyntaxException;
import java.nio.charset.StandardCharsets;
-import java.security.SecureRandom;
public class KeyUtils {
@@ -33,10 +32,10 @@ public static ECKey createEcKey() {
}
public static ECKey createEcKeyFromHexString(String privateKey) {
- //if you are going to choose this option, please ensure this string is as random as
- //possible, consider http://world.std.com/~reinhold/diceware.html
- SecureRandom randomSeed = new SecureRandom(privateKey.getBytes());
- return new ECKey(randomSeed);
+ byte[] bytes = hexToBytes(privateKey);
+ ECKey ecKey = ECKey.fromASN1(bytes);
+
+ return ecKey;
}
public static ECKey createEcKeyFromHexStringFile(String privKeyFile) throws IOException {
@@ -105,6 +104,28 @@ public static void saveEcKey(ECKey ecKey) throws IOException {
output.close();
}
+ public static void saveEcKeyAsHex(ECKey ecKey) throws IOException {
+ byte[] bytes = ecKey.toASN1();
+ PrintWriter file;
+
+ if (KeyUtils.privateKey == null) {
+ file = new PrintWriter(PrivateKeyFile);
+ } else {
+ file = new PrintWriter(String.valueOf(KeyUtils.privateKey));
+ }
+
+ String keyHex = bytesToHex(bytes);
+ file.println(keyHex);
+ file.close();
+ }
+
+ public static String loadEcKeyAsHex(ECKey ecKey) throws IOException {
+ byte[] bytes = ecKey.toASN1();
+ String keyHex = bytesToHex(bytes);
+
+ return keyHex;
+ }
+
public static void saveEcKey(ECKey ecKey, URI privateKey) throws IOException, URISyntaxException {
File file = new File(privateKey);
//we shan't overwrite an existing file
@@ -116,7 +137,6 @@ public static void saveEcKey(ECKey ecKey, URI privateKey) throws IOException, UR
saveEcKey(ecKey);
}
-
public static String deriveSIN(ECKey ecKey) throws IllegalArgumentException {
// Get sha256 hash and then the RIPEMD-160 hash of the public key (this call gets the result in one step).
byte[] pubKeyHash = ecKey.getPubKeyHash();
diff --git a/src/setup/java/BitPaySetup.java b/src/setup/java/BitPaySetup.java
index cf95de44..d5908ae4 100644
--- a/src/setup/java/BitPaySetup.java
+++ b/src/setup/java/BitPaySetup.java
@@ -18,7 +18,8 @@
class BitPaySetup {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
- String opt, env, envUrl, privateKeyPath, pairingCodeMerchant, pairingCodePayroll;
+ String opt, env, privateKeyPath = "", privateKeyAsHex = "", pairingCodeMerchant, pairingCodePayroll, privateKey = "";
+ int keyType; // 1 = in file, 2 = as text
Client bitpay;
do {
@@ -29,29 +30,49 @@ public static void main(String[] args) {
if (opt.toLowerCase().equals("t")) {
env = Env.Test;
- envUrl = Env.TestUrl;
} else {
env = Env.Prod;
- envUrl = Env.ProdUrl;
}
- privateKeyPath = Paths.get(".").toAbsolutePath().normalize().toString() + "/output/bitpay_private_" + env.toLowerCase() + ".key";
+ do {
+ System.out.println("Select the way you want your private key:");
+ System.out.println("Press F for binary in a text file or T for plain text in your config file:");
+ opt = scanner.next();
+ } while (opt.toLowerCase().equals("f") && opt.toLowerCase().equals("t"));
+
+ if (opt.toLowerCase().equals("f")) {
+ keyType = 1;
+ } else {
+ keyType = 2;
+ }
System.out.println("Generating private key... ");
+
try {
File directory = new File(Paths.get(".").toAbsolutePath().normalize().toString() + "/output");
if (!directory.exists()) {
directory.mkdir();
}
- if (!KeyUtils.privateKeyExists(privateKeyPath)) {
+ if (keyType == 1) {
+ privateKeyPath = Paths.get(".").toAbsolutePath().normalize().toString() + "/output/bitpay_private_" + env.toLowerCase() + ".key";
+ if (!KeyUtils.privateKeyExists(privateKeyPath)) {
+ ECKey _ecKey = KeyUtils.createEcKey();
+ KeyUtils.saveEcKey(_ecKey);
+ KeyUtils.createEcKey();
+ System.out.println("Private key generated successfully with public key:");
+ System.out.println(_ecKey.getPublicKeyAsHex());
+ } else {
+ KeyUtils.loadEcKey();
+ }
+ privateKey = privateKeyPath;
+ }
+ else {
ECKey _ecKey = KeyUtils.createEcKey();
- KeyUtils.saveEcKey(_ecKey);
- KeyUtils.createEcKey();
+ privateKeyAsHex = KeyUtils.loadEcKeyAsHex(_ecKey);
System.out.println("Private key generated successfully with public key:");
System.out.println(_ecKey.getPublicKeyAsHex());
- } else {
- KeyUtils.loadEcKey();
+ privateKey = privateKeyAsHex;
}
} catch (Exception e) {
System.out.println(e.getMessage());
@@ -62,7 +83,7 @@ public static void main(String[] args) {
try {
ObjectMapper mapper = new ObjectMapper();
- bitpay = new Client(env, privateKeyPath, new Env.Tokens());
+ bitpay = new Client(env, privateKey, new Env.Tokens());
pairingCodeMerchant = bitpay.requestClientAuthorization(Facade.Merchant);
pairingCodePayroll = bitpay.requestClientAuthorization(Facade.Payroll);
@@ -72,7 +93,9 @@ public static void main(String[] args) {
AtomicReference ApiTokens = new AtomicReference<>(mapper.valueToTree(tokens));
ObjectNode envConfig = mapper.createObjectNode();
- envConfig.put("PrivateKeyPath", privateKeyPath).put("ApiTokens", ApiTokens.get());
+ envConfig.put("PrivateKeyPath", privateKeyPath);
+ envConfig.put("PrivateKey", privateKeyAsHex);
+ envConfig.put("ApiTokens", ApiTokens.get());
ObjectNode envTarget = mapper.createObjectNode();
envTarget.put(env, envConfig);
diff --git a/src/test/java/test/BitPayTest.java b/src/test/java/test/BitPayTest.java
index 1b0e59c9..f33cb361 100644
--- a/src/test/java/test/BitPayTest.java
+++ b/src/test/java/test/BitPayTest.java
@@ -50,46 +50,63 @@ public static void setUpOneTime() throws InterruptedException, IOException, BitP
boolean dumpOut = false;
// Client bitpay = new Client("BitPay.config.json");
- Client bitpay = new Client(
- Env.Test,
- "bitpay_private_test.key",
- new Env.Tokens() {{
- pos = "AvJdGrEqTW9HVsJit9zabAnrJabqaQDhWHRacHYgfgxK";
- merchant = "2smKkjA1ACPKWUGN7wUEEqdWi3rhXYhDX6AKgG4njKvj";
- payroll = "9pJ7fzW1GGeuDQfj32aNATCDnyY6YAacVMcDrs7HHUNo";
- }}
- );
-
- if (!bitpay.tokenExist(Facade.Merchant)) {
- // Get MERCHANT facade authorization.
- // Obtain a pairingCode from your BitPay account administrator. When the pairingCode
- // is created by your administrator it is assigned a facade. To generate invoices a
- // POS facade is required.
- pairingCode = bitpay.requestClientAuthorization(Facade.Merchant);
-
- // Signal the device operator that this client needs to be paired with a merchant account.
- _log.info("Client is requesting MERCHANT facade access. Go to " + Env.TestUrl + " and pair this client with your merchant account using the pairing code: " + pairingCode);
- dumpOut = true;
- }
-
- if (dumpOut) {
- throw new BitPayException("Error: client is not authorized.");
- }
+// Client bitpay = new Client(
+// Env.Test,
+// "bitpay_private_test.key",
+// new Env.Tokens() {{
+// pos = "AvJdGrEqTW9HVsJit9zabAnrJabqaQDhWHRacHYgfgxK";
+// merchant = "2smKkjA1ACPKWUGN7wUEEqdWi3rhXYhDX6AKgG4njKvj";
+// payroll = "9pJ7fzW1GGeuDQfj32aNATCDnyY6YAacVMcDrs7HHUNo";
+// }}
+// );
+// Client bitpay = new Client(
+// Env.Prod,
+// "bitpay_private_prod.key",
+// new Env.Tokens() {{
+// pos = "";
+// merchant = "8RLcGKTvdAXKuyivTe693RHpwdMBNuxGFUWCyvsPvYas";
+// payroll = "";
+// }}
+// );
+//
+// if (!bitpay.tokenExist(Facade.Merchant)) {
+// // Get MERCHANT facade authorization.
+// // Obtain a pairingCode from your BitPay account administrator. When the pairingCode
+// // is created by your administrator it is assigned a facade. To generate invoices a
+// // POS facade is required.
+// pairingCode = bitpay.requestClientAuthorization(Facade.Merchant);
+//
+// // Signal the device operator that this client needs to be paired with a merchant account.
+// _log.info("Client is requesting MERCHANT facade access. Go to " + Env.TestUrl + " and pair this client with your merchant account using the pairing code: " + pairingCode);
+// dumpOut = true;
+// }
+
+// if (dumpOut) {
+// throw new BitPayException("Error: client is not authorized.");
+// }
}
@Before
public void setUp() throws BitPayException, IOException, URISyntaxException {
//ensure the second argument (api url) is the same as the one used in setUpOneTime()
-// bitpay = new Client("BitPay.config.json");
- bitpay = new Client(
- Env.Test,
- "bitpay_private_test.key",
- new Env.Tokens() {{
- pos = "AvJdGrEqTW9HVsJit9zabAnrJabqaQDhWHRacHYgfgxK";
- merchant = "2smKkjA1ACPKWUGN7wUEEqdWi3rhXYhDX6AKgG4njKvj";
- payroll = "9pJ7fzW1GGeuDQfj32aNATCDnyY6YAacVMcDrs7HHUNo";
- }}
- );
+ bitpay = new Client("/Users/antonio.buedo/Bitpay/Repos/java-bitpay-client/output/BitPay.config.json");
+// bitpay = new Client(
+// Env.Test,
+// "/Users/antonio.buedo/Bitpay/Repos/java-bitpay-client/output/bitpay_private_test.key",
+// new Env.Tokens() {{
+// merchant = "Ffm2qBvfF5B75ENThRpRDC7WQLPosfbf24qAccriRCYQ";
+// payroll = "FmCU4D5bGL8hRtzJX7rZZatjywqep12wDR4PKStE1rzp";
+// }}
+// );
+// bitpay = new Client(
+// Env.Prod,
+// "bitpay_private_prod.key",
+// new Env.Tokens() {{
+// pos = "";
+// merchant = "8RLcGKTvdAXKuyivTe693RHpwdMBNuxGFUWCyvsPvYas";
+// payroll = "";
+// }}
+// );
}
@Test
@@ -102,7 +119,7 @@ public void testCreateECKeyFromSeedString() {
@Test
public void testShouldGetInvoiceId() {
Invoice invoice = new Invoice(50.0, "USD");
- invoice.setPaymentCurrencies(Arrays.asList(Currency.BTC));
+// invoice.setPaymentCurrencies(Arrays.asList(Currency.BTC));
try {
basicInvoice = bitpay.createInvoice(invoice);
} catch (Exception e) {
@@ -140,7 +157,7 @@ public void testShouldCreateInvoiceBCH() {
@Test
public void testShouldCreateInvoiceETH() {
- Invoice invoice = new Invoice(50.0, "USD");
+ Invoice invoice = new Invoice(5.0, "USD");
invoice.setPaymentCurrencies(Arrays.asList(Currency.ETH));
try {
basicInvoice = bitpay.createInvoice(invoice);
@@ -213,7 +230,7 @@ public void testShouldCreateInvoice100EUR() {
@Test
public void testShouldGetInvoice() {
- Invoice invoice = new Invoice(100.0, "EUR");
+ Invoice invoice = new Invoice(27.50, "USD");
Invoice retreivedInvoice = null;
try {
// Create invoice on POS facade.
@@ -221,7 +238,7 @@ public void testShouldGetInvoice() {
//
// Must use a merchant token to retrieve this invoice since it was not created on the public facade.
String token = this.bitpay.getAccessToken(Facade.Merchant);
- retreivedInvoice = this.bitpay.getInvoice(invoice.getId());
+ retreivedInvoice = this.bitpay.getInvoice("FUfs9crxMuuJLUL1f4hxHf");
} catch (Exception e) {
e.printStackTrace();
fail(e.getMessage());
@@ -233,7 +250,7 @@ public void testShouldGetInvoice() {
public void testShouldCreateInvoiceWithAdditionalParams() {
Buyer buyer = new Buyer();
buyer.setName("Satoshi");
- buyer.setEmail("satoshi@buyeremaildomain.com");
+// buyer.setEmail("satoshi@buyeremaildomain.com");
Invoice invoice = new Invoice(100.0, "USD");
invoice.setBuyer(buyer);
@@ -279,7 +296,7 @@ public void TestShouldCreateBillUSD() {
setDescription("product-d");
}});
- Bill bill = new Bill("7", Currency.USD, "", items);
+ Bill bill = new Bill("7", Currency.USD, "agallardo@bitmail.com", items);
Bill basicBill = null;
try {
basicBill = this.bitpay.createBill(bill);
@@ -314,7 +331,7 @@ public void TestShouldCreateBillEUR() {
setDescription("product-d");
}});
- Bill bill = new Bill("7", Currency.EUR, "", items);
+ Bill bill = new Bill("7", Currency.EUR, "agallardo@bitmail.com", items);
Bill basicBill = null;
try {
basicBill = this.bitpay.createBill(bill);
@@ -349,7 +366,7 @@ public void TestShouldGetBillUrl() {
setDescription("product-d");
}});
- Bill bill = new Bill("7", Currency.USD, "", items);
+ Bill bill = new Bill("7", Currency.USD, "agallardo@bitmail.com", items);
Bill basicBill = null;
try {
basicBill = this.bitpay.createBill(bill);
@@ -384,7 +401,7 @@ public void TestShouldGetBillStatus() {
setDescription("product-d");
}});
- Bill bill = new Bill("7", Currency.USD, "", items);
+ Bill bill = new Bill("7", Currency.USD, "agallardo@bitmail.com", items);
Bill basicBill = null;
try {
basicBill = this.bitpay.createBill(bill);
@@ -419,7 +436,7 @@ public void TestShouldGetBill() {
setDescription("product-d");
}});
- Bill bill = new Bill("7", Currency.USD, "", items);
+ Bill bill = new Bill("7", Currency.USD, "agallardo@bitmail.com", items);
Bill basicBill = null;
Bill retrievedBill = null;
try {
@@ -456,7 +473,7 @@ public void TestShouldGetAndUpdateBill() {
setDescription("product-d");
}});
- Bill bill = new Bill("7", Currency.USD, "", items);
+ Bill bill = new Bill("7", Currency.USD, "agallardo@bitmail.com", items);
Bill basicBill = null;
Bill retrievedBill = null;
Bill updatedBill = null;
@@ -505,7 +522,7 @@ public void TestShouldDeliverBill() {
setDescription("product-d");
}});
- Bill bill = new Bill("7", Currency.USD, "", items);
+ Bill bill = new Bill("7", Currency.USD, "agallardo@bitmail.com", items);
Bill basicBill = null;
String result = "";
Bill retrievedBill = null;
@@ -644,7 +661,7 @@ public void testShouldGetLedgerUsd() {
try {
//check within the last few days
Date date = new Date();
- Date dateTomorrow = new Date(date.getTime() + 1 * 24 * 3600 * 1000);
+ Date dateTomorrow = new Date(date.getTime() + 100 * 24 * 3600 * 1000);
Date dateBefore = new Date(date.getTime() - 7 * 24 * 3600 * 1000);
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
String tomorrow = sdf.format(dateTomorrow);