com.bitpay.sdk.PrivateKey Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bitpay_sdk Show documentation
Show all versions of bitpay_sdk Show documentation
Full implementation of the BitPay Payment Gateway. This library implements BitPay's Cryptographically
Secure RESTful API.
The newest version!
/*
* Copyright (c) 2019 BitPay.
* All rights reserved.
*/
package com.bitpay.sdk;
/**
* The type Private key.
*/
public class PrivateKey {
private final String value;
/**
* Instantiates a new Private key.
*
* @param value the value
*/
public PrivateKey(final String value) {
this.value = value;
}
/**
* Get Private Key value.
*
* @return the string
*/
public String value() {
return this.value;
}
}