class Twilito::Configuration

Constants

TWILIO_HOST
TWILIO_VERSION

Attributes

account_sid[RW]
auth_token[RW]
body[RW]
from[RW]
to[RW]
twilio_host[RW]
twilio_version[RW]

Public Instance Methods

to_h() click to toggle source
# File lib/twilito/configuration.rb, line 23
def to_h
  {
    to: to,
    from: from,
    body: body,
    account_sid: account_sid,
    auth_token: auth_token
  }
end