Class: Twilio::REST::Pricing::V1::VoiceInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Pricing::V1::VoiceInstance
- Defined in:
- lib/twilio-ruby/rest/pricing/v1/voice.rb
Instance Method Summary collapse
-
#initialize(version, payload) ⇒ VoiceInstance
constructor
Initialize the VoiceInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#links ⇒ String
The links.
-
#name ⇒ String
The name.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#url ⇒ String
The url.
Constructor Details
#initialize(version, payload) ⇒ VoiceInstance
Initialize the VoiceInstance
112 113 114 115 116 117 118 119 120 121 |
# File 'lib/twilio-ruby/rest/pricing/v1/voice.rb', line 112 def initialize(version, payload) super(version) # Marshaled Properties @properties = { 'name' => payload['name'], 'url' => payload['url'], 'links' => payload['links'], } end |
Instance Method Details
#inspect ⇒ Object
Provide a detailed, user friendly representation
149 150 151 |
# File 'lib/twilio-ruby/rest/pricing/v1/voice.rb', line 149 def inspect "<Twilio.Pricing.V1.VoiceInstance>" end |
#links ⇒ String
Returns The links.
137 138 139 |
# File 'lib/twilio-ruby/rest/pricing/v1/voice.rb', line 137 def links @properties['links'] end |
#name ⇒ String
Returns The name.
125 126 127 |
# File 'lib/twilio-ruby/rest/pricing/v1/voice.rb', line 125 def name @properties['name'] end |
#to_s ⇒ Object
Provide a user friendly representation
143 144 145 |
# File 'lib/twilio-ruby/rest/pricing/v1/voice.rb', line 143 def to_s "<Twilio.Pricing.V1.VoiceInstance>" end |
#url ⇒ String
Returns The url.
131 132 133 |
# File 'lib/twilio-ruby/rest/pricing/v1/voice.rb', line 131 def url @properties['url'] end |