Class: Twilito::Configuration
- Inherits:
-
Object
- Object
- Twilito::Configuration
- Defined in:
- lib/twilito/configuration.rb
Constant Summary collapse
- TWILIO_HOST =
'api.twilio.com'
- TWILIO_VERSION =
'2010-04-01'
Instance Attribute Summary collapse
-
#account_sid ⇒ Object
Returns the value of attribute account_sid.
-
#auth_token ⇒ Object
Returns the value of attribute auth_token.
-
#body ⇒ Object
Returns the value of attribute body.
-
#from ⇒ Object
Returns the value of attribute from.
-
#messaging_service_sid ⇒ Object
Returns the value of attribute messaging_service_sid.
-
#to ⇒ Object
Returns the value of attribute to.
-
#twilio_host ⇒ Object
Returns the value of attribute twilio_host.
-
#twilio_version ⇒ Object
Returns the value of attribute twilio_version.
Instance Method Summary collapse
Instance Attribute Details
#account_sid ⇒ Object
Returns the value of attribute account_sid.
17 18 19 |
# File 'lib/twilito/configuration.rb', line 17 def account_sid @account_sid end |
#auth_token ⇒ Object
Returns the value of attribute auth_token.
17 18 19 |
# File 'lib/twilito/configuration.rb', line 17 def auth_token @auth_token end |
#body ⇒ Object
Returns the value of attribute body.
17 18 19 |
# File 'lib/twilito/configuration.rb', line 17 def body @body end |
#from ⇒ Object
Returns the value of attribute from.
17 18 19 |
# File 'lib/twilito/configuration.rb', line 17 def from @from end |
#messaging_service_sid ⇒ Object
Returns the value of attribute messaging_service_sid.
17 18 19 |
# File 'lib/twilito/configuration.rb', line 17 def messaging_service_sid @messaging_service_sid end |
#to ⇒ Object
Returns the value of attribute to.
17 18 19 |
# File 'lib/twilito/configuration.rb', line 17 def to @to end |
#twilio_host ⇒ Object
Returns the value of attribute twilio_host.
17 18 19 |
# File 'lib/twilito/configuration.rb', line 17 def twilio_host @twilio_host end |
#twilio_version ⇒ Object
Returns the value of attribute twilio_version.
17 18 19 |
# File 'lib/twilito/configuration.rb', line 17 def twilio_version @twilio_version end |
Instance Method Details
#to_h ⇒ Object
23 24 25 26 27 28 29 30 31 32 |
# File 'lib/twilito/configuration.rb', line 23 def to_h { to: to, from: from, messaging_service_sid: messaging_service_sid, body: body, account_sid: account_sid, auth_token: auth_token } end |