class Line::Bot::V2::MessagingApi::FlexButton
Attributes
@!attribute [rw] action
@return [Action]
@!attribute [rw] adjust_mode
@return [String,nil] ('shrink-to-fit')
@!attribute [rw] color
@return [String,nil]
@!attribute [rw] flex
@return [Integer,nil]
@!attribute [rw] gravity
@return [String,nil] ('top'|'bottom'|'center')
@!attribute [rw] height
@return [String,nil] ('md'|'sm')
@!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] style
@return [String,nil] ('primary'|'secondary'|'link')
@!attribute [r] type
@return [String]
Public Class Methods
Source
# File lib/line/bot/v2/messaging_api/model/flex_button.rb, line 127 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::FlexButton] Instance of the class
Source
# File lib/line/bot/v2/messaging_api/model/flex_button.rb, line 77 def initialize( flex: nil, color: nil, style: nil, action:, gravity: nil, margin: nil, position: nil, offset_top: nil, offset_bottom: nil, offset_start: nil, offset_end: nil, height: nil, adjust_mode: nil, scaling: nil, **dynamic_attributes ) @type = "button" @flex = flex @color = color @style = style @action = action.is_a?(Line::Bot::V2::MessagingApi::Action) ? action : Line::Bot::V2::MessagingApi::Action.create(**action) # steep:ignore @gravity = gravity @margin = margin @position = position @offset_top = offset_top @offset_bottom = offset_bottom @offset_start = offset_start @offset_end = offset_end @height = height @adjust_mode = adjust_mode @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 flex [Integer,nil] @param color [String,nil] @param style [String,nil] (‘primary’|‘secondary’|‘link’) @param action [Action, Hash[Symbol, untyped]] @param gravity [String,nil] (‘top’|‘bottom’|‘center’) @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 height [String,nil] (‘md’|‘sm’) @param adjust_mode
[String,nil] (‘shrink-to-fit’) @param scaling [Boolean,nil]
Public Instance Methods
Source
# File lib/line/bot/v2/messaging_api/model/flex_button.rb, line 134 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_button.rb, line 143 def hash [self.class, *instance_variables.map { |var| instance_variable_get(var) }].hash end
@return [Integer] Hash code of the object