63 lines
1.1 KiB
PHP
63 lines
1.1 KiB
PHP
<?php
|
||
/**
|
||
* @license Copyright 2011-2014 BitPay Inc., MIT License
|
||
* see https://github.com/bitpay/php-bitpay-client/blob/master/LICENSE
|
||
*/
|
||
|
||
namespace Bitpay;
|
||
|
||
/**
|
||
* This is the currency code set for the price setting. The pricing currencies
|
||
* currently supported are USD, EUR, BTC, and all of the codes listed on this page:
|
||
* https://bitpay.com/bitcoinexchangerates
|
||
*
|
||
* @package Bitpay
|
||
*/
|
||
interface CurrencyInterface
|
||
{
|
||
/**
|
||
* @return string
|
||
*/
|
||
public function getCode();
|
||
|
||
/**
|
||
* @return string
|
||
*/
|
||
public function getSymbol();
|
||
|
||
/**
|
||
* @return string
|
||
*/
|
||
public function getPrecision();
|
||
|
||
/**
|
||
* @return string
|
||
*/
|
||
public function getExchangePctFee();
|
||
|
||
/**
|
||
* @return boolean
|
||
*/
|
||
public function isPayoutEnabled();
|
||
|
||
/**
|
||
* @return string
|
||
*/
|
||
public function getName();
|
||
|
||
/**
|
||
* @return string
|
||
*/
|
||
public function getPluralName();
|
||
|
||
/**
|
||
* @return array
|
||
*/
|
||
public function getAlts();
|
||
|
||
/**
|
||
* @return array
|
||
*/
|
||
public function getPayoutFields();
|
||
}
|