php-bitpay-client/src/Bitpay/ApplicationInterface.php
2014-11-24 17:53:57 -05:00

26 lines
419 B
PHP

<?php
/**
* @license Copyright 2011-2014 BitPay Inc., MIT License
* see https://github.com/bitpay/php-bitpay-client/blob/master/LICENSE
*/
namespace Bitpay;
/**
* Creates an application for a new merchant account
*
* @package Bitpay
*/
interface ApplicationInterface
{
/**
* @return array
*/
public function getUsers();
/**
* @return array
*/
public function getOrgs();
}