class AtomparkSmsApi::Configuration

Attributes

base_url[RW]
pubkey[RW]
pvtkey[RW]
sender[RW]
test[RW]

Public Class Methods

new() click to toggle source
# File lib/atompark-sms-api/configuration.rb, line 13
def initialize
  @pubkey = ''
  @pvtkey = ''
  @sender = ''
  @test = false
  @base_url = 'http://api.atompark.com/sms/3.0/'
end