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