1: <?php
2: namespace Hyperwallet\Model;
3:
4: /**
5: * Interface to mark a resource to contain a program token
6: *
7: * @package Hyperwallet\Model
8: */
9: interface IProgramAware {
10:
11: /**
12: * Set the program token
13: *
14: * @param string $programToken
15: * @return mixed
16: */
17: public function setProgramToken($programToken);
18:
19: /**
20: * Get the program token
21: *
22: * @return string
23: */
24: public function getProgramToken();
25:
26: }
27: