Class: Twilio::REST::Wireless::V1::RatePlanContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Wireless::V1::RatePlanContext
- Defined in:
- lib/twilio-ruby/rest/wireless/v1/rate_plan.rb
Instance Method Summary collapse
-
#delete ⇒ Boolean
Delete the RatePlanInstance.
-
#fetch ⇒ RatePlanInstance
Fetch the RatePlanInstance.
-
#initialize(version, sid) ⇒ RatePlanContext
constructor
Initialize the RatePlanContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(unique_name: :unset, friendly_name: :unset) ⇒ RatePlanInstance
Update the RatePlanInstance.
Constructor Details
#initialize(version, sid) ⇒ RatePlanContext
Initialize the RatePlanContext
191 192 193 194 195 196 197 198 199 |
# File 'lib/twilio-ruby/rest/wireless/v1/rate_plan.rb', line 191 def initialize(version, sid) super(version) # Path Solution @solution = { sid: sid, } @uri = "/RatePlans/#{@solution[:sid]}" end |
Instance Method Details
#delete ⇒ Boolean
Delete the RatePlanInstance
203 204 205 206 207 208 209 210 |
# File 'lib/twilio-ruby/rest/wireless/v1/rate_plan.rb', line 203 def delete headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) @version.delete('DELETE', @uri, headers: headers) end |
#fetch ⇒ RatePlanInstance
Fetch the RatePlanInstance
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 |
# File 'lib/twilio-ruby/rest/wireless/v1/rate_plan.rb', line 215 def fetch headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.fetch('GET', @uri, headers: headers) RatePlanInstance.new( @version, payload, sid: @solution[:sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
270 271 272 273 |
# File 'lib/twilio-ruby/rest/wireless/v1/rate_plan.rb', line 270 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Wireless.V1.RatePlanContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
263 264 265 266 |
# File 'lib/twilio-ruby/rest/wireless/v1/rate_plan.rb', line 263 def to_s context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Wireless.V1.RatePlanContext #{context}>" end |
#update(unique_name: :unset, friendly_name: :unset) ⇒ RatePlanInstance
Update the RatePlanInstance
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 |
# File 'lib/twilio-ruby/rest/wireless/v1/rate_plan.rb', line 236 def update( unique_name: :unset, friendly_name: :unset ) data = Twilio::Values.of({ 'UniqueName' => unique_name, 'FriendlyName' => friendly_name, }) headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.update('POST', @uri, data: data, headers: headers) RatePlanInstance.new( @version, payload, sid: @solution[:sid], ) end |