class Line::Bot::V2::Insight::GetStatisticsPerUnitResponseClick
@see developers.line.biz/en/reference/messaging-api/#get-statistics-per-unit-response
Attributes
@!attribute [rw] click
@return [Integer,nil] Number of times the URL in the bubble was opened.
@!attribute [rw] seq
@return [Integer] The URL's serial number.
@!attribute [rw] unique_click
@return [Integer,nil] Number of users that opened the URL in the bubble.
@!attribute [rw] unique_click_of_request
@return [Integer,nil] Number of users who opened this url through any link in the message. If another message bubble contains the same URL and a user opens both links, it's counted only once.
@!attribute [rw] url
@return [String] URL.
Public Class Methods
Source
# File lib/line/bot/v2/insight/model/get_statistics_per_unit_response_click.rb, line 68 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::GetStatisticsPerUnitResponseClick] Instance of the class
Source
# File lib/line/bot/v2/insight/model/get_statistics_per_unit_response_click.rb, line 37 def initialize( seq:, url:, click: nil, unique_click: nil, unique_click_of_request: nil, **dynamic_attributes ) @seq = seq @url = url @click = click @unique_click = unique_click @unique_click_of_request = unique_click_of_request 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] The URL’s serial number. @param url [String] URL. @param click [Integer,nil] Number of times the URL in the bubble was opened. @param unique_click
[Integer,nil] Number of users that opened the URL in the bubble. @param unique_click_of_request
[Integer,nil] Number of users who opened this url through any link in the message. If another message bubble contains the same URL and a user opens both links, it’s counted only once.
Public Instance Methods
Source
# File lib/line/bot/v2/insight/model/get_statistics_per_unit_response_click.rb, line 75 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_statistics_per_unit_response_click.rb, line 84 def hash [self.class, *instance_variables.map { |var| instance_variable_get(var) }].hash end
@return [Integer] Hash code of the object