ChattyCrow/chattycrow_ruby

View on GitHub
lib/chatty_crow/request/sms.rb

Summary

Maintainability
A
0 mins
Test Coverage
module ChattyCrow
  module Request
    # SMS request
    class Sms < BaseRequest
      def initialize(*args)
        super(*args)

        # If arguments exists set as body into options!
        # Its for just easy ChattyCrow.send_jabber 'Hello'
        @options[:body] = @arguments_flatten if @arguments_flatten

        # Set payload
        @payload = @options
      end
    end
  end
end