1 <?php
2 /* --------------------------------------------------------------
3 CustomerB2BStatusInterface.inc.php 2015-07-22 gm
4 Gambio GmbH
5 http://www.gambio.de
6 Copyright (c) 2015 Gambio GmbH
7 Released under the GNU General Public License (Version 2)
8 [http://www.gnu.org/licenses/gpl-2.0.html]
9 --------------------------------------------------------------
10 */
11
12 /**
13 * Interface CustomerB2BStatusInterface
14 *
15 * @category System
16 * @package Customer
17 * @subpackage Interfaces
18 */
19 interface CustomerB2BStatusInterface
20 {
21 /**
22 * Returns the status.
23 * @return bool Customer B2B status.
24 */
25 public function getStatus();
26
27
28 /**
29 * Returns the equivalent string value.
30 * @return string Equivalent string value.
31 */
32 public function __toString();
33 }