class Line::Bot::V2::MessagingApi::FlexIcon
Attributes
@!attribute [rw] aspect_ratio
@return [String,nil]
@!attribute [rw] margin
@return [String,nil]
@!attribute [rw] offset_bottom
@return [String,nil]
@!attribute [rw] offset_end
@return [String,nil]
@!attribute [rw] offset_start
@return [String,nil]
@!attribute [rw] offset_top
@return [String,nil]
@!attribute [rw] position
@return [String,nil] ('relative'|'absolute')
@!attribute [rw] scaling
@return [Boolean,nil]
@!attribute [rw] size
@return [String,nil]
@!attribute [r] type
@return [String]
@!attribute [rw] url
@return [String]
Public Class Methods
Source
# File lib/line/bot/v2/messaging_api/model/flex_icon.rb, line 104 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::MessagingApi::FlexIcon] Instance of the class
Source
# File lib/line/bot/v2/messaging_api/model/flex_icon.rb, line 62 def initialize( url:, size: nil, aspect_ratio: nil, margin: nil, position: nil, offset_top: nil, offset_bottom: nil, offset_start: nil, offset_end: nil, scaling: nil, **dynamic_attributes ) @type = "icon" @url = url @size = size @aspect_ratio = aspect_ratio @margin = margin @position = position @offset_top = offset_top @offset_bottom = offset_bottom @offset_start = offset_start @offset_end = offset_end @scaling = scaling 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 url [String] @param size [String,nil] @param aspect_ratio
[String,nil] @param margin [String,nil] @param position [String,nil] (‘relative’|‘absolute’) @param offset_top
[String,nil] @param offset_bottom
[String,nil] @param offset_start
[String,nil] @param offset_end
[String,nil] @param scaling [Boolean,nil]
Public Instance Methods
Source
# File lib/line/bot/v2/messaging_api/model/flex_icon.rb, line 111 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/messaging_api/model/flex_icon.rb, line 120 def hash [self.class, *instance_variables.map { |var| instance_variable_get(var) }].hash end
@return [Integer] Hash code of the object