freeclimb 5.0.0 → 5.1.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -1
- data/Gemfile +2 -1
- data/Gemfile.lock +21 -15
- data/README.md +5 -4
- data/docs/MessageResult.md +7 -1
- data/docs/TFNCampaign.md +34 -0
- data/lib/freeclimb/configuration.rb +1 -2
- data/lib/freeclimb/models/dequeue.rb +2 -4
- data/lib/freeclimb/models/message_result.rb +36 -5
- data/lib/freeclimb/models/remove_from_conference.rb +2 -4
- data/lib/freeclimb/models/start_record_call.rb +2 -4
- data/lib/freeclimb/models/terminate_conference.rb +2 -4
- data/lib/freeclimb/models/tfn_campaign.rb +370 -0
- data/lib/freeclimb/models/unpark.rb +2 -4
- data/lib/freeclimb/version.rb +1 -1
- data/lib/freeclimb.rb +1 -0
- data/openapi.json +93 -38
- data/spec/api/default_api_spec.rb +39 -117
- data/spec/models/account_request_spec.rb +113 -2
- data/spec/models/account_result_spec.rb +591 -28
- data/spec/models/account_status_spec.rb +1 -0
- data/spec/models/account_type_spec.rb +1 -0
- data/spec/models/add_to_conference_notification_webhook_spec.rb +654 -5
- data/spec/models/add_to_conference_spec.rb +471 -2
- data/spec/models/add_to_queue_notification_webhook_spec.rb +465 -2
- data/spec/models/answered_by_spec.rb +1 -0
- data/spec/models/application_list_spec.rb +323 -2
- data/spec/models/application_request_spec.rb +393 -2
- data/spec/models/application_result_spec.rb +723 -14
- data/spec/models/available_number_list_spec.rb +323 -2
- data/spec/models/available_number_spec.rb +380 -21
- data/spec/models/barge_in_reason_spec.rb +1 -0
- data/spec/models/buy_incoming_number_request_spec.rb +169 -2
- data/spec/models/call_control_webhook_spec.rb +281 -2
- data/spec/models/call_direction_spec.rb +1 -0
- data/spec/models/call_ended_reason_spec.rb +1 -0
- data/spec/models/call_list_spec.rb +323 -2
- data/spec/models/call_result_spec.rb +1020 -9
- data/spec/models/call_status_spec.rb +1 -0
- data/spec/models/call_status_webhook_spec.rb +501 -2
- data/spec/models/capabilities_spec.rb +191 -2
- data/spec/models/completion_request_spec.rb +54 -2
- data/spec/models/completion_result_spec.rb +93 -2
- data/spec/models/completion_result_status_spec.rb +1 -0
- data/spec/models/conference_list_spec.rb +323 -2
- data/spec/models/conference_participant_list_spec.rb +323 -2
- data/spec/models/conference_participant_result_spec.rb +532 -7
- data/spec/models/conference_recording_status_webhook_spec.rb +654 -5
- data/spec/models/conference_result_spec.rb +768 -55
- data/spec/models/conference_status_spec.rb +1 -0
- data/spec/models/conference_status_webhook_spec.rb +654 -5
- data/spec/models/create_conference_request_spec.rb +243 -2
- data/spec/models/create_conference_spec.rb +281 -2
- data/spec/models/create_conference_webhook_spec.rb +654 -5
- data/spec/models/create_web_rtc_token_spec.rb +151 -2
- data/spec/models/dequeue_spec.rb +1 -0
- data/spec/models/dequeue_webhook_spec.rb +565 -8
- data/spec/models/enqueue_spec.rb +225 -2
- data/spec/models/filter_logs_request_spec.rb +57 -2
- data/spec/models/get_digits_reason_spec.rb +1 -0
- data/spec/models/get_digits_spec.rb +379 -2
- data/spec/models/get_digits_webhook_spec.rb +623 -12
- data/spec/models/get_speech_reason_spec.rb +1 -0
- data/spec/models/get_speech_spec.rb +556 -11
- data/spec/models/get_speech_webhook_spec.rb +870 -15
- data/spec/models/grammar_file_built_in_spec.rb +1 -0
- data/spec/models/grammar_type_spec.rb +1 -0
- data/spec/models/hangup_spec.rb +57 -2
- data/spec/models/if_machine_spec.rb +1 -0
- data/spec/models/inbound_call_webhook_spec.rb +521 -2
- data/spec/models/incoming_number_list_spec.rb +323 -2
- data/spec/models/incoming_number_request_spec.rb +169 -2
- data/spec/models/incoming_number_result_spec.rb +930 -43
- data/spec/models/language_spec.rb +1 -0
- data/spec/models/leave_conference_webhook_spec.rb +465 -2
- data/spec/models/log_level_spec.rb +1 -0
- data/spec/models/log_list_spec.rb +323 -2
- data/spec/models/log_result_spec.rb +368 -9
- data/spec/models/machine_detected_webhook_spec.rb +565 -10
- data/spec/models/machine_type_spec.rb +1 -0
- data/spec/models/make_call_request_spec.rb +529 -6
- data/spec/models/message_delivery_webhook_spec.rb +565 -6
- data/spec/models/message_direction_spec.rb +1 -0
- data/spec/models/message_request_spec.rb +469 -2
- data/spec/models/message_result_spec.rb +1364 -225
- data/spec/models/message_status_spec.rb +1 -0
- data/spec/models/message_status_webhook_spec.rb +615 -20
- data/spec/models/messages_list_spec.rb +323 -2
- data/spec/models/mutable_resource_model_spec.rb +207 -2
- data/spec/models/out_dial_api_connect_webhook_spec.rb +521 -2
- data/spec/models/out_dial_connect_webhook_spec.rb +521 -2
- data/spec/models/out_dial_spec.rb +505 -2
- data/spec/models/out_dial_start_webhook_spec.rb +599 -24
- data/spec/models/pagination_model_spec.rb +285 -2
- data/spec/models/park_spec.rb +169 -2
- data/spec/models/pause_spec.rb +39 -2
- data/spec/models/percl_command_spec.rb +54 -2
- data/spec/models/percl_script_spec.rb +39 -2
- data/spec/models/play_beep_spec.rb +1 -0
- data/spec/models/play_early_media_spec.rb +57 -2
- data/spec/models/play_spec.rb +133 -2
- data/spec/models/queue_list_spec.rb +323 -2
- data/spec/models/queue_member_list_spec.rb +323 -2
- data/spec/models/queue_member_spec.rb +245 -2
- data/spec/models/queue_request_spec.rb +95 -2
- data/spec/models/queue_result_spec.rb +564 -15
- data/spec/models/queue_result_status_spec.rb +1 -0
- data/spec/models/queue_wait_webhook_spec.rb +616 -21
- data/spec/models/record_utterance_spec.rb +303 -2
- data/spec/models/record_utterance_term_reason_spec.rb +1 -0
- data/spec/models/record_webhook_spec.rb +868 -13
- data/spec/models/recording_list_spec.rb +323 -2
- data/spec/models/recording_result_spec.rb +469 -2
- data/spec/models/redirect_spec.rb +57 -2
- data/spec/models/redirect_webhook_spec.rb +521 -2
- data/spec/models/reject_spec.rb +57 -2
- data/spec/models/remove_from_conference_spec.rb +1 -0
- data/spec/models/remove_from_queue_notification_webhook_spec.rb +546 -9
- data/spec/models/request_type_spec.rb +1 -0
- data/spec/models/say_spec.rb +189 -2
- data/spec/models/send_digits_spec.rb +133 -2
- data/spec/models/set_dtmf_pass_through_spec.rb +39 -2
- data/spec/models/set_listen_spec.rb +39 -2
- data/spec/models/set_talk_spec.rb +39 -2
- data/spec/models/sms_spec.rb +225 -2
- data/spec/models/sms_ten_dlc_brand_alt_business_id_type_spec.rb +1 -0
- data/spec/models/sms_ten_dlc_brand_entity_type_spec.rb +1 -0
- data/spec/models/sms_ten_dlc_brand_identity_status_spec.rb +1 -0
- data/spec/models/sms_ten_dlc_brand_relationship_spec.rb +1 -0
- data/spec/models/sms_ten_dlc_brand_spec.rb +1969 -423
- data/spec/models/sms_ten_dlc_brand_stock_exchange_spec.rb +1 -0
- data/spec/models/sms_ten_dlc_brands_list_result_spec.rb +323 -2
- data/spec/models/sms_ten_dlc_campaign_spec.rb +2224 -550
- data/spec/models/sms_ten_dlc_campaign_status_spec.rb +1 -0
- data/spec/models/sms_ten_dlc_campaigns_list_result_spec.rb +323 -2
- data/spec/models/sms_ten_dlc_partner_campaign_brand_spec.rb +597 -17
- data/spec/models/sms_ten_dlc_partner_campaign_spec.rb +1537 -155
- data/spec/models/sms_ten_dlc_partner_campaign_status_spec.rb +1 -0
- data/spec/models/sms_ten_dlc_partner_campaigns_list_result_spec.rb +323 -2
- data/spec/models/sms_toll_free_campaign_registration_status_spec.rb +1 -0
- data/spec/models/sms_toll_free_campaign_spec.rb +355 -2
- data/spec/models/sms_toll_free_campaigns_list_result_spec.rb +323 -2
- data/spec/models/start_record_call_spec.rb +1 -0
- data/spec/models/terminate_conference_spec.rb +1 -0
- data/spec/models/tfn_campaign_spec.rb +1089 -0
- data/spec/models/tfn_spec.rb +57 -2
- data/spec/models/transcribe_reason_spec.rb +1 -0
- data/spec/models/transcribe_term_reason_spec.rb +1 -0
- data/spec/models/transcribe_utterance_record_spec.rb +115 -2
- data/spec/models/transcribe_utterance_spec.rb +288 -21
- data/spec/models/transcribe_webhook_spec.rb +1049 -4
- data/spec/models/unpark_spec.rb +1 -0
- data/spec/models/update_call_request_spec.rb +37 -2
- data/spec/models/update_call_request_status_spec.rb +1 -0
- data/spec/models/update_conference_participant_request_spec.rb +115 -2
- data/spec/models/update_conference_request_spec.rb +129 -2
- data/spec/models/update_conference_request_status_spec.rb +1 -0
- data/spec/models/webhook_spec.rb +54 -2
- metadata +129 -125
@@ -13,6 +13,7 @@ OpenAPI Generator version: 7.9.0
|
|
13
13
|
require 'spec_helper'
|
14
14
|
require 'json'
|
15
15
|
require 'date'
|
16
|
+
include Freeclimb
|
16
17
|
|
17
18
|
# Unit tests for Freeclimb::SetTalk
|
18
19
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
@@ -31,6 +32,8 @@ describe Freeclimb::SetTalk do
|
|
31
32
|
instance.talk = false
|
32
33
|
expect(instance.talk).to eq(false)
|
33
34
|
|
35
|
+
|
36
|
+
|
34
37
|
end
|
35
38
|
end
|
36
39
|
|
@@ -39,12 +42,16 @@ describe Freeclimb::SetTalk do
|
|
39
42
|
expect { instance = Freeclimb::SetTalk.new(
|
40
43
|
talk: true,
|
41
44
|
|
45
|
+
|
46
|
+
|
42
47
|
)}.not_to raise_error()
|
43
48
|
end
|
44
49
|
it 'fails to initialize with input argument that is not a hash in Freeclimb::SetTalk' do
|
45
50
|
expect { instance = Freeclimb::SetTalk.new(
|
46
51
|
talk: true,
|
47
52
|
|
53
|
+
|
54
|
+
|
48
55
|
invalid_attribute: true
|
49
56
|
)}.to raise_error(ArgumentError)
|
50
57
|
end
|
@@ -52,6 +59,8 @@ describe Freeclimb::SetTalk do
|
|
52
59
|
expect { instance = Freeclimb::SetTalk.new(
|
53
60
|
talk: true,
|
54
61
|
|
62
|
+
|
63
|
+
|
55
64
|
invalid_attribute: true
|
56
65
|
)}.to raise_error(ArgumentError)
|
57
66
|
end
|
@@ -62,6 +71,8 @@ describe Freeclimb::SetTalk do
|
|
62
71
|
instance = Freeclimb::SetTalk.new(
|
63
72
|
talk: true,
|
64
73
|
|
74
|
+
|
75
|
+
|
65
76
|
)
|
66
77
|
expect(instance.valid?).to eq(true)
|
67
78
|
end
|
@@ -78,14 +89,18 @@ describe Freeclimb::SetTalk do
|
|
78
89
|
|
79
90
|
describe 'test method "eql?"' do
|
80
91
|
it 'checks if objects are equal' do
|
81
|
-
|
92
|
+
|
82
93
|
instance_1 = Freeclimb::SetTalk.new(
|
83
94
|
talk: true,
|
84
95
|
|
96
|
+
|
97
|
+
|
85
98
|
)
|
86
99
|
instance_2 = Freeclimb::SetTalk.new(
|
87
100
|
talk: true,
|
88
101
|
|
102
|
+
|
103
|
+
|
89
104
|
)
|
90
105
|
expect(instance_1.eql?(instance_2)).to eq(true)
|
91
106
|
end
|
@@ -94,10 +109,14 @@ describe Freeclimb::SetTalk do
|
|
94
109
|
instance_1 = Freeclimb::SetTalk.new(
|
95
110
|
talk: true,
|
96
111
|
|
112
|
+
|
113
|
+
|
97
114
|
)
|
98
115
|
instance_2 = Freeclimb::SetTalk.new(
|
99
116
|
talk: false,
|
100
117
|
|
118
|
+
|
119
|
+
|
101
120
|
)
|
102
121
|
expect(instance_1.eql?(instance_2)).to eq(false)
|
103
122
|
end
|
@@ -108,6 +127,8 @@ describe Freeclimb::SetTalk do
|
|
108
127
|
instance = Freeclimb::SetTalk.new(
|
109
128
|
talk: true,
|
110
129
|
|
130
|
+
|
131
|
+
|
111
132
|
)
|
112
133
|
expect(instance.hash).to be_a_kind_of(Integer)
|
113
134
|
end
|
@@ -118,10 +139,14 @@ describe Freeclimb::SetTalk do
|
|
118
139
|
instance_1 = Freeclimb::SetTalk.new(
|
119
140
|
talk: true,
|
120
141
|
|
142
|
+
|
143
|
+
|
121
144
|
)
|
122
145
|
instance_2 = Freeclimb::SetTalk.new(
|
123
146
|
talk: true,
|
124
147
|
|
148
|
+
|
149
|
+
|
125
150
|
)
|
126
151
|
|
127
152
|
expect(instance_2.build_from_hash(instance_1.hash)).to eq(instance_1.build_from_hash(instance_1.hash))
|
@@ -132,7 +157,11 @@ describe Freeclimb::SetTalk do
|
|
132
157
|
instance = Freeclimb::SetTalk.new(
|
133
158
|
talk: true,
|
134
159
|
|
160
|
+
|
161
|
+
|
135
162
|
)
|
163
|
+
|
164
|
+
|
136
165
|
it 'deserializes the data of talk' do
|
137
166
|
expect(instance._deserialize("Boolean", instance.talk)).to be_a_kind_of(TrueClass)
|
138
167
|
end
|
@@ -143,6 +172,8 @@ describe Freeclimb::SetTalk do
|
|
143
172
|
instance = Freeclimb::SetTalk.new(
|
144
173
|
talk: true,
|
145
174
|
|
175
|
+
|
176
|
+
|
146
177
|
)
|
147
178
|
expect(instance.to_s).to eq(instance.to_hash.to_s)
|
148
179
|
end
|
@@ -153,18 +184,24 @@ describe Freeclimb::SetTalk do
|
|
153
184
|
instance = Freeclimb::SetTalk.new(
|
154
185
|
talk: true,
|
155
186
|
|
187
|
+
|
188
|
+
|
156
189
|
)
|
157
190
|
expect(instance.to_hash).to be_a_kind_of(Hash)
|
158
191
|
end
|
159
192
|
it 'creates equal hash for two equal objects' do
|
160
|
-
|
193
|
+
|
161
194
|
instance_1 = Freeclimb::SetTalk.new(
|
162
195
|
talk: true,
|
163
196
|
|
197
|
+
|
198
|
+
|
164
199
|
)
|
165
200
|
instance_2 = Freeclimb::SetTalk.new(
|
166
201
|
talk: true,
|
167
202
|
|
203
|
+
|
204
|
+
|
168
205
|
)
|
169
206
|
expect(instance_1.to_hash).to eq(instance_2.to_hash)
|
170
207
|
end
|
data/spec/models/sms_spec.rb
CHANGED
@@ -13,6 +13,7 @@ OpenAPI Generator version: 7.9.0
|
|
13
13
|
require 'spec_helper'
|
14
14
|
require 'json'
|
15
15
|
require 'date'
|
16
|
+
include Freeclimb
|
16
17
|
|
17
18
|
# Unit tests for Freeclimb::Sms
|
18
19
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
@@ -28,72 +29,120 @@ describe Freeclimb::Sms do
|
|
28
29
|
|
29
30
|
describe 'test attribute "to"' do
|
30
31
|
it 'should work' do
|
32
|
+
|
31
33
|
instance.to = "TEST_STRING"
|
32
34
|
expect(instance.to).to eq("TEST_STRING")
|
33
35
|
|
36
|
+
|
37
|
+
|
34
38
|
end
|
35
39
|
end
|
36
40
|
|
37
41
|
describe 'test attribute "from"' do
|
38
42
|
it 'should work' do
|
43
|
+
|
39
44
|
instance.from = "TEST_STRING"
|
40
45
|
expect(instance.from).to eq("TEST_STRING")
|
41
46
|
|
47
|
+
|
48
|
+
|
42
49
|
end
|
43
50
|
end
|
44
51
|
|
45
52
|
describe 'test attribute "text"' do
|
46
53
|
it 'should work' do
|
54
|
+
|
47
55
|
instance.text = "TEST_STRING"
|
48
56
|
expect(instance.text).to eq("TEST_STRING")
|
49
57
|
|
58
|
+
|
59
|
+
|
50
60
|
end
|
51
61
|
end
|
52
62
|
|
53
63
|
describe 'test attribute "notification_url"' do
|
54
64
|
it 'should work' do
|
65
|
+
|
55
66
|
instance.notification_url = "TEST_STRING"
|
56
67
|
expect(instance.notification_url).to eq("TEST_STRING")
|
57
68
|
|
69
|
+
|
70
|
+
|
58
71
|
end
|
59
72
|
end
|
60
73
|
|
61
74
|
describe 'test method "initialize"' do
|
62
75
|
it 'properly initializes with values' do
|
63
76
|
expect { instance = Freeclimb::Sms.new(
|
77
|
+
|
64
78
|
to: "TS",
|
65
79
|
|
80
|
+
|
81
|
+
|
82
|
+
|
66
83
|
from: "TS",
|
67
84
|
|
85
|
+
|
86
|
+
|
87
|
+
|
68
88
|
text: "TS",
|
69
89
|
|
90
|
+
|
91
|
+
|
92
|
+
|
70
93
|
notification_url: "TS",
|
71
94
|
|
95
|
+
|
96
|
+
|
72
97
|
)}.not_to raise_error()
|
73
98
|
end
|
74
99
|
it 'fails to initialize with input argument that is not a hash in Freeclimb::Sms' do
|
75
100
|
expect { instance = Freeclimb::Sms.new(
|
101
|
+
|
76
102
|
to: "TS",
|
77
103
|
|
104
|
+
|
105
|
+
|
106
|
+
|
78
107
|
from: "TS",
|
79
108
|
|
109
|
+
|
110
|
+
|
111
|
+
|
80
112
|
text: "TS",
|
81
113
|
|
114
|
+
|
115
|
+
|
116
|
+
|
82
117
|
notification_url: "TS",
|
83
118
|
|
119
|
+
|
120
|
+
|
84
121
|
invalid_attribute: true
|
85
122
|
)}.to raise_error(ArgumentError)
|
86
123
|
end
|
87
124
|
it 'fails to initialize with invalid attribute' do
|
88
125
|
expect { instance = Freeclimb::Sms.new(
|
126
|
+
|
89
127
|
to: "TS",
|
90
128
|
|
129
|
+
|
130
|
+
|
131
|
+
|
91
132
|
from: "TS",
|
92
133
|
|
134
|
+
|
135
|
+
|
136
|
+
|
93
137
|
text: "TS",
|
94
138
|
|
139
|
+
|
140
|
+
|
141
|
+
|
95
142
|
notification_url: "TS",
|
96
143
|
|
144
|
+
|
145
|
+
|
97
146
|
invalid_attribute: true
|
98
147
|
)}.to raise_error(ArgumentError)
|
99
148
|
end
|
@@ -102,14 +151,26 @@ describe Freeclimb::Sms do
|
|
102
151
|
describe 'test method "valid"' do
|
103
152
|
it 'checks if properties are valid' do
|
104
153
|
instance = Freeclimb::Sms.new(
|
154
|
+
|
105
155
|
to: "TS",
|
106
156
|
|
157
|
+
|
158
|
+
|
159
|
+
|
107
160
|
from: "TS",
|
108
161
|
|
162
|
+
|
163
|
+
|
164
|
+
|
109
165
|
text: "TS",
|
110
166
|
|
167
|
+
|
168
|
+
|
169
|
+
|
111
170
|
notification_url: "TS",
|
112
171
|
|
172
|
+
|
173
|
+
|
113
174
|
)
|
114
175
|
expect(instance.valid?).to eq(true)
|
115
176
|
end
|
@@ -126,50 +187,101 @@ describe Freeclimb::Sms do
|
|
126
187
|
|
127
188
|
describe 'test method "eql?"' do
|
128
189
|
it 'checks if objects are equal' do
|
129
|
-
|
190
|
+
|
191
|
+
|
192
|
+
|
193
|
+
|
130
194
|
instance_1 = Freeclimb::Sms.new(
|
195
|
+
|
131
196
|
to: "TS",
|
132
197
|
|
198
|
+
|
199
|
+
|
200
|
+
|
133
201
|
from: "TS",
|
134
202
|
|
203
|
+
|
204
|
+
|
205
|
+
|
135
206
|
text: "TS",
|
136
207
|
|
208
|
+
|
209
|
+
|
210
|
+
|
137
211
|
notification_url: "TS",
|
138
212
|
|
213
|
+
|
214
|
+
|
139
215
|
)
|
140
216
|
instance_2 = Freeclimb::Sms.new(
|
217
|
+
|
141
218
|
to: "TS",
|
142
219
|
|
220
|
+
|
221
|
+
|
222
|
+
|
143
223
|
from: "TS",
|
144
224
|
|
225
|
+
|
226
|
+
|
227
|
+
|
145
228
|
text: "TS",
|
146
229
|
|
230
|
+
|
231
|
+
|
232
|
+
|
147
233
|
notification_url: "TS",
|
148
234
|
|
235
|
+
|
236
|
+
|
149
237
|
)
|
150
238
|
expect(instance_1.eql?(instance_2)).to eq(true)
|
151
239
|
end
|
152
240
|
|
153
241
|
it 'checks if objects are not equal' do
|
154
242
|
instance_1 = Freeclimb::Sms.new(
|
243
|
+
|
155
244
|
to: "TS",
|
156
245
|
|
246
|
+
|
247
|
+
|
248
|
+
|
157
249
|
from: "TS",
|
158
250
|
|
251
|
+
|
252
|
+
|
253
|
+
|
159
254
|
text: "TS",
|
160
255
|
|
256
|
+
|
257
|
+
|
258
|
+
|
161
259
|
notification_url: "TS",
|
162
260
|
|
261
|
+
|
262
|
+
|
163
263
|
)
|
164
264
|
instance_2 = Freeclimb::Sms.new(
|
265
|
+
|
165
266
|
to: "ST",
|
166
267
|
|
268
|
+
|
269
|
+
|
270
|
+
|
167
271
|
from: "ST",
|
168
272
|
|
273
|
+
|
274
|
+
|
275
|
+
|
169
276
|
text: "ST",
|
170
277
|
|
278
|
+
|
279
|
+
|
280
|
+
|
171
281
|
notification_url: "ST",
|
172
282
|
|
283
|
+
|
284
|
+
|
173
285
|
)
|
174
286
|
expect(instance_1.eql?(instance_2)).to eq(false)
|
175
287
|
end
|
@@ -178,14 +290,26 @@ describe Freeclimb::Sms do
|
|
178
290
|
describe 'test method "hash"' do
|
179
291
|
it 'calculates hash code' do
|
180
292
|
instance = Freeclimb::Sms.new(
|
293
|
+
|
181
294
|
to: "TS",
|
182
295
|
|
296
|
+
|
297
|
+
|
298
|
+
|
183
299
|
from: "TS",
|
184
300
|
|
301
|
+
|
302
|
+
|
303
|
+
|
185
304
|
text: "TS",
|
186
305
|
|
306
|
+
|
307
|
+
|
308
|
+
|
187
309
|
notification_url: "TS",
|
188
310
|
|
311
|
+
|
312
|
+
|
189
313
|
)
|
190
314
|
expect(instance.hash).to be_a_kind_of(Integer)
|
191
315
|
end
|
@@ -194,24 +318,48 @@ describe Freeclimb::Sms do
|
|
194
318
|
describe 'test method "build_from_hash"' do
|
195
319
|
it 'builds equivalent model from hash code' do
|
196
320
|
instance_1 = Freeclimb::Sms.new(
|
321
|
+
|
197
322
|
to: "TS",
|
198
323
|
|
324
|
+
|
325
|
+
|
326
|
+
|
199
327
|
from: "TS",
|
200
328
|
|
329
|
+
|
330
|
+
|
331
|
+
|
201
332
|
text: "TS",
|
202
333
|
|
334
|
+
|
335
|
+
|
336
|
+
|
203
337
|
notification_url: "TS",
|
204
338
|
|
339
|
+
|
340
|
+
|
205
341
|
)
|
206
342
|
instance_2 = Freeclimb::Sms.new(
|
343
|
+
|
207
344
|
to: "TS",
|
208
345
|
|
346
|
+
|
347
|
+
|
348
|
+
|
209
349
|
from: "TS",
|
210
350
|
|
351
|
+
|
352
|
+
|
353
|
+
|
211
354
|
text: "TS",
|
212
355
|
|
356
|
+
|
357
|
+
|
358
|
+
|
213
359
|
notification_url: "TS",
|
214
360
|
|
361
|
+
|
362
|
+
|
215
363
|
)
|
216
364
|
|
217
365
|
expect(instance_2.build_from_hash(instance_1.hash)).to eq(instance_1.build_from_hash(instance_1.hash))
|
@@ -220,40 +368,72 @@ describe Freeclimb::Sms do
|
|
220
368
|
|
221
369
|
describe 'test method "_deserialize"' do
|
222
370
|
instance = Freeclimb::Sms.new(
|
371
|
+
|
223
372
|
to: "TS",
|
224
373
|
|
374
|
+
|
375
|
+
|
376
|
+
|
225
377
|
from: "TS",
|
226
378
|
|
379
|
+
|
380
|
+
|
381
|
+
|
227
382
|
text: "TS",
|
228
383
|
|
384
|
+
|
385
|
+
|
386
|
+
|
229
387
|
notification_url: "TS",
|
230
388
|
|
389
|
+
|
390
|
+
|
231
391
|
)
|
232
392
|
it 'deserializes the data of to' do
|
233
393
|
expect(instance._deserialize("String", instance.to)).to be_a_kind_of(String)
|
234
394
|
end
|
395
|
+
|
396
|
+
|
235
397
|
it 'deserializes the data of from' do
|
236
398
|
expect(instance._deserialize("String", instance.from)).to be_a_kind_of(String)
|
237
399
|
end
|
400
|
+
|
401
|
+
|
238
402
|
it 'deserializes the data of text' do
|
239
403
|
expect(instance._deserialize("String", instance.text)).to be_a_kind_of(String)
|
240
404
|
end
|
405
|
+
|
406
|
+
|
241
407
|
it 'deserializes the data of notification_url' do
|
242
408
|
expect(instance._deserialize("String", instance.notification_url)).to be_a_kind_of(String)
|
243
409
|
end
|
410
|
+
|
411
|
+
|
244
412
|
end
|
245
413
|
|
246
414
|
describe 'test method "to_s"' do
|
247
415
|
it 'returns the string representation of the object' do
|
248
416
|
instance = Freeclimb::Sms.new(
|
417
|
+
|
249
418
|
to: "TS",
|
250
419
|
|
420
|
+
|
421
|
+
|
422
|
+
|
251
423
|
from: "TS",
|
252
424
|
|
425
|
+
|
426
|
+
|
427
|
+
|
253
428
|
text: "TS",
|
254
429
|
|
430
|
+
|
431
|
+
|
432
|
+
|
255
433
|
notification_url: "TS",
|
256
434
|
|
435
|
+
|
436
|
+
|
257
437
|
)
|
258
438
|
expect(instance.to_s).to eq(instance.to_hash.to_s)
|
259
439
|
end
|
@@ -262,38 +442,77 @@ describe Freeclimb::Sms do
|
|
262
442
|
describe 'test method "to_hash"' do
|
263
443
|
it 'returns the object in the form of hash' do
|
264
444
|
instance = Freeclimb::Sms.new(
|
445
|
+
|
265
446
|
to: "TS",
|
266
447
|
|
448
|
+
|
449
|
+
|
450
|
+
|
267
451
|
from: "TS",
|
268
452
|
|
453
|
+
|
454
|
+
|
455
|
+
|
269
456
|
text: "TS",
|
270
457
|
|
458
|
+
|
459
|
+
|
460
|
+
|
271
461
|
notification_url: "TS",
|
272
462
|
|
463
|
+
|
464
|
+
|
273
465
|
)
|
274
466
|
expect(instance.to_hash).to be_a_kind_of(Hash)
|
275
467
|
end
|
276
468
|
it 'creates equal hash for two equal objects' do
|
277
|
-
|
469
|
+
|
470
|
+
|
471
|
+
|
472
|
+
|
278
473
|
instance_1 = Freeclimb::Sms.new(
|
474
|
+
|
279
475
|
to: "TS",
|
280
476
|
|
477
|
+
|
478
|
+
|
479
|
+
|
281
480
|
from: "TS",
|
282
481
|
|
482
|
+
|
483
|
+
|
484
|
+
|
283
485
|
text: "TS",
|
284
486
|
|
487
|
+
|
488
|
+
|
489
|
+
|
285
490
|
notification_url: "TS",
|
286
491
|
|
492
|
+
|
493
|
+
|
287
494
|
)
|
288
495
|
instance_2 = Freeclimb::Sms.new(
|
496
|
+
|
289
497
|
to: "TS",
|
290
498
|
|
499
|
+
|
500
|
+
|
501
|
+
|
291
502
|
from: "TS",
|
292
503
|
|
504
|
+
|
505
|
+
|
506
|
+
|
293
507
|
text: "TS",
|
294
508
|
|
509
|
+
|
510
|
+
|
511
|
+
|
295
512
|
notification_url: "TS",
|
296
513
|
|
514
|
+
|
515
|
+
|
297
516
|
)
|
298
517
|
expect(instance_1.to_hash).to eq(instance_2.to_hash)
|
299
518
|
end
|
@@ -301,15 +520,19 @@ describe Freeclimb::Sms do
|
|
301
520
|
|
302
521
|
describe 'test method "_to_hash"' do
|
303
522
|
instance = Freeclimb::Sms.new(
|
523
|
+
|
304
524
|
to: "TS",
|
305
525
|
|
306
526
|
|
527
|
+
|
307
528
|
from: "TS",
|
308
529
|
|
309
530
|
|
531
|
+
|
310
532
|
text: "TS",
|
311
533
|
|
312
534
|
|
535
|
+
|
313
536
|
notification_url: "TS",
|
314
537
|
|
315
538
|
)
|
@@ -13,6 +13,7 @@ OpenAPI Generator version: 7.9.0
|
|
13
13
|
require 'spec_helper'
|
14
14
|
require 'json'
|
15
15
|
require 'date'
|
16
|
+
include Freeclimb
|
16
17
|
|
17
18
|
# Unit tests for Freeclimb::SMSTenDLCBrandAltBusinessIdType
|
18
19
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|