class Line::Bot::V2::Insight::GetMessageEventResponseMessage
Attributes
@!attribute [rw] impression
@return [Integer,nil] Number of times the bubble was displayed.
@!attribute [rw] media_played
@return [Integer,nil] Number of times audio or video in the bubble started playing.
@!attribute [rw] media_played100_percent
@return [Integer,nil] Number of times audio or video in the bubble started playing and was played 100% of the total time.
@!attribute [rw] media_played25_percent
@return [Integer,nil] Number of times audio or video in the bubble started playing and was played 25% of the total time.
@!attribute [rw] media_played50_percent
@return [Integer,nil] Number of times audio or video in the bubble started playing and was played 50% of the total time.
@!attribute [rw] media_played75_percent
@return [Integer,nil] Number of times audio or video in the bubble started playing and was played 75% of the total time.
@!attribute [rw] seq
@return [Integer,nil] Bubble's serial number.
@!attribute [rw] unique_media_played
@return [Integer,nil] Number of users that started playing audio or video in the bubble.
@!attribute [rw] unique_media_played100_percent
@return [Integer,nil] Number of users that started playing audio or video in the bubble and played 100% of the total time.
@!attribute [rw] unique_media_played25_percent
@return [Integer,nil] Number of users that started playing audio or video in the bubble and played 25% of the total time.
@!attribute [rw] unique_media_played50_percent
@return [Integer,nil] Number of users that started playing audio or video in the bubble and played 50% of the total time.
@!attribute [rw] unique_media_played75_percent
@return [Integer,nil] Number of users that started playing audio or video in the bubble and played 75% of the total time.
Public Class Methods
Source
# File lib/line/bot/v2/insight/model/get_message_event_response_message.rb, line 109 def self.create(args) # steep:ignore symbolized_args = Line::Bot::V2::Utils.deep_symbolize(args) return new(**symbolized_args) # steep:ignore end
Create an instance of the class from a hash @param args [Hash] Hash containing all the required attributes @return [Line::Bot::V2::Insight::GetMessageEventResponseMessage] Instance of the class
Source
# File lib/line/bot/v2/insight/model/get_message_event_response_message.rb, line 64 def initialize( seq: nil, impression: nil, media_played: nil, media_played25_percent: nil, media_played50_percent: nil, media_played75_percent: nil, media_played100_percent: nil, unique_media_played: nil, unique_media_played25_percent: nil, unique_media_played50_percent: nil, unique_media_played75_percent: nil, unique_media_played100_percent: nil, **dynamic_attributes ) @seq = seq @impression = impression @media_played = media_played @media_played25_percent = media_played25_percent @media_played50_percent = media_played50_percent @media_played75_percent = media_played75_percent @media_played100_percent = media_played100_percent @unique_media_played = unique_media_played @unique_media_played25_percent = unique_media_played25_percent @unique_media_played50_percent = unique_media_played50_percent @unique_media_played75_percent = unique_media_played75_percent @unique_media_played100_percent = unique_media_played100_percent dynamic_attributes.each do |key, value| self.class.attr_accessor key if value.is_a?(Hash) struct_klass = Struct.new(*value.keys.map(&:to_sym)) struct_values = value.map { |_k, v| v.is_a?(Hash) ? Line::Bot::V2::Utils.hash_to_struct(v) : v } instance_variable_set("@#{key}", struct_klass.new(*struct_values)) else instance_variable_set("@#{key}", value) end end end
@param seq [Integer,nil] Bubble’s serial number. @param impression [Integer,nil] Number of times the bubble was displayed. @param media_played
[Integer,nil] Number of times audio or video in the bubble started playing. @param media_played25_percent
[Integer,nil] Number of times audio or video in the bubble started playing and was played 25% of the total time. @param media_played50_percent
[Integer,nil] Number of times audio or video in the bubble started playing and was played 50% of the total time. @param media_played75_percent
[Integer,nil] Number of times audio or video in the bubble started playing and was played 75% of the total time. @param media_played100_percent
[Integer,nil] Number of times audio or video in the bubble started playing and was played 100% of the total time. @param unique_media_played
[Integer,nil] Number of users that started playing audio or video in the bubble. @param unique_media_played25_percent
[Integer,nil] Number of users that started playing audio or video in the bubble and played 25% of the total time. @param unique_media_played50_percent
[Integer,nil] Number of users that started playing audio or video in the bubble and played 50% of the total time. @param unique_media_played75_percent
[Integer,nil] Number of users that started playing audio or video in the bubble and played 75% of the total time. @param unique_media_played100_percent
[Integer,nil] Number of users that started playing audio or video in the bubble and played 100% of the total time.
Public Instance Methods
Source
# File lib/line/bot/v2/insight/model/get_message_event_response_message.rb, line 116 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
@param other [Object] Object to compare @return [Boolean] true if the objects are equal, false otherwise
Source
# File lib/line/bot/v2/insight/model/get_message_event_response_message.rb, line 125 def hash [self.class, *instance_variables.map { |var| instance_variable_get(var) }].hash end
@return [Integer] Hash code of the object