Method: Line::Bot::V2::Webhook::VideoMessageContent#==
- Defined in:
- lib/line/bot/v2/webhook/model/video_message_content.rb
#==(other) ⇒ Boolean
Returns true if the objects are equal, false otherwise.
80 81 82 83 84 85 86 |
# File 'lib/line/bot/v2/webhook/model/video_message_content.rb', line 80 def ==(other) return false unless self.class == other.class instance_variables.all? do |var| instance_variable_get(var) == other.instance_variable_get(var) end end |