dialmycalls_client 2.0.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.
- checksums.yaml +7 -0
- data/LICENSE +201 -0
- data/README.md +186 -0
- data/dialmycalls_client-1.0.0.gem +0 -0
- data/dialmycalls_client.gemspec +55 -0
- data/docs/Accessaccount.md +12 -0
- data/docs/Account.md +9 -0
- data/docs/AccountsApi.md +324 -0
- data/docs/CallRecipient.md +19 -0
- data/docs/CallerIdsApi.md +386 -0
- data/docs/Callerid.md +13 -0
- data/docs/CallsApi.md +278 -0
- data/docs/Callservice.md +17 -0
- data/docs/Contact.md +18 -0
- data/docs/ContactAttributes.md +11 -0
- data/docs/ContactsApi.md +330 -0
- data/docs/CreateAccessAccountParameters.md +10 -0
- data/docs/CreateCallParameters.md +18 -0
- data/docs/CreateCallerIdParameters.md +9 -0
- data/docs/CreateContactParameters.md +14 -0
- data/docs/CreateGroupParameters.md +8 -0
- data/docs/CreateRecordingByPhoneParameters.md +12 -0
- data/docs/CreateRecordingByUrlParameters.md +9 -0
- data/docs/CreateRecordingParameters.md +11 -0
- data/docs/CreateTextParameters.md +17 -0
- data/docs/CreateUnverifiedCallerIdParameters.md +9 -0
- data/docs/DoNotContactsApi.md +62 -0
- data/docs/Donotcontact.md +12 -0
- data/docs/Group.md +12 -0
- data/docs/GroupsApi.md +277 -0
- data/docs/Identifier.md +8 -0
- data/docs/Incomingtext.md +13 -0
- data/docs/Keyword.md +12 -0
- data/docs/KeywordsApi.md +168 -0
- data/docs/Polling.md +10 -0
- data/docs/PushToListenAgain.md +9 -0
- data/docs/PushToOptOut.md +9 -0
- data/docs/PushToRecord.md +9 -0
- data/docs/PushToTalk.md +12 -0
- data/docs/Recording.md +15 -0
- data/docs/RecordingsApi.md +383 -0
- data/docs/Service.md +16 -0
- data/docs/Shortcode.md +11 -0
- data/docs/TextRecipient.md +13 -0
- data/docs/TextsApi.md +492 -0
- data/docs/UpdateAccessAccountByIdParameters.md +10 -0
- data/docs/UpdateCallerIdByIdParameters.md +8 -0
- data/docs/UpdateContactByIdParameters.md +14 -0
- data/docs/UpdateGroupByIdParameters.md +8 -0
- data/docs/UpdateRecordingByIdParameters.md +8 -0
- data/docs/UpdateVanityNumberByIdParameters.md +12 -0
- data/docs/VanityNumbersApi.md +224 -0
- data/docs/Vanitynumber.md +16 -0
- data/docs/VerifyCallerIdByIdParameters.md +8 -0
- data/git_push.sh +67 -0
- data/lib/dialmycalls_client/api/accounts_api.rb +375 -0
- data/lib/dialmycalls_client/api/caller_ids_api.rb +440 -0
- data/lib/dialmycalls_client/api/calls_api.rb +321 -0
- data/lib/dialmycalls_client/api/contacts_api.rb +379 -0
- data/lib/dialmycalls_client/api/do_not_contacts_api.rb +90 -0
- data/lib/dialmycalls_client/api/groups_api.rb +322 -0
- data/lib/dialmycalls_client/api/keywords_api.rb +204 -0
- data/lib/dialmycalls_client/api/recordings_api.rb +436 -0
- data/lib/dialmycalls_client/api/texts_api.rb +547 -0
- data/lib/dialmycalls_client/api/vanity_numbers_api.rb +265 -0
- data/lib/dialmycalls_client/api_client.rb +379 -0
- data/lib/dialmycalls_client/api_error.rb +47 -0
- data/lib/dialmycalls_client/configuration.rb +214 -0
- data/lib/dialmycalls_client/models/accessaccount.rb +240 -0
- data/lib/dialmycalls_client/models/account.rb +210 -0
- data/lib/dialmycalls_client/models/call_recipient.rb +310 -0
- data/lib/dialmycalls_client/models/callerid.rb +250 -0
- data/lib/dialmycalls_client/models/callservice.rb +290 -0
- data/lib/dialmycalls_client/models/contact.rb +300 -0
- data/lib/dialmycalls_client/models/contact_attributes.rb +230 -0
- data/lib/dialmycalls_client/models/create_access_account_parameters.rb +220 -0
- data/lib/dialmycalls_client/models/create_call_parameters.rb +304 -0
- data/lib/dialmycalls_client/models/create_caller_id_parameters.rb +210 -0
- data/lib/dialmycalls_client/models/create_contact_parameters.rb +262 -0
- data/lib/dialmycalls_client/models/create_group_parameters.rb +200 -0
- data/lib/dialmycalls_client/models/create_recording_by_phone_parameters.rb +240 -0
- data/lib/dialmycalls_client/models/create_recording_by_url_parameters.rb +210 -0
- data/lib/dialmycalls_client/models/create_recording_parameters.rb +230 -0
- data/lib/dialmycalls_client/models/create_text_parameters.rb +294 -0
- data/lib/dialmycalls_client/models/create_unverified_caller_id_parameters.rb +210 -0
- data/lib/dialmycalls_client/models/donotcontact.rb +240 -0
- data/lib/dialmycalls_client/models/group.rb +240 -0
- data/lib/dialmycalls_client/models/identifier.rb +200 -0
- data/lib/dialmycalls_client/models/incomingtext.rb +250 -0
- data/lib/dialmycalls_client/models/keyword.rb +240 -0
- data/lib/dialmycalls_client/models/polling.rb +220 -0
- data/lib/dialmycalls_client/models/push_to_listen_again.rb +210 -0
- data/lib/dialmycalls_client/models/push_to_opt_out.rb +210 -0
- data/lib/dialmycalls_client/models/push_to_record.rb +210 -0
- data/lib/dialmycalls_client/models/push_to_talk.rb +240 -0
- data/lib/dialmycalls_client/models/recording.rb +270 -0
- data/lib/dialmycalls_client/models/service.rb +280 -0
- data/lib/dialmycalls_client/models/shortcode.rb +230 -0
- data/lib/dialmycalls_client/models/text_recipient.rb +250 -0
- data/lib/dialmycalls_client/models/update_access_account_by_id_parameters.rb +220 -0
- data/lib/dialmycalls_client/models/update_caller_id_by_id_parameters.rb +200 -0
- data/lib/dialmycalls_client/models/update_contact_by_id_parameters.rb +262 -0
- data/lib/dialmycalls_client/models/update_group_by_id_parameters.rb +200 -0
- data/lib/dialmycalls_client/models/update_recording_by_id_parameters.rb +200 -0
- data/lib/dialmycalls_client/models/update_vanity_number_by_id_parameters.rb +242 -0
- data/lib/dialmycalls_client/models/vanitynumber.rb +280 -0
- data/lib/dialmycalls_client/models/verify_caller_id_by_id_parameters.rb +200 -0
- data/lib/dialmycalls_client/version.rb +26 -0
- data/lib/dialmycalls_client.rb +99 -0
- data/spec/api/accounts_api_spec.rb +118 -0
- data/spec/api/caller_ids_api_spec.rb +132 -0
- data/spec/api/calls_api_spec.rb +107 -0
- data/spec/api/contacts_api_spec.rb +119 -0
- data/spec/api/do_not_contacts_api_spec.rb +58 -0
- data/spec/api/groups_api_spec.rb +107 -0
- data/spec/api/keywords_api_spec.rb +82 -0
- data/spec/api/recordings_api_spec.rb +131 -0
- data/spec/api/texts_api_spec.rb +155 -0
- data/spec/api/vanity_numbers_api_spec.rb +95 -0
- data/spec/api_client_spec.rb +237 -0
- data/spec/configuration_spec.rb +53 -0
- data/spec/models/accessaccount_spec.rb +77 -0
- data/spec/models/account_spec.rb +59 -0
- data/spec/models/call_recipient_spec.rb +119 -0
- data/spec/models/callerid_spec.rb +83 -0
- data/spec/models/callservice_spec.rb +107 -0
- data/spec/models/contact_attributes_spec.rb +71 -0
- data/spec/models/contact_spec.rb +113 -0
- data/spec/models/create_access_account_parameters_spec.rb +65 -0
- data/spec/models/create_call_parameters_spec.rb +113 -0
- data/spec/models/create_caller_id_parameters_spec.rb +59 -0
- data/spec/models/create_contact_parameters_spec.rb +89 -0
- data/spec/models/create_group_parameters_spec.rb +53 -0
- data/spec/models/create_recording_by_phone_parameters_spec.rb +77 -0
- data/spec/models/create_recording_by_url_parameters_spec.rb +59 -0
- data/spec/models/create_recording_parameters_spec.rb +71 -0
- data/spec/models/create_text_parameters_spec.rb +107 -0
- data/spec/models/create_unverified_caller_id_parameters_spec.rb +59 -0
- data/spec/models/donotcontact_spec.rb +77 -0
- data/spec/models/group_spec.rb +77 -0
- data/spec/models/identifier_spec.rb +53 -0
- data/spec/models/incomingtext_spec.rb +83 -0
- data/spec/models/keyword_spec.rb +77 -0
- data/spec/models/polling_spec.rb +65 -0
- data/spec/models/push_to_listen_again_spec.rb +59 -0
- data/spec/models/push_to_opt_out_spec.rb +59 -0
- data/spec/models/push_to_record_spec.rb +59 -0
- data/spec/models/push_to_talk_spec.rb +77 -0
- data/spec/models/recording_spec.rb +95 -0
- data/spec/models/service_spec.rb +101 -0
- data/spec/models/shortcode_spec.rb +71 -0
- data/spec/models/text_recipient_spec.rb +83 -0
- data/spec/models/update_access_account_by_id_parameters_spec.rb +65 -0
- data/spec/models/update_caller_id_by_id_parameters_spec.rb +53 -0
- data/spec/models/update_contact_by_id_parameters_spec.rb +89 -0
- data/spec/models/update_group_by_id_parameters_spec.rb +53 -0
- data/spec/models/update_recording_by_id_parameters_spec.rb +53 -0
- data/spec/models/update_vanity_number_by_id_parameters_spec.rb +77 -0
- data/spec/models/vanitynumber_spec.rb +101 -0
- data/spec/models/verify_caller_id_by_id_parameters_spec.rb +53 -0
- data/spec/spec_helper.rb +122 -0
- metadata +436 -0
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#DialMyCalls API
|
|
3
|
+
|
|
4
|
+
#The DialMyCalls API
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: 2.0.1
|
|
7
|
+
Contact: support@dialmycalls.com
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
|
|
10
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
11
|
+
you may not use this file except in compliance with the License.
|
|
12
|
+
You may obtain a copy of the License at
|
|
13
|
+
|
|
14
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
15
|
+
|
|
16
|
+
Unless required by applicable law or agreed to in writing, software
|
|
17
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
18
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
19
|
+
See the License for the specific language governing permissions and
|
|
20
|
+
limitations under the License.
|
|
21
|
+
|
|
22
|
+
=end
|
|
23
|
+
|
|
24
|
+
require 'date'
|
|
25
|
+
|
|
26
|
+
module DialMyCalls
|
|
27
|
+
|
|
28
|
+
class VerifyCallerIdByIdParameters
|
|
29
|
+
# (Required) Verification PIN number received from making add caller ID request.
|
|
30
|
+
attr_accessor :pin
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
34
|
+
def self.attribute_map
|
|
35
|
+
{
|
|
36
|
+
:'pin' => :'pin'
|
|
37
|
+
}
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
# Attribute type mapping.
|
|
41
|
+
def self.swagger_types
|
|
42
|
+
{
|
|
43
|
+
:'pin' => :'String'
|
|
44
|
+
}
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
# Initializes the object
|
|
48
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
49
|
+
def initialize(attributes = {})
|
|
50
|
+
return unless attributes.is_a?(Hash)
|
|
51
|
+
|
|
52
|
+
# convert string to symbol for hash key
|
|
53
|
+
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
54
|
+
|
|
55
|
+
if attributes.has_key?(:'pin')
|
|
56
|
+
self.pin = attributes[:'pin']
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
|
62
|
+
# @return Array for valid properies with the reasons
|
|
63
|
+
def list_invalid_properties
|
|
64
|
+
invalid_properties = Array.new
|
|
65
|
+
return invalid_properties
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
# Check to see if the all the properties in the model are valid
|
|
69
|
+
# @return true if the model is valid
|
|
70
|
+
def valid?
|
|
71
|
+
return true
|
|
72
|
+
end
|
|
73
|
+
|
|
74
|
+
# Checks equality by comparing each attribute.
|
|
75
|
+
# @param [Object] Object to be compared
|
|
76
|
+
def ==(o)
|
|
77
|
+
return true if self.equal?(o)
|
|
78
|
+
self.class == o.class &&
|
|
79
|
+
pin == o.pin
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
# @see the `==` method
|
|
83
|
+
# @param [Object] Object to be compared
|
|
84
|
+
def eql?(o)
|
|
85
|
+
self == o
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
# Calculates hash code according to all attributes.
|
|
89
|
+
# @return [Fixnum] Hash code
|
|
90
|
+
def hash
|
|
91
|
+
[pin].hash
|
|
92
|
+
end
|
|
93
|
+
|
|
94
|
+
# Builds the object from hash
|
|
95
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
96
|
+
# @return [Object] Returns the model itself
|
|
97
|
+
def build_from_hash(attributes)
|
|
98
|
+
return nil unless attributes.is_a?(Hash)
|
|
99
|
+
self.class.swagger_types.each_pair do |key, type|
|
|
100
|
+
if type =~ /^Array<(.*)>/i
|
|
101
|
+
# check to ensure the input is an array given that the the attribute
|
|
102
|
+
# is documented as an array but the input is not
|
|
103
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
104
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
|
|
105
|
+
end
|
|
106
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
107
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
|
108
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
|
109
|
+
end
|
|
110
|
+
|
|
111
|
+
self
|
|
112
|
+
end
|
|
113
|
+
|
|
114
|
+
# Deserializes the data based on type
|
|
115
|
+
# @param string type Data type
|
|
116
|
+
# @param string value Value to be deserialized
|
|
117
|
+
# @return [Object] Deserialized data
|
|
118
|
+
def _deserialize(type, value)
|
|
119
|
+
case type.to_sym
|
|
120
|
+
when :DateTime
|
|
121
|
+
DateTime.parse(value)
|
|
122
|
+
when :Date
|
|
123
|
+
Date.parse(value)
|
|
124
|
+
when :String
|
|
125
|
+
value.to_s
|
|
126
|
+
when :Integer
|
|
127
|
+
value.to_i
|
|
128
|
+
when :Float
|
|
129
|
+
value.to_f
|
|
130
|
+
when :BOOLEAN
|
|
131
|
+
if value.to_s =~ /^(true|t|yes|y|1)$/i
|
|
132
|
+
true
|
|
133
|
+
else
|
|
134
|
+
false
|
|
135
|
+
end
|
|
136
|
+
when :Object
|
|
137
|
+
# generic object (usually a Hash), return directly
|
|
138
|
+
value
|
|
139
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
|
140
|
+
inner_type = Regexp.last_match[:inner_type]
|
|
141
|
+
value.map { |v| _deserialize(inner_type, v) }
|
|
142
|
+
when /\AHash<(?<k_type>.+), (?<v_type>.+)>\z/
|
|
143
|
+
k_type = Regexp.last_match[:k_type]
|
|
144
|
+
v_type = Regexp.last_match[:v_type]
|
|
145
|
+
{}.tap do |hash|
|
|
146
|
+
value.each do |k, v|
|
|
147
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
|
148
|
+
end
|
|
149
|
+
end
|
|
150
|
+
else # model
|
|
151
|
+
temp_model = DialMyCalls.const_get(type).new
|
|
152
|
+
temp_model.build_from_hash(value)
|
|
153
|
+
end
|
|
154
|
+
end
|
|
155
|
+
|
|
156
|
+
# Returns the string representation of the object
|
|
157
|
+
# @return [String] String presentation of the object
|
|
158
|
+
def to_s
|
|
159
|
+
to_hash.to_s
|
|
160
|
+
end
|
|
161
|
+
|
|
162
|
+
# to_body is an alias to to_hash (backward compatibility)
|
|
163
|
+
# @return [Hash] Returns the object in the form of hash
|
|
164
|
+
def to_body
|
|
165
|
+
to_hash
|
|
166
|
+
end
|
|
167
|
+
|
|
168
|
+
# Returns the object in the form of hash
|
|
169
|
+
# @return [Hash] Returns the object in the form of hash
|
|
170
|
+
def to_hash
|
|
171
|
+
hash = {}
|
|
172
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
173
|
+
value = self.send(attr)
|
|
174
|
+
next if value.nil?
|
|
175
|
+
hash[param] = _to_hash(value)
|
|
176
|
+
end
|
|
177
|
+
hash
|
|
178
|
+
end
|
|
179
|
+
|
|
180
|
+
# Outputs non-array value in the form of hash
|
|
181
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
182
|
+
# @param [Object] value Any valid value
|
|
183
|
+
# @return [Hash] Returns the value in the form of hash
|
|
184
|
+
def _to_hash(value)
|
|
185
|
+
if value.is_a?(Array)
|
|
186
|
+
value.compact.map{ |v| _to_hash(v) }
|
|
187
|
+
elsif value.is_a?(Hash)
|
|
188
|
+
{}.tap do |hash|
|
|
189
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
190
|
+
end
|
|
191
|
+
elsif value.respond_to? :to_hash
|
|
192
|
+
value.to_hash
|
|
193
|
+
else
|
|
194
|
+
value
|
|
195
|
+
end
|
|
196
|
+
end
|
|
197
|
+
|
|
198
|
+
end
|
|
199
|
+
|
|
200
|
+
end
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#DialMyCalls API
|
|
3
|
+
|
|
4
|
+
#The DialMyCalls API
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: 2.0.1
|
|
7
|
+
Contact: support@dialmycalls.com
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
|
|
10
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
11
|
+
you may not use this file except in compliance with the License.
|
|
12
|
+
You may obtain a copy of the License at
|
|
13
|
+
|
|
14
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
15
|
+
|
|
16
|
+
Unless required by applicable law or agreed to in writing, software
|
|
17
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
18
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
19
|
+
See the License for the specific language governing permissions and
|
|
20
|
+
limitations under the License.
|
|
21
|
+
|
|
22
|
+
=end
|
|
23
|
+
|
|
24
|
+
module DialMyCalls
|
|
25
|
+
VERSION = "2.0.1"
|
|
26
|
+
end
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#DialMyCalls API
|
|
3
|
+
|
|
4
|
+
#The DialMyCalls API
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: 2.0.1
|
|
7
|
+
Contact: support@dialmycalls.com
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
|
|
10
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
11
|
+
you may not use this file except in compliance with the License.
|
|
12
|
+
You may obtain a copy of the License at
|
|
13
|
+
|
|
14
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
15
|
+
|
|
16
|
+
Unless required by applicable law or agreed to in writing, software
|
|
17
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
18
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
19
|
+
See the License for the specific language governing permissions and
|
|
20
|
+
limitations under the License.
|
|
21
|
+
|
|
22
|
+
=end
|
|
23
|
+
|
|
24
|
+
# Common files
|
|
25
|
+
require 'dialmycalls_client/api_client'
|
|
26
|
+
require 'dialmycalls_client/api_error'
|
|
27
|
+
require 'dialmycalls_client/version'
|
|
28
|
+
require 'dialmycalls_client/configuration'
|
|
29
|
+
|
|
30
|
+
# Models
|
|
31
|
+
require 'dialmycalls_client/models/accessaccount'
|
|
32
|
+
require 'dialmycalls_client/models/account'
|
|
33
|
+
require 'dialmycalls_client/models/call_recipient'
|
|
34
|
+
require 'dialmycalls_client/models/callerid'
|
|
35
|
+
require 'dialmycalls_client/models/callservice'
|
|
36
|
+
require 'dialmycalls_client/models/contact'
|
|
37
|
+
require 'dialmycalls_client/models/contact_attributes'
|
|
38
|
+
require 'dialmycalls_client/models/create_access_account_parameters'
|
|
39
|
+
require 'dialmycalls_client/models/create_call_parameters'
|
|
40
|
+
require 'dialmycalls_client/models/create_caller_id_parameters'
|
|
41
|
+
require 'dialmycalls_client/models/create_contact_parameters'
|
|
42
|
+
require 'dialmycalls_client/models/create_group_parameters'
|
|
43
|
+
require 'dialmycalls_client/models/create_recording_by_phone_parameters'
|
|
44
|
+
require 'dialmycalls_client/models/create_recording_by_url_parameters'
|
|
45
|
+
require 'dialmycalls_client/models/create_recording_parameters'
|
|
46
|
+
require 'dialmycalls_client/models/create_text_parameters'
|
|
47
|
+
require 'dialmycalls_client/models/create_unverified_caller_id_parameters'
|
|
48
|
+
require 'dialmycalls_client/models/donotcontact'
|
|
49
|
+
require 'dialmycalls_client/models/group'
|
|
50
|
+
require 'dialmycalls_client/models/identifier'
|
|
51
|
+
require 'dialmycalls_client/models/incomingtext'
|
|
52
|
+
require 'dialmycalls_client/models/keyword'
|
|
53
|
+
require 'dialmycalls_client/models/polling'
|
|
54
|
+
require 'dialmycalls_client/models/push_to_listen_again'
|
|
55
|
+
require 'dialmycalls_client/models/push_to_opt_out'
|
|
56
|
+
require 'dialmycalls_client/models/push_to_record'
|
|
57
|
+
require 'dialmycalls_client/models/push_to_talk'
|
|
58
|
+
require 'dialmycalls_client/models/recording'
|
|
59
|
+
require 'dialmycalls_client/models/service'
|
|
60
|
+
require 'dialmycalls_client/models/shortcode'
|
|
61
|
+
require 'dialmycalls_client/models/text_recipient'
|
|
62
|
+
require 'dialmycalls_client/models/update_access_account_by_id_parameters'
|
|
63
|
+
require 'dialmycalls_client/models/update_caller_id_by_id_parameters'
|
|
64
|
+
require 'dialmycalls_client/models/update_contact_by_id_parameters'
|
|
65
|
+
require 'dialmycalls_client/models/update_group_by_id_parameters'
|
|
66
|
+
require 'dialmycalls_client/models/update_recording_by_id_parameters'
|
|
67
|
+
require 'dialmycalls_client/models/update_vanity_number_by_id_parameters'
|
|
68
|
+
require 'dialmycalls_client/models/vanitynumber'
|
|
69
|
+
require 'dialmycalls_client/models/verify_caller_id_by_id_parameters'
|
|
70
|
+
|
|
71
|
+
# APIs
|
|
72
|
+
require 'dialmycalls_client/api/accounts_api'
|
|
73
|
+
require 'dialmycalls_client/api/caller_ids_api'
|
|
74
|
+
require 'dialmycalls_client/api/calls_api'
|
|
75
|
+
require 'dialmycalls_client/api/contacts_api'
|
|
76
|
+
require 'dialmycalls_client/api/do_not_contacts_api'
|
|
77
|
+
require 'dialmycalls_client/api/groups_api'
|
|
78
|
+
require 'dialmycalls_client/api/keywords_api'
|
|
79
|
+
require 'dialmycalls_client/api/recordings_api'
|
|
80
|
+
require 'dialmycalls_client/api/texts_api'
|
|
81
|
+
require 'dialmycalls_client/api/vanity_numbers_api'
|
|
82
|
+
|
|
83
|
+
module DialMyCalls
|
|
84
|
+
class << self
|
|
85
|
+
# Customize default settings for the SDK using block.
|
|
86
|
+
# DialMyCalls.configure do |config|
|
|
87
|
+
# config.username = "xxx"
|
|
88
|
+
# config.password = "xxx"
|
|
89
|
+
# end
|
|
90
|
+
# If no block given, return the default Configuration object.
|
|
91
|
+
def configure
|
|
92
|
+
if block_given?
|
|
93
|
+
yield(Configuration.default)
|
|
94
|
+
else
|
|
95
|
+
Configuration.default
|
|
96
|
+
end
|
|
97
|
+
end
|
|
98
|
+
end
|
|
99
|
+
end
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#DialMyCalls API
|
|
3
|
+
|
|
4
|
+
#The DialMyCalls API
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: 2.0.1
|
|
7
|
+
Contact: support@dialmycalls.com
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
|
|
10
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
11
|
+
you may not use this file except in compliance with the License.
|
|
12
|
+
You may obtain a copy of the License at
|
|
13
|
+
|
|
14
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
15
|
+
|
|
16
|
+
Unless required by applicable law or agreed to in writing, software
|
|
17
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
18
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
19
|
+
See the License for the specific language governing permissions and
|
|
20
|
+
limitations under the License.
|
|
21
|
+
|
|
22
|
+
=end
|
|
23
|
+
|
|
24
|
+
require 'spec_helper'
|
|
25
|
+
require 'json'
|
|
26
|
+
|
|
27
|
+
# Unit tests for DialMyCalls::AccountsApi
|
|
28
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
29
|
+
# Please update as you see appropriate
|
|
30
|
+
describe 'AccountsApi' do
|
|
31
|
+
before do
|
|
32
|
+
# run before each test
|
|
33
|
+
@instance = DialMyCalls::AccountsApi.new
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
after do
|
|
37
|
+
# run after each test
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
describe 'test an instance of AccountsApi' do
|
|
41
|
+
it 'should create an instact of AccountsApi' do
|
|
42
|
+
expect(@instance).to be_instance_of(DialMyCalls::AccountsApi)
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
# unit tests for create_access_account
|
|
47
|
+
# Add Access Account
|
|
48
|
+
# Add a access account. <br><br> Returns a access account object on success, and returns an error otherwise. <br><br> ``` curl -i -H \"Content-Type: application/json\" -X POST -d \"{\\\"email\\\": \\\"test@test.com\\\", \\\"password\\\": \\\"1234A5678\\\", \\\"name\\\": \\\"John Doe\\\"}\" https://$API_KEY@api.dialmycalls.com/2.0/accessaccount ```
|
|
49
|
+
# @param create_access_account_parameters Request body
|
|
50
|
+
# @param [Hash] opts the optional parameters
|
|
51
|
+
# @return [Object]
|
|
52
|
+
describe 'create_access_account test' do
|
|
53
|
+
it "should work" do
|
|
54
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
55
|
+
end
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
# unit tests for delete_access_account_by_id
|
|
59
|
+
# Delete Access Account
|
|
60
|
+
# Delete a access account. <br><br> Returns the following if a valid identifier was provided, and returns an error otherwise. <br><br> ``` curl -i -H \"Content-Type: application/json\" -X DELETE https://$API_KEY@api.dialmycalls.com/2.0/accessaccount/$ACCESSACCOUNT_ID ```
|
|
61
|
+
# @param access_account_id AccessAccountId
|
|
62
|
+
# @param [Hash] opts the optional parameters
|
|
63
|
+
# @return [Object]
|
|
64
|
+
describe 'delete_access_account_by_id test' do
|
|
65
|
+
it "should work" do
|
|
66
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
67
|
+
end
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
# unit tests for get_access_account_by_id
|
|
71
|
+
# Get Access Account
|
|
72
|
+
# Retrieve an access account. <br><br> Returns a access account object if a valid identifier was provided, and returns an error otherwise. <br><br> ``` curl -i -H \"Content-Type: application/json\" -X GET https://$API_KEY@api.dialmycalls.com/2.0/accessaccount/$ACCESSACCOUNT_ID ```
|
|
73
|
+
# @param access_account_id AccessAccountId
|
|
74
|
+
# @param [Hash] opts the optional parameters
|
|
75
|
+
# @return [Object]
|
|
76
|
+
describe 'get_access_account_by_id test' do
|
|
77
|
+
it "should work" do
|
|
78
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
79
|
+
end
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
# unit tests for get_access_accounts
|
|
83
|
+
# List Access Accounts
|
|
84
|
+
# Retrieve a list of access accounts. <br><br> Returns a list of access account objects. <br><br> ``` curl -i -H \"Content-Type: application/json\" -X GET https://$API_KEY@api.dialmycalls.com/2.0/accessaccounts ```
|
|
85
|
+
# @param [Hash] opts the optional parameters
|
|
86
|
+
# @option opts [String] :range Range (ie \"records=201-300\") of accessaccounts requested
|
|
87
|
+
# @return [Object]
|
|
88
|
+
describe 'get_access_accounts test' do
|
|
89
|
+
it "should work" do
|
|
90
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
91
|
+
end
|
|
92
|
+
end
|
|
93
|
+
|
|
94
|
+
# unit tests for get_account
|
|
95
|
+
# Get Account
|
|
96
|
+
# Retrieve account details. <br><br> Returns a account object if a valid identifier was provided, and returns an error otherwise. <br><br> ``` curl -i -H \"Content-Type: application/json\" -X GET https://$API_KEY@api.dialmycalls.com/2.0/account ```
|
|
97
|
+
# @param [Hash] opts the optional parameters
|
|
98
|
+
# @return [Object]
|
|
99
|
+
describe 'get_account test' do
|
|
100
|
+
it "should work" do
|
|
101
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
102
|
+
end
|
|
103
|
+
end
|
|
104
|
+
|
|
105
|
+
# unit tests for update_access_account_by_id
|
|
106
|
+
# Update Access Account
|
|
107
|
+
# Update an existing access account. <br><br> Returns a access account object if a valid identifier was provided and input validation passed, and returns an error otherwise. <br><br> ``` curl -i -H \"Content-Type: application/json\" -X PUT -d \"{\\\"name\\\": \\\"New Name\\\"}\" https://$API_KEY@api.dialmycalls.com/2.0/accessaccount/$ACCESSACCOUNT_ID ```
|
|
108
|
+
# @param update_access_account_by_id_parameters Request body
|
|
109
|
+
# @param access_account_id AccessAccountId
|
|
110
|
+
# @param [Hash] opts the optional parameters
|
|
111
|
+
# @return [Object]
|
|
112
|
+
describe 'update_access_account_by_id test' do
|
|
113
|
+
it "should work" do
|
|
114
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
115
|
+
end
|
|
116
|
+
end
|
|
117
|
+
|
|
118
|
+
end
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#DialMyCalls API
|
|
3
|
+
|
|
4
|
+
#The DialMyCalls API
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: 2.0.1
|
|
7
|
+
Contact: support@dialmycalls.com
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
|
|
10
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
11
|
+
you may not use this file except in compliance with the License.
|
|
12
|
+
You may obtain a copy of the License at
|
|
13
|
+
|
|
14
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
15
|
+
|
|
16
|
+
Unless required by applicable law or agreed to in writing, software
|
|
17
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
18
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
19
|
+
See the License for the specific language governing permissions and
|
|
20
|
+
limitations under the License.
|
|
21
|
+
|
|
22
|
+
=end
|
|
23
|
+
|
|
24
|
+
require 'spec_helper'
|
|
25
|
+
require 'json'
|
|
26
|
+
|
|
27
|
+
# Unit tests for DialMyCalls::CallerIdsApi
|
|
28
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
29
|
+
# Please update as you see appropriate
|
|
30
|
+
describe 'CallerIdsApi' do
|
|
31
|
+
before do
|
|
32
|
+
# run before each test
|
|
33
|
+
@instance = DialMyCalls::CallerIdsApi.new
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
after do
|
|
37
|
+
# run after each test
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
describe 'test an instance of CallerIdsApi' do
|
|
41
|
+
it 'should create an instact of CallerIdsApi' do
|
|
42
|
+
expect(@instance).to be_instance_of(DialMyCalls::CallerIdsApi)
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
# unit tests for create_caller_id
|
|
47
|
+
# Add Caller ID
|
|
48
|
+
# Add a caller ID. <br><br> Returns a caller ID object on success, and returns an error otherwise. <br><br> ``` curl -i -H \"Content-Type: application/json\" -X POST -d \"{\\\"phone\\\": \\\"5555555555\\\", \\\"name\\\": \\\"New Number\\\"}\" https://$API_KEY@api.dialmycalls.com/2.0/callerid ```
|
|
49
|
+
# @param create_caller_id_parameters Request body
|
|
50
|
+
# @param [Hash] opts the optional parameters
|
|
51
|
+
# @return [Object]
|
|
52
|
+
describe 'create_caller_id test' do
|
|
53
|
+
it "should work" do
|
|
54
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
55
|
+
end
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
# unit tests for create_unverified_caller_id
|
|
59
|
+
# Add Caller ID (Unverified)
|
|
60
|
+
# Initiate adding a new caller ID when you need to go through the verification process. You will receive a phone call at the phone number provided and will need to make a subsequent API call with the PIN code that you are provided. <br><br> Returns a caller ID object on success, and returns an error otherwise. <br><br> ``` curl -i -H \"Content-Type: application/json\" -X POST -d \"{\\\"phone\\\": \\\"5555555555\\\", \\\"name\\\": \\\"New Number\\\"}\" https://$API_KEY@api.dialmycalls.com/2.0/verify/callerid ```
|
|
61
|
+
# @param create_unverified_caller_id_parameters Request body
|
|
62
|
+
# @param [Hash] opts the optional parameters
|
|
63
|
+
# @return [Object]
|
|
64
|
+
describe 'create_unverified_caller_id test' do
|
|
65
|
+
it "should work" do
|
|
66
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
67
|
+
end
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
# unit tests for delete_caller_id_by_id
|
|
71
|
+
# Delete Caller ID
|
|
72
|
+
# Delete a caller ID. <br><br> Returns the following if a valid identifier was provided, and returns an error otherwise. <br><br> ``` curl -i -H \"Content-Type: application/json\" -X DELETE https://$API_KEY@api.dialmycalls.com/2.0/callerid/$CALLERID_ID ```
|
|
73
|
+
# @param callerid_id CalleridId
|
|
74
|
+
# @param [Hash] opts the optional parameters
|
|
75
|
+
# @return [Object]
|
|
76
|
+
describe 'delete_caller_id_by_id test' do
|
|
77
|
+
it "should work" do
|
|
78
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
79
|
+
end
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
# unit tests for get_caller_id_by_id
|
|
83
|
+
# Get Caller ID
|
|
84
|
+
# Retrieve a caller ID. <br><br> Returns a caller ID object if a valid identifier was provided, and returns an error otherwise. <br><br> ``` curl -i -H \"Content-Type: application/json\" -X GET https://$API_KEY@api.dialmycalls.com/2.0/callerid/$CALLERID_ID ```
|
|
85
|
+
# @param callerid_id CalleridId
|
|
86
|
+
# @param [Hash] opts the optional parameters
|
|
87
|
+
# @return [Object]
|
|
88
|
+
describe 'get_caller_id_by_id test' do
|
|
89
|
+
it "should work" do
|
|
90
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
91
|
+
end
|
|
92
|
+
end
|
|
93
|
+
|
|
94
|
+
# unit tests for get_caller_ids
|
|
95
|
+
# List Caller IDs
|
|
96
|
+
# Retrieve a list of caller IDs. <br><br> Returns a list of caller ID objects. <br><br> ``` curl -i -H \"Content-Type: application/json\" -X GET https://$API_KEY@api.dialmycalls.com/2.0/callerids ```
|
|
97
|
+
# @param [Hash] opts the optional parameters
|
|
98
|
+
# @option opts [String] :range Range (ie \"records=201-300\") of callerids requested
|
|
99
|
+
# @return [Object]
|
|
100
|
+
describe 'get_caller_ids test' do
|
|
101
|
+
it "should work" do
|
|
102
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
103
|
+
end
|
|
104
|
+
end
|
|
105
|
+
|
|
106
|
+
# unit tests for update_caller_id_by_id
|
|
107
|
+
# Update Caller ID
|
|
108
|
+
# Update an existing caller ID. <br><br> Returns a caller ID object if a valid identifier was provided and input validation passed, and returns an error otherwise. <br><br> ``` curl -i -H \"Content-Type: application/json\" -X PUT -d \"{\\\"name\\\": \\\"New Number Updated\\\"}\" https://$API_KEY@api.dialmycalls.com/2.0/callerid/$CALLERID_ID ```
|
|
109
|
+
# @param update_caller_id_by_id_parameters Request body
|
|
110
|
+
# @param callerid_id CalleridId
|
|
111
|
+
# @param [Hash] opts the optional parameters
|
|
112
|
+
# @return [Object]
|
|
113
|
+
describe 'update_caller_id_by_id test' do
|
|
114
|
+
it "should work" do
|
|
115
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
116
|
+
end
|
|
117
|
+
end
|
|
118
|
+
|
|
119
|
+
# unit tests for verify_caller_id_by_id
|
|
120
|
+
# Verify Caller ID
|
|
121
|
+
# Verify a new caller ID. <br><br> Returns a caller ID object if a valid identifier was provided, and returns an error otherwise. <br><br> ``` curl -i -H \"Content-Type: application/json\" -X POST -d \"{\\\"phone\\\": \\\"5555555555\\\", \\\"name\\\": \\\"New Number\\\"}\" https://$API_KEY@api.dialmycalls.com/2.0/verify/callerid/$CALLERID_ID ```
|
|
122
|
+
# @param verify_caller_id_by_id_parameters Request body
|
|
123
|
+
# @param callerid_id CalleridId
|
|
124
|
+
# @param [Hash] opts the optional parameters
|
|
125
|
+
# @return [Object]
|
|
126
|
+
describe 'verify_caller_id_by_id test' do
|
|
127
|
+
it "should work" do
|
|
128
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
129
|
+
end
|
|
130
|
+
end
|
|
131
|
+
|
|
132
|
+
end
|