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