All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bitpay.sdk.PosToken Maven / Gradle / Ivy

Go to download

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 Pos token.
 */
public class PosToken {

    private final String value;

    /**
     * Instantiates a new Pos token.
     *
     * @param value the value
     */
    public PosToken(final String value) {
        this.value = value;
    }

    /**
     * Get Pos token value.
     *
     * @return the string
     */
    public String value() {
        return this.value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy