Class: Twilito::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/twilito/configuration.rb

Constant Summary collapse

TWILIO_HOST =
'api.twilio.com'
TWILIO_VERSION =
'2010-04-01'

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#account_sidObject

Returns the value of attribute account_sid.



17
18
19
# File 'lib/twilito/configuration.rb', line 17

def 
  @account_sid
end

#auth_tokenObject

Returns the value of attribute auth_token.



17
18
19
# File 'lib/twilito/configuration.rb', line 17

def auth_token
  @auth_token
end

#bodyObject

Returns the value of attribute body.



17
18
19
# File 'lib/twilito/configuration.rb', line 17

def body
  @body
end

#fromObject

Returns the value of attribute from.



17
18
19
# File 'lib/twilito/configuration.rb', line 17

def from
  @from
end

#messaging_service_sidObject

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

#toObject

Returns the value of attribute to.



17
18
19
# File 'lib/twilito/configuration.rb', line 17

def to
  @to
end

#twilio_hostObject

Returns the value of attribute twilio_host.



17
18
19
# File 'lib/twilito/configuration.rb', line 17

def twilio_host
  @twilio_host
end

#twilio_versionObject

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_hObject



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: ,
    auth_token: auth_token
  }
end