We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b61660a commit 8d46be7Copy full SHA for 8d46be7
src/SmsOptions.php
@@ -0,0 +1,24 @@
1
+<?php
2
+
3
+namespace Sms77\Api;
4
5
+abstract class SmsOptions
6
+{
7
+ const Debug = 'debug';
8
+ const Delay = 'delay';
9
+ const Details = 'details';
10
+ const Flash = 'flash';
11
+ const ForeignId = 'foreign_id';
12
+ const From = 'from';
13
+ const Json = 'json';
14
+ const Label = 'label';
15
+ const NoReload = 'no_reload';
16
+ const PerformanceTracking = 'performance_tracking';
17
+ const ReturnMsgId = 'return_msg_id';
18
+ const Text = 'text';
19
+ const To = 'to';
20
+ const Ttl = 'ttl';
21
+ const Udh = 'udh';
22
+ const Unicode = 'unicode';
23
+ const Utf8 = 'utf8';
24
+}
0 commit comments