Skip to content

Commit 945cb3b

Browse files
committed
Travis update: Sep 2024 (Build 799)
[skip ci]
1 parent 8515e72 commit 945cb3b

9 files changed

Lines changed: 8 additions & 320 deletions

File tree

.openapi-generator/FILES

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ docs/SyncNumberLookupSuccess.md
6565
docs/Telegram.md
6666
docs/TextStore.md
6767
docs/Viber.md
68-
docs/ViberVideo.md
6968
docs/WhatsApp.md
7069
docs/WhatsAppComponent.md
7170
docs/WhatsAppCurrency.md
@@ -137,7 +136,6 @@ lib/messente_api/models/sync_number_lookup_success.rb
137136
lib/messente_api/models/telegram.rb
138137
lib/messente_api/models/text_store.rb
139138
lib/messente_api/models/viber.rb
140-
lib/messente_api/models/viber_video.rb
141139
lib/messente_api/models/whats_app.rb
142140
lib/messente_api/models/whats_app_component.rb
143141
lib/messente_api/models/whats_app_currency.rb

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ script:
88
- bundle install --path vendor/bundle
99
- bundle exec rspec
1010
- gem build messente_api.gemspec
11-
- gem install ./messente_api-2.2.0.gem
11+
- gem install ./messente_api-2.1.0.gem

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Messente API Library
22

33
- Messente API version: 2.0.0
4-
- Ruby gem version: 2.2.0
4+
- Ruby gem version: 2.1.0
55

66
[Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber, WhatsApp and Telegram messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world.
77

docs/Viber.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
| **button_url** | **String** | URL of the button, must be specified along with ''text'', ''button_text'' and ''image_url'' (optional) | [optional] |
1313
| **button_text** | **String** | Must be specified along with ''text'', ''button_url'', ''button_text'', ''image_url'' (optional) | [optional] |
1414
| **channel** | **String** | The channel used to deliver the message | [optional][default to 'viber'] |
15-
| **video** | [**ViberVideo**](ViberVideo.md) | | [optional] |
1615

1716
## Example
1817

@@ -27,8 +26,7 @@ instance = MessenteApi::Viber.new(
2726
image_url: null,
2827
button_url: null,
2928
button_text: null,
30-
channel: null,
31-
video: null
29+
channel: null
3230
)
3331
```
3432

docs/ViberVideo.md

Lines changed: 0 additions & 24 deletions
This file was deleted.

lib/messente_api.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@
6767
require 'messente_api/models/telegram'
6868
require 'messente_api/models/text_store'
6969
require 'messente_api/models/viber'
70-
require 'messente_api/models/viber_video'
7170
require 'messente_api/models/whats_app'
7271
require 'messente_api/models/whats_app_component'
7372
require 'messente_api/models/whats_app_currency'

lib/messente_api/models/viber.rb

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,6 @@ class Viber
4040
# The channel used to deliver the message
4141
attr_accessor :channel
4242

43-
attr_accessor :video
44-
4543
class EnumAttributeValidator
4644
attr_reader :datatype
4745
attr_reader :allowable_values
@@ -74,8 +72,7 @@ def self.attribute_map
7472
:'image_url' => :'image_url',
7573
:'button_url' => :'button_url',
7674
:'button_text' => :'button_text',
77-
:'channel' => :'channel',
78-
:'video' => :'video'
75+
:'channel' => :'channel'
7976
}
8077
end
8178

@@ -94,8 +91,7 @@ def self.openapi_types
9491
:'image_url' => :'String',
9592
:'button_url' => :'String',
9693
:'button_text' => :'String',
97-
:'channel' => :'String',
98-
:'video' => :'ViberVideo'
94+
:'channel' => :'String'
9995
}
10096
end
10197

@@ -153,10 +149,6 @@ def initialize(attributes = {})
153149
else
154150
self.channel = 'viber'
155151
end
156-
157-
if attributes.key?(:'video')
158-
self.video = attributes[:'video']
159-
end
160152
end
161153

162154
# Show invalid properties with the reasons. Usually used together with valid?
@@ -198,8 +190,7 @@ def ==(o)
198190
image_url == o.image_url &&
199191
button_url == o.button_url &&
200192
button_text == o.button_text &&
201-
channel == o.channel &&
202-
video == o.video
193+
channel == o.channel
203194
end
204195

205196
# @see the `==` method
@@ -211,7 +202,7 @@ def eql?(o)
211202
# Calculates hash code according to all attributes.
212203
# @return [Integer] Hash code
213204
def hash
214-
[sender, validity, ttl, text, image_url, button_url, button_text, channel, video].hash
205+
[sender, validity, ttl, text, image_url, button_url, button_text, channel].hash
215206
end
216207

217208
# Builds the object from hash

0 commit comments

Comments
 (0)