class Line::Bot::V2::MessagingApi::FlexText
Attributes
@!attribute [rw] action
@return [Action,nil]
@!attribute [rw] adjust_mode
@return [String,nil] ('shrink-to-fit')
@!attribute [rw] align
@return [String,nil] ('start'|'end'|'center')
@!attribute [rw] color
@return [String,nil]
@!attribute [rw] contents
@return [Array[FlexSpan],nil]
@!attribute [rw] decoration
@return [String,nil] ('none'|'underline'|'line-through')
@!attribute [rw] flex
@return [Integer,nil]
@!attribute [rw] gravity
@return [String,nil] ('top'|'bottom'|'center')
@!attribute [rw] line_spacing
@return [String,nil]
@!attribute [rw] margin
@return [String,nil]
@!attribute [rw] max_lines
@return [Integer,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 [rw] style
@return [String,nil] ('normal'|'italic')
@!attribute [rw] text
@return [String,nil]
@!attribute [r] type
@return [String]
@!attribute [rw] weight
@return [String,nil] ('regular'|'bold')
@!attribute [rw] wrap
@return [Boolean,nil]
Public Class Methods
Source
# File lib/line/bot/v2/messaging_api/model/flex_text.rb, line 181 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::FlexText] Instance of the class
Source
# File lib/line/bot/v2/messaging_api/model/flex_text.rb, line 109 def initialize( flex: nil, text: nil, size: nil, align: nil, gravity: nil, color: nil, weight: nil, style: nil, decoration: nil, wrap: nil, line_spacing: nil, margin: nil, position: nil, offset_top: nil, offset_bottom: nil, offset_start: nil, offset_end: nil, action: nil, max_lines: nil, contents: nil, adjust_mode: nil, scaling: nil, **dynamic_attributes ) @type = "text" @flex = flex @text = text @size = size @align = align @gravity = gravity @color = color @weight = weight @style = style @decoration = decoration @wrap = wrap @line_spacing = line_spacing @margin = margin @position = position @offset_top = offset_top @offset_bottom = offset_bottom @offset_start = offset_start @offset_end = offset_end @action = action.is_a?(Line::Bot::V2::MessagingApi::Action) || action.nil? ? action : Line::Bot::V2::MessagingApi::Action.create(**action) # steep:ignore @max_lines = max_lines @contents = contents&.map do |item| if item.is_a?(Hash) Line::Bot::V2::MessagingApi::FlexSpan.create(**item) # steep:ignore InsufficientKeywordArguments else item end end @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 text [String,nil] @param size [String,nil] @param align [String,nil] (‘start’|‘end’|‘center’) @param gravity [String,nil] (‘top’|‘bottom’|‘center’) @param color [String,nil] @param weight [String,nil] (‘regular’|‘bold’) @param style [String,nil] (‘normal’|‘italic’) @param decoration [String,nil] (‘none’|‘underline’|‘line-through’) @param wrap [Boolean,nil] @param line_spacing
[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 action [Action, Hash[Symbol, untyped], nil] @param max_lines
[Integer,nil] @param contents [Array[FlexSpan, Hash[Symbol, untyped]],nil] @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_text.rb, line 188 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_text.rb, line 197 def hash [self.class, *instance_variables.map { |var| instance_variable_get(var) }].hash end
@return [Integer] Hash code of the object