1 | <?php |
||
49 | class SMSModeFactory { |
||
50 | |||
51 | /** |
||
52 | * Creates an account balance request. |
||
53 | * |
||
54 | * @return AccountBalanceRequest Returns the account balance request. |
||
55 | */ |
||
56 | public static function newAccountBalanceRequest() { |
||
59 | |||
60 | /** |
||
61 | * Creates an adding contact request. |
||
62 | * |
||
63 | * @param AddingContactInterface $addingContact The adding contact. |
||
64 | * @return AddingContactRequest Returns the adding contact request. |
||
65 | */ |
||
66 | public static function newAddingContactRequest(AddingContactInterface $addingContact) { |
||
79 | |||
80 | /** |
||
81 | * Creates a checking SMS message status request. |
||
82 | * |
||
83 | * @param CheckingSMSMessageStatusInterface $checkingSMSMessageStatus the checking SMS message status. |
||
84 | * @return CheckingSMSMessageStatusRequest Returns the checking SMS message status request. |
||
85 | */ |
||
86 | public static function newCheckingSMSMessageStatusRequest(CheckingSMSMessageStatusInterface $checkingSMSMessageStatus) { |
||
93 | |||
94 | /** |
||
95 | * Creates an creating API key request. |
||
96 | * |
||
97 | * @return CreatingAPIKeyRequest Returns the creating API key request. |
||
98 | */ |
||
99 | public static function newCreatingAPIKeyRequest() { |
||
102 | |||
103 | /** |
||
104 | * Creates a creating sub-account request. |
||
105 | * |
||
106 | * @param CreatingSubAccountInterface $creatingSubAccount the creating sub-account. |
||
107 | * @return CreatingSubAccountRequest Returns the creating sub-account request. |
||
108 | */ |
||
109 | public static function newCreatingSubAccountRequest(CreatingSubAccountInterface $creatingSubAccount) { |
||
129 | |||
130 | /** |
||
131 | * Creates a deleting SMS request. |
||
132 | * |
||
133 | * @param DeletingSMSInterface $deletingSMS the deleting SMS. |
||
134 | * @return DeletingSMSRequest Returns the deleting SMS request. |
||
135 | */ |
||
136 | public static function newDeletingSMSRequest(DeletingSMSInterface $deletingSMS) { |
||
144 | |||
145 | /** |
||
146 | * Creates a deleting sub-account request. |
||
147 | * |
||
148 | * @param DeletingSubAccountInterface $deletingSubAccount the deleting sub-account. |
||
149 | * @return DeletingSubAccountRequest Returns the deleting sub-account status request. |
||
150 | */ |
||
151 | public static function newDeletingSubAccountRequest(DeletingSubAccountInterface $deletingSubAccount) { |
||
158 | |||
159 | /** |
||
160 | * Creates a delivery report request. |
||
161 | * |
||
162 | * @param DeliveryReportInterface $deliveryReport the delivery report. |
||
163 | * @return DeliveryReportRequest Returns the delivery report request. |
||
164 | */ |
||
165 | public static function newDeliveryReportRequest(DeliveryReportInterface $deliveryReport) { |
||
172 | |||
173 | /** |
||
174 | * Creates a retrieving SMS reply request. |
||
175 | * |
||
176 | * @param RetrievingSMSReplyInterface $retrievingSMSReply the retrieving SMS reply. |
||
177 | * @return RetrievingSMSReplyRequest Returns the retrieving SMS reply request. |
||
178 | */ |
||
179 | public static function newRetrievingSMSReplyRequest(RetrievingSMSReplyInterface $retrievingSMSReply) { |
||
189 | |||
190 | /** |
||
191 | * Creates a sending SMS batch request. |
||
192 | * |
||
193 | * @param SendingSMSBatchInterface $sendingSMSBatch the sending SMS batch. |
||
194 | * @return SendingSMSBatchRequest Returns the sending SMS batch request. |
||
195 | */ |
||
196 | public static function newSendingSMSBatchRequest(SendingSMSBatchInterface $sendingSMSBatch) { |
||
209 | |||
210 | /** |
||
211 | * Creates a sending SMS message request. |
||
212 | * |
||
213 | * @param SendingSMSMessageInterface $sendingSMSMessage the sending SMS message. |
||
214 | * @return SendingSMSMessageRequest Returns the sending SMS message request. |
||
215 | */ |
||
216 | public static function newSendingSMSMessageRequest(SendingSMSMessageInterface $sendingSMSMessage) { |
||
235 | |||
236 | /** |
||
237 | * Creates a sending text-to-speech SMS request. |
||
238 | * |
||
239 | * @param SendingTextToSpeechSMSInterface $sendingTextToSpeechSMS the sending text-to-speech SMS. |
||
240 | * @return SendingTextToSpeechSMSRequest Returns the sending text-to-speech SMS request. |
||
241 | */ |
||
242 | public static function newSendingTextToSpeechSMSRequest(SendingTextToSpeechSMSInterface $sendingTextToSpeechSMS) { |
||
255 | |||
256 | /** |
||
257 | * Creates a sending unicode SMS request. |
||
258 | * |
||
259 | * @param SendingUnicodeSMSInterface $sendingUnicodeSMS the sending unicode SMS. |
||
260 | * @return SendingUnicodeSMSRequest Returns the sending unicode SMS request. |
||
261 | */ |
||
262 | public static function newSendingUnicodeSMSRequest(SendingUnicodeSMSInterface $sendingUnicodeSMS) { |
||
281 | |||
282 | /** |
||
283 | * Creates a sent SMS message list request. |
||
284 | * |
||
285 | * @param SentSMSMessageListInterface $sentSMSMessageList the sent SMS message list. |
||
286 | * @return SentSMSMessageListRequest Returns the sent SMS message list request. |
||
287 | */ |
||
288 | public static function newSentSMSMessageListRequest(SentSMSMessageListInterface $sentSMSMessageList) { |
||
295 | |||
296 | /** |
||
297 | * Creates a transferring credits request. |
||
298 | * |
||
299 | * @param TransferringCreditsInterface $transferringCredits the transferring credits. |
||
300 | * @return TransferringCreditsRequest Returns the transferring credits request. |
||
301 | */ |
||
302 | public static function newTransferringCreditsRequest(TransferringCreditsInterface $transferringCredits) { |
||
311 | } |
||
312 |