Class: Twilio::REST::Pricing::V1::VoiceInstance

Inherits:
InstanceResource show all
Defined in:
lib/twilio-ruby/rest/pricing/v1/voice.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, payload) ⇒ VoiceInstance

Initialize the VoiceInstance

Parameters:

  • version (Version)

    Version that contains the resource

  • payload (Hash)

    payload that contains response from Twilio


103
104
105
106
107
108
# File 'lib/twilio-ruby/rest/pricing/v1/voice.rb', line 103

def initialize(version, payload)
  super(version)

  # Marshaled Properties
  @properties = {'name' => payload['name'], 'url' => payload['url'], 'links' => payload['links'], }
end

Instance Method Details

#inspectObject

Provide a detailed, user friendly representation


136
137
138
# File 'lib/twilio-ruby/rest/pricing/v1/voice.rb', line 136

def inspect
  "<Twilio.Pricing.V1.VoiceInstance>"
end

Returns The links.

Returns:

  • (String)

    The links


124
125
126
# File 'lib/twilio-ruby/rest/pricing/v1/voice.rb', line 124

def links
  @properties['links']
end

#nameString

Returns The name.

Returns:

  • (String)

    The name


112
113
114
# File 'lib/twilio-ruby/rest/pricing/v1/voice.rb', line 112

def name
  @properties['name']
end

#to_sObject

Provide a user friendly representation


130
131
132
# File 'lib/twilio-ruby/rest/pricing/v1/voice.rb', line 130

def to_s
  "<Twilio.Pricing.V1.VoiceInstance>"
end

#urlString

Returns The url.

Returns:

  • (String)

    The url


118
119
120
# File 'lib/twilio-ruby/rest/pricing/v1/voice.rb', line 118

def url
  @properties['url']
end