1 | <?php |
||
24 | class RetrievingSMSReplyEvent extends AbstractResponseEvent { |
||
25 | |||
26 | /** |
||
27 | * Retrieving SMS reply. |
||
28 | * |
||
29 | * @var RetrievingSMSReplyInterface |
||
30 | */ |
||
31 | private $retrievingSMSReply; |
||
32 | |||
33 | /** |
||
34 | * Constructor. |
||
35 | * |
||
36 | * @param RetrievingSMSReplyInterface $retrievingSMSReply The retrieving SMS reply. |
||
37 | */ |
||
38 | public function __construct(RetrievingSMSReplyInterface $retrievingSMSReply) { |
||
42 | |||
43 | /** |
||
44 | * Get the retrieving SMS reply request. |
||
45 | * |
||
46 | * @return RetrievingSMSReplyRequest Returns the retrieving SMS reply request. |
||
47 | */ |
||
48 | public function getRequest() { |
||
51 | |||
52 | /** |
||
53 | * Get the retrieving SMS reply response. |
||
54 | * |
||
55 | * @return RetrievingSMSReplyResponse Returns the retrieving SMS reply response. |
||
56 | */ |
||
57 | public function getResponse() { |
||
60 | |||
61 | /** |
||
62 | * Get the retrieving SMS reply. |
||
63 | * |
||
64 | * @return RetrievingSMSReplyInterface Returns the retrieving SMS reply. |
||
65 | */ |
||
66 | public function getRetrievingSMSReply() { |
||
69 | |||
70 | /** |
||
71 | * Set the retrieving SMS reply. |
||
72 | * |
||
73 | * @param RetrievingSMSReplyInterface $retrievingSMSReply The retrieving SMS reply. |
||
74 | * @return RetrievingSMSReplyEvent Returns this retrieving SMS reply event. |
||
75 | */ |
||
76 | protected function setRetrievingSMSReply(RetrievingSMSReplyInterface $retrievingSMSReply) { |
||
80 | } |
||
81 |