Class: Twilio::REST::Preview::Wireless::CommandContext

Inherits:
InstanceContext show all
Defined in:
lib/twilio-ruby/rest/preview/wireless/command.rb

Overview

PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact [email protected].

Instance Method Summary collapse

Constructor Details

#initialize(version, sid) ⇒ CommandContext

Initialize the CommandContext

Parameters:

  • version (Version)

    Version that contains the resource

  • sid (String)

    The sid



214
215
216
217
218
219
220
# File 'lib/twilio-ruby/rest/preview/wireless/command.rb', line 214

def initialize(version, sid)
  super(version)

  # Path Solution
  @solution = {sid: sid, }
  @uri = "/Commands/#{@solution[:sid]}"
end

Instance Method Details

#fetchCommandInstance

Fetch a CommandInstance

Returns:



225
226
227
228
229
230
231
232
233
234
235
# File 'lib/twilio-ruby/rest/preview/wireless/command.rb', line 225

def fetch
  params = Twilio::Values.of({})

  payload = @version.fetch(
      'GET',
      @uri,
      params,
  )

  CommandInstance.new(@version, payload, sid: @solution[:sid], )
end

#to_sObject

Provide a user friendly representation



239
240
241
242
# File 'lib/twilio-ruby/rest/preview/wireless/command.rb', line 239

def to_s
  context = @solution.map {|k, v| "#{k}: #{v}"}.join(',')
  "#<Twilio.Preview.Wireless.CommandContext #{context}>"
end