lib/genesis_ruby/api/constants/transactions/parameters/wpf/reminder_channels.rb



# frozen_string_literal: true

module GenesisRuby
  module Api
    module Constants
      module Transactions
        module Parameters
          module Wpf
            # Channel for sending WPF reminder. Valid values are ’email’ and ’sms’
            class ReminderChannels

              extend Mixins::Constants::Common

              # Channel email
              EMAIL = 'email'

              # Channel sms
              SMS   = 'sms'

            end
          end
        end
      end
    end
  end
end