ignacio-chiazzo/ruby_whatsapp_sdk

View on GitHub
lib/whatsapp_sdk/resource/button_parameter.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module WhatsappSdk
  module Resource
    class ButtonParameter
      # Returns the button parameter type.
      #
      # @returns type [String] Valid options are payload and text.
      attr_accessor :type

      module Type
        TEXT = "text"
        PAYLOAD = "payload"
      end

      # Required for quick_reply buttons.
      # Returns the button payload. Developer-defined payload that is returned when the button is clicked
      # in addition to the display text on the button.
      #
      # @returns payload [String]
      attr_accessor :payload

      # Required for URL buttons.
      # Developer-provided suffix that is appended to the predefined prefix URL in the template.
      #
      # @returns text [String]
      attr_accessor :text

      def initialize(type:, payload: nil, text: nil)
        @type = type
        @payload = payload
        @text = text
      end

      def to_json
        json = {
          type: type
        }
        json[:payload] = payload if payload
        json[:text] = text if text
        json
      end
    end
  end
end