seven_api 0.5.0 → 0.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (112) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +7 -6
  3. data/.idea/inspectionProfiles/Project_Default.xml +5 -5
  4. data/.idea/ruby-client.iml +51 -4
  5. data/Gemfile +2 -2
  6. data/LICENSE +21 -21
  7. data/README.md +3 -3
  8. data/Rakefile +5 -5
  9. data/doc/{Sms77 → SevenApi}/Client.html +229 -229
  10. data/doc/{Sms77 → SevenApi}/Contacts/Action.html +130 -130
  11. data/doc/{Sms77 → SevenApi}/Contacts.html +125 -125
  12. data/doc/{Sms77 → SevenApi}/Endpoint.html +186 -186
  13. data/doc/{Sms77 → SevenApi}/Hooks/Action.html +130 -130
  14. data/doc/{Sms77 → SevenApi}/Hooks/EventType.html +145 -145
  15. data/doc/{Sms77 → SevenApi}/Hooks/RequestMethod.html +130 -130
  16. data/doc/{Sms77 → SevenApi}/Hooks/Validator.html +597 -597
  17. data/doc/{Sms77 → SevenApi}/Hooks.html +125 -125
  18. data/doc/{Sms77 → SevenApi}/Journal/Type.html +135 -135
  19. data/doc/{Sms77 → SevenApi}/Journal/Validator.html +393 -393
  20. data/doc/{Sms77 → SevenApi}/Journal.html +125 -125
  21. data/doc/{Sms77 → SevenApi}/Lookup/Type.html +135 -135
  22. data/doc/{Sms77 → SevenApi}/Lookup.html +125 -125
  23. data/doc/{Sms77 → SevenApi}/Resource.html +869 -869
  24. data/doc/{Sms77 → SevenApi}/Resources/Analytics.html +262 -262
  25. data/doc/{Sms77 → SevenApi}/Resources/Balance.html +245 -245
  26. data/doc/{Sms77 → SevenApi}/Resources/Contacts.html +448 -448
  27. data/doc/{Sms77 → SevenApi}/Resources/Hooks.html +456 -456
  28. data/doc/{Sms77 → SevenApi}/Resources/Journal.html +260 -260
  29. data/doc/{Sms77 → SevenApi}/Resources/Lookup.html +539 -539
  30. data/doc/{Sms77 → SevenApi}/Resources/Pricing.html +262 -262
  31. data/doc/{Sms77 → SevenApi}/Resources/Sms.html +260 -260
  32. data/doc/{Sms77 → SevenApi}/Resources/Status.html +260 -260
  33. data/doc/{Sms77 → SevenApi}/Resources/Subaccounts.html +650 -650
  34. data/doc/{Sms77 → SevenApi}/Resources/ValidateForVoice.html +260 -260
  35. data/doc/{Sms77 → SevenApi}/Resources/Voice.html +260 -260
  36. data/doc/SevenApi/Resources.html +128 -0
  37. data/doc/{Sms77 → SevenApi}/Sms/Type.html +125 -125
  38. data/doc/{Sms77 → SevenApi}/Sms.html +125 -125
  39. data/doc/{Sms77 → SevenApi}/Subaccounts/Action.html +140 -140
  40. data/doc/SevenApi/Subaccounts/Validator.html +490 -0
  41. data/doc/{Sms77 → SevenApi}/Subaccounts.html +125 -125
  42. data/doc/{Sms77 → SevenApi}/Util.html +1032 -1032
  43. data/doc/{Sms77.html → SevenApi.html} +145 -145
  44. data/doc/_index.html +443 -443
  45. data/doc/class_list.html +51 -51
  46. data/doc/css/full_list.css +58 -58
  47. data/doc/css/style.css +497 -497
  48. data/doc/file.README.html +110 -111
  49. data/doc/file_list.html +56 -56
  50. data/doc/frames.html +17 -17
  51. data/doc/index.html +110 -111
  52. data/doc/js/app.js +314 -314
  53. data/doc/js/full_list.js +216 -216
  54. data/doc/js/jquery.js +3 -3
  55. data/doc/method_list.html +563 -563
  56. data/doc/top-level-namespace.html +109 -109
  57. data/document.sh +3 -0
  58. data/lib/seven_api/client.rb +32 -30
  59. data/lib/seven_api/contacts.rb +5 -10
  60. data/lib/seven_api/endpoint.rb +5 -0
  61. data/lib/seven_api/hooks.rb +69 -67
  62. data/lib/seven_api/journal.rb +39 -39
  63. data/lib/seven_api/lookup.rb +12 -11
  64. data/lib/seven_api/numbers.rb +9 -0
  65. data/lib/seven_api/paginated.rb +10 -0
  66. data/lib/seven_api/rcs.rb +9 -0
  67. data/lib/seven_api/resource.rb +8 -4
  68. data/lib/seven_api/resources/analytics.rb +54 -21
  69. data/lib/seven_api/resources/balance.rb +19 -19
  70. data/lib/seven_api/resources/contacts.rb +56 -38
  71. data/lib/seven_api/resources/groups.rb +57 -0
  72. data/lib/seven_api/resources/hooks.rb +40 -40
  73. data/lib/seven_api/resources/journal.rb +20 -20
  74. data/lib/seven_api/resources/lookup.rb +63 -47
  75. data/lib/seven_api/resources/numbers.rb +71 -0
  76. data/lib/seven_api/resources/pricing.rb +20 -20
  77. data/lib/seven_api/resources/rcs.rb +39 -0
  78. data/lib/seven_api/resources/sms.rb +29 -20
  79. data/lib/seven_api/resources/status.rb +20 -20
  80. data/lib/seven_api/resources/subaccounts.rb +65 -65
  81. data/lib/seven_api/resources/validate_for_voice.rb +20 -20
  82. data/lib/seven_api/resources/voice.rb +29 -20
  83. data/lib/seven_api/sms.rb +9 -9
  84. data/lib/seven_api/subaccounts.rb +55 -55
  85. data/lib/seven_api/util.rb +68 -68
  86. data/lib/seven_api/version.rb +5 -5
  87. data/lib/seven_api.rb +6 -6
  88. data/release.sh +4 -4
  89. data/seven_api.gemspec +5 -5
  90. data/spec/EnvKeyStore.rb +14 -14
  91. data/spec/matchers.rb +22 -22
  92. data/spec/seven_api/analytics_spec.rb +49 -0
  93. data/spec/seven_api/balance_spec.rb +18 -12
  94. data/spec/seven_api/client_spec.rb +15 -15
  95. data/spec/seven_api/contacts_spec.rb +100 -129
  96. data/spec/seven_api/groups_spec.rb +74 -0
  97. data/spec/seven_api/hooks_spec.rb +108 -108
  98. data/spec/seven_api/instance_spec.rb +22 -22
  99. data/spec/seven_api/journal_spec.rb +86 -86
  100. data/spec/seven_api/lookup_spec.rb +197 -179
  101. data/spec/seven_api/numbers_spec.rb +135 -0
  102. data/spec/seven_api/pricing_spec.rb +76 -76
  103. data/spec/seven_api/rcs_spec.rb +99 -0
  104. data/spec/seven_api/sms_spec.rb +103 -103
  105. data/spec/seven_api/subaccounts_spec.rb +121 -121
  106. data/spec/seven_api/validate_for_voice_spec.rb +19 -19
  107. data/spec/seven_api/voice_spec.rb +51 -51
  108. data/spec/seven_api_spec.rb +9 -9
  109. data/spec/spec_helper.rb +8 -17
  110. metadata +62 -50
  111. data/doc/Sms77/Resources.html +0 -128
  112. data/doc/Sms77/Subaccounts/Validator.html +0 -490
@@ -1,261 +1,261 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>
7
- Class: Sms77::Resources::Status
8
-
9
- &mdash; Documentation by YARD 0.9.27
10
-
11
- </title>
12
-
13
- <link rel="stylesheet" href="../../css/style.css" type="text/css" />
14
-
15
- <link rel="stylesheet" href="../../css/common.css" type="text/css" />
16
-
17
- <script type="text/javascript">
18
- pathId = "Sms77::Resources::Status";
19
- relpath = '../../';
20
- </script>
21
-
22
-
23
- <script type="text/javascript" charset="utf-8" src="../../js/jquery.js"></script>
24
-
25
- <script type="text/javascript" charset="utf-8" src="../../js/app.js"></script>
26
-
27
-
28
- </head>
29
- <body>
30
- <div class="nav_wrap">
31
- <iframe id="nav" src="../../class_list.html?1"></iframe>
32
- <div id="resizer"></div>
33
- </div>
34
-
35
- <div id="main" tabindex="-1">
36
- <div id="header">
37
- <div id="menu">
38
-
39
- <a href="../../_index.html">Index (S)</a> &raquo;
40
- <span class='title'><span class='object_link'><a href="../../Sms77.html" title="Sms77 (module)">Sms77</a></span></span> &raquo; <span class='title'><span class='object_link'><a href="../Resources.html" title="Sms77::Resources (module)">Resources</a></span></span>
41
- &raquo;
42
- <span class="title">Status</span>
43
-
44
- </div>
45
-
46
- <div id="search">
47
-
48
- <a class="full_list_link" id="class_list_link"
49
- href="../../class_list.html">
50
-
51
- <svg width="24" height="24">
52
- <rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
53
- <rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
54
- <rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
55
- </svg>
56
- </a>
57
-
58
- </div>
59
- <div class="clear"></div>
60
- </div>
61
-
62
- <div id="content"><h1>Class: Sms77::Resources::Status
63
-
64
-
65
-
66
- </h1>
67
- <div class="box_info">
68
-
69
- <dl>
70
- <dt>Inherits:</dt>
71
- <dd>
72
- <span class="inheritName"><span class='object_link'><a href="../Resource.html" title="Sms77::Resource (class)">Sms77::Resource</a></span></span>
73
-
74
- <ul class="fullTree">
75
- <li>Object</li>
76
-
77
- <li class="next"><span class='object_link'><a href="../Resource.html" title="Sms77::Resource (class)">Sms77::Resource</a></span></li>
78
-
79
- <li class="next">Sms77::Resources::Status</li>
80
-
81
- </ul>
82
- <a href="#" class="inheritanceTree">show all</a>
83
-
84
- </dd>
85
- </dl>
86
-
87
-
88
-
89
-
90
-
91
-
92
-
93
-
94
-
95
-
96
-
97
- <dl>
98
- <dt>Defined in:</dt>
99
- <dd>lib/sms77/resources/status.rb</dd>
100
- </dl>
101
-
102
- </div>
103
-
104
-
105
-
106
-
107
- <h2>Constant Summary</h2>
108
-
109
- <h3 class="inherited">Constants inherited
110
- from <span class='object_link'><a href="../Resource.html" title="Sms77::Resource (class)">Sms77::Resource</a></span></h3>
111
- <p class="inherited"><span class='object_link'><a href="../Resource.html#BASE_PATH-constant" title="Sms77::Resource::BASE_PATH (constant)">Sms77::Resource::BASE_PATH</a></span></p>
112
-
113
-
114
-
115
-
116
- <h2>Instance Attribute Summary</h2>
117
-
118
- <h3 class="inherited">Attributes inherited from <span class='object_link'><a href="../Resource.html" title="Sms77::Resource (class)">Sms77::Resource</a></span></h3>
119
- <p class="inherited"><span class='object_link'><a href="../Resource.html#api_key-instance_method" title="Sms77::Resource#api_key (method)">#api_key</a></span>, <span class='object_link'><a href="../Resource.html#builder-instance_method" title="Sms77::Resource#builder (method)">#builder</a></span>, <span class='object_link'><a href="../Resource.html#conn-instance_method" title="Sms77::Resource#conn (method)">#conn</a></span>, <span class='object_link'><a href="../Resource.html#endpoint-instance_method" title="Sms77::Resource#endpoint (method)">#endpoint</a></span>, <span class='object_link'><a href="../Resource.html#http_methods-instance_method" title="Sms77::Resource#http_methods (method)">#http_methods</a></span>, <span class='object_link'><a href="../Resource.html#request_methods-instance_method" title="Sms77::Resource#request_methods (method)">#request_methods</a></span>, <span class='object_link'><a href="../Resource.html#sent_with-instance_method" title="Sms77::Resource#sent_with (method)">#sent_with</a></span></p>
120
-
121
-
122
-
123
- <h2>
124
- Instance Method Summary
125
- <small><a href="#" class="summary_toggle">collapse</a></small>
126
- </h2>
127
-
128
- <ul class="summary">
129
-
130
- <li class="public ">
131
- <span class="summary_signature">
132
-
133
- <a href="#retrieve-instance_method" title="#retrieve (instance method)">#<strong>retrieve</strong>(params) &#x21d2; String </a>
134
-
135
-
136
-
137
- </span>
138
-
139
-
140
-
141
-
142
-
143
-
144
-
145
-
146
-
147
- <span class="summary_desc"><div class='inline'>
148
- <p>Retrieve delivery report for a SMS read more: <a href="https://www.sms77.io/en/docs/gateway/http-api/status-reports/#query-delivery-reports">www.sms77.io/en/docs/gateway/http-api/status-reports/#query-delivery-reports</a>.</p>
149
- </div></span>
150
-
151
- </li>
152
-
153
-
154
- </ul>
155
-
156
-
157
-
158
-
159
-
160
-
161
-
162
-
163
-
164
-
165
-
166
- <h3 class="inherited">Methods inherited from <span class='object_link'><a href="../Resource.html" title="Sms77::Resource (class)">Sms77::Resource</a></span></h3>
167
- <p class="inherited"><span class='object_link'><a href="../Resource.html#get_endpoint-class_method" title="Sms77::Resource.get_endpoint (method)">get_endpoint</a></span>, <span class='object_link'><a href="../Resource.html#get_http_methods-class_method" title="Sms77::Resource.get_http_methods (method)">get_http_methods</a></span>, <span class='object_link'><a href="../Resource.html#initialize-instance_method" title="Sms77::Resource#initialize (method)">#initialize</a></span></p>
168
- <div id="constructor_details" class="method_details_list">
169
- <h2>Constructor Details</h2>
170
-
171
- <p class="notice">This class inherits a constructor from <span class='object_link'><a href="../Resource.html#initialize-instance_method" title="Sms77::Resource#initialize (method)">Sms77::Resource</a></span></p>
172
-
173
- </div>
174
-
175
-
176
- <div id="instance_method_details" class="method_details_list">
177
- <h2>Instance Method Details</h2>
178
-
179
-
180
- <div class="method_details first">
181
- <h3 class="signature first" id="retrieve-instance_method">
182
-
183
- #<strong>retrieve</strong>(params) &#x21d2; <tt>String</tt>
184
-
185
-
186
-
187
-
188
-
189
- </h3><div class="docstring">
190
- <div class="discussion">
191
-
192
- <p>Retrieve delivery report for a SMS read more: <a href="https://www.sms77.io/en/docs/gateway/http-api/status-reports/#query-delivery-reports">www.sms77.io/en/docs/gateway/http-api/status-reports/#query-delivery-reports</a></p>
193
-
194
-
195
- </div>
196
- </div>
197
- <div class="tags">
198
- <p class="tag_title">Parameters:</p>
199
- <ul class="param">
200
-
201
- <li>
202
-
203
- <span class='name'>params</span>
204
-
205
-
206
- <span class='type'>(<tt>Hash</tt>)</span>
207
-
208
-
209
-
210
- </li>
211
-
212
- </ul>
213
-
214
- <p class="tag_title">Returns:</p>
215
- <ul class="return">
216
-
217
- <li>
218
-
219
-
220
- <span class='type'>(<tt>String</tt>)</span>
221
-
222
-
223
-
224
- </li>
225
-
226
- </ul>
227
-
228
- </div><table class="source_code">
229
- <tr>
230
- <td>
231
- <pre class="lines">
232
-
233
-
234
- 17
235
- 18
236
- 19</pre>
237
- </td>
238
- <td>
239
- <pre class="code"><span class="info file"># File 'lib/sms77/resources/status.rb', line 17</span>
240
-
241
- <span class='kw'>def</span> <span class='id identifier rubyid_retrieve'>retrieve</span><span class='lparen'>(</span><span class='id identifier rubyid_params'>params</span><span class='rparen'>)</span>
242
- <span class='id identifier rubyid_request'>request</span><span class='lparen'>(</span><span class='id identifier rubyid_params'>params</span><span class='rparen'>)</span>
243
- <span class='kw'>end</span></pre>
244
- </td>
245
- </tr>
246
- </table>
247
- </div>
248
-
249
- </div>
250
-
251
- </div>
252
-
253
- <div id="footer">
254
- Generated on Wed Mar 30 13:55:36 2022 by
255
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
256
- 0.9.27 (ruby-2.7.4).
257
- </div>
258
-
259
- </div>
260
- </body>
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>
7
+ Class: SevenApi::Resources::Status
8
+
9
+ &mdash; Documentation by YARD 0.9.34
10
+
11
+ </title>
12
+
13
+ <link rel="stylesheet" href="../../css/style.css" type="text/css" />
14
+
15
+ <link rel="stylesheet" href="../../css/common.css" type="text/css" />
16
+
17
+ <script type="text/javascript">
18
+ pathId = "SevenApi::Resources::Status";
19
+ relpath = '../../';
20
+ </script>
21
+
22
+
23
+ <script type="text/javascript" charset="utf-8" src="../../js/jquery.js"></script>
24
+
25
+ <script type="text/javascript" charset="utf-8" src="../../js/app.js"></script>
26
+
27
+
28
+ </head>
29
+ <body>
30
+ <div class="nav_wrap">
31
+ <iframe id="nav" src="../../class_list.html?1"></iframe>
32
+ <div id="resizer"></div>
33
+ </div>
34
+
35
+ <div id="main" tabindex="-1">
36
+ <div id="header">
37
+ <div id="menu">
38
+
39
+ <a href="../../_index.html">Index (S)</a> &raquo;
40
+ <span class='title'><span class='object_link'><a href="../../SevenApi.html" title="SevenApi (module)">SevenApi</a></span></span> &raquo; <span class='title'><span class='object_link'><a href="../Resources.html" title="SevenApi::Resources (module)">Resources</a></span></span>
41
+ &raquo;
42
+ <span class="title">Status</span>
43
+
44
+ </div>
45
+
46
+ <div id="search">
47
+
48
+ <a class="full_list_link" id="class_list_link"
49
+ href="../../class_list.html">
50
+
51
+ <svg width="24" height="24">
52
+ <rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
53
+ <rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
54
+ <rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
55
+ </svg>
56
+ </a>
57
+
58
+ </div>
59
+ <div class="clear"></div>
60
+ </div>
61
+
62
+ <div id="content"><h1>Class: SevenApi::Resources::Status
63
+
64
+
65
+
66
+ </h1>
67
+ <div class="box_info">
68
+
69
+ <dl>
70
+ <dt>Inherits:</dt>
71
+ <dd>
72
+ <span class="inheritName"><span class='object_link'><a href="../Resource.html" title="SevenApi::Resource (class)">SevenApi::Resource</a></span></span>
73
+
74
+ <ul class="fullTree">
75
+ <li>Object</li>
76
+
77
+ <li class="next"><span class='object_link'><a href="../Resource.html" title="SevenApi::Resource (class)">SevenApi::Resource</a></span></li>
78
+
79
+ <li class="next">SevenApi::Resources::Status</li>
80
+
81
+ </ul>
82
+ <a href="#" class="inheritanceTree">show all</a>
83
+
84
+ </dd>
85
+ </dl>
86
+
87
+
88
+
89
+
90
+
91
+
92
+
93
+
94
+
95
+
96
+
97
+ <dl>
98
+ <dt>Defined in:</dt>
99
+ <dd>lib/seven_api/resources/status.rb</dd>
100
+ </dl>
101
+
102
+ </div>
103
+
104
+
105
+
106
+
107
+ <h2>Constant Summary</h2>
108
+
109
+ <h3 class="inherited">Constants inherited
110
+ from <span class='object_link'><a href="../Resource.html" title="SevenApi::Resource (class)">SevenApi::Resource</a></span></h3>
111
+ <p class="inherited"><span class='object_link'><a href="../Resource.html#BASE_PATH-constant" title="SevenApi::Resource::BASE_PATH (constant)">SevenApi::Resource::BASE_PATH</a></span></p>
112
+
113
+
114
+
115
+
116
+ <h2>Instance Attribute Summary</h2>
117
+
118
+ <h3 class="inherited">Attributes inherited from <span class='object_link'><a href="../Resource.html" title="SevenApi::Resource (class)">SevenApi::Resource</a></span></h3>
119
+ <p class="inherited"><span class='object_link'><a href="../Resource.html#api_key-instance_method" title="SevenApi::Resource#api_key (method)">#api_key</a></span>, <span class='object_link'><a href="../Resource.html#builder-instance_method" title="SevenApi::Resource#builder (method)">#builder</a></span>, <span class='object_link'><a href="../Resource.html#conn-instance_method" title="SevenApi::Resource#conn (method)">#conn</a></span>, <span class='object_link'><a href="../Resource.html#endpoint-instance_method" title="SevenApi::Resource#endpoint (method)">#endpoint</a></span>, <span class='object_link'><a href="../Resource.html#http_methods-instance_method" title="SevenApi::Resource#http_methods (method)">#http_methods</a></span>, <span class='object_link'><a href="../Resource.html#request_methods-instance_method" title="SevenApi::Resource#request_methods (method)">#request_methods</a></span>, <span class='object_link'><a href="../Resource.html#sent_with-instance_method" title="SevenApi::Resource#sent_with (method)">#sent_with</a></span></p>
120
+
121
+
122
+
123
+ <h2>
124
+ Instance Method Summary
125
+ <small><a href="#" class="summary_toggle">collapse</a></small>
126
+ </h2>
127
+
128
+ <ul class="summary">
129
+
130
+ <li class="public ">
131
+ <span class="summary_signature">
132
+
133
+ <a href="#retrieve-instance_method" title="#retrieve (instance method)">#<strong>retrieve</strong>(params) &#x21d2; String </a>
134
+
135
+
136
+
137
+ </span>
138
+
139
+
140
+
141
+
142
+
143
+
144
+
145
+
146
+
147
+ <span class="summary_desc"><div class='inline'>
148
+ <p>Retrieve delivery report for a SMS read more: <a href="https://www.seven.io/en/docs/gateway/http-api/status-reports/#query-delivery-reports">www.seven.io/en/docs/gateway/http-api/status-reports/#query-delivery-reports</a>.</p>
149
+ </div></span>
150
+
151
+ </li>
152
+
153
+
154
+ </ul>
155
+
156
+
157
+
158
+
159
+
160
+
161
+
162
+
163
+
164
+
165
+
166
+ <h3 class="inherited">Methods inherited from <span class='object_link'><a href="../Resource.html" title="SevenApi::Resource (class)">SevenApi::Resource</a></span></h3>
167
+ <p class="inherited"><span class='object_link'><a href="../Resource.html#get_endpoint-class_method" title="SevenApi::Resource.get_endpoint (method)">get_endpoint</a></span>, <span class='object_link'><a href="../Resource.html#get_http_methods-class_method" title="SevenApi::Resource.get_http_methods (method)">get_http_methods</a></span>, <span class='object_link'><a href="../Resource.html#initialize-instance_method" title="SevenApi::Resource#initialize (method)">#initialize</a></span></p>
168
+ <div id="constructor_details" class="method_details_list">
169
+ <h2>Constructor Details</h2>
170
+
171
+ <p class="notice">This class inherits a constructor from <span class='object_link'><a href="../Resource.html#initialize-instance_method" title="SevenApi::Resource#initialize (method)">SevenApi::Resource</a></span></p>
172
+
173
+ </div>
174
+
175
+
176
+ <div id="instance_method_details" class="method_details_list">
177
+ <h2>Instance Method Details</h2>
178
+
179
+
180
+ <div class="method_details first">
181
+ <h3 class="signature first" id="retrieve-instance_method">
182
+
183
+ #<strong>retrieve</strong>(params) &#x21d2; <tt>String</tt>
184
+
185
+
186
+
187
+
188
+
189
+ </h3><div class="docstring">
190
+ <div class="discussion">
191
+
192
+ <p>Retrieve delivery report for a SMS read more: <a href="https://www.seven.io/en/docs/gateway/http-api/status-reports/#query-delivery-reports">www.seven.io/en/docs/gateway/http-api/status-reports/#query-delivery-reports</a></p>
193
+
194
+
195
+ </div>
196
+ </div>
197
+ <div class="tags">
198
+ <p class="tag_title">Parameters:</p>
199
+ <ul class="param">
200
+
201
+ <li>
202
+
203
+ <span class='name'>params</span>
204
+
205
+
206
+ <span class='type'>(<tt>Hash</tt>)</span>
207
+
208
+
209
+
210
+ </li>
211
+
212
+ </ul>
213
+
214
+ <p class="tag_title">Returns:</p>
215
+ <ul class="return">
216
+
217
+ <li>
218
+
219
+
220
+ <span class='type'>(<tt>String</tt>)</span>
221
+
222
+
223
+
224
+ </li>
225
+
226
+ </ul>
227
+
228
+ </div><table class="source_code">
229
+ <tr>
230
+ <td>
231
+ <pre class="lines">
232
+
233
+
234
+ 17
235
+ 18
236
+ 19</pre>
237
+ </td>
238
+ <td>
239
+ <pre class="code"><span class="info file"># File 'lib/seven_api/resources/status.rb', line 17</span>
240
+
241
+ <span class='kw'>def</span> <span class='id identifier rubyid_retrieve'>retrieve</span><span class='lparen'>(</span><span class='id identifier rubyid_params'>params</span><span class='rparen'>)</span>
242
+ <span class='id identifier rubyid_request'>request</span><span class='lparen'>(</span><span class='id identifier rubyid_params'>params</span><span class='rparen'>)</span>
243
+ <span class='kw'>end</span></pre>
244
+ </td>
245
+ </tr>
246
+ </table>
247
+ </div>
248
+
249
+ </div>
250
+
251
+ </div>
252
+
253
+ <div id="footer">
254
+ Generated on Fri Aug 25 14:18:46 2023 by
255
+ <a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
256
+ 0.9.34 (ruby-3.2.2).
257
+ </div>
258
+
259
+ </div>
260
+ </body>
261
261
  </html>