# frozen_string_literal: true module Slack module BlockKit module Composition class Option def initialize(text:, value:) @text = text @value = value end def as_json(*) { text: @text.as_json, value: @value } end end end end end