Class: Twilio::REST::Api::V2010::AccountContext::RecordingContext::AddOnResultContext::PayloadContext

Inherits:
InstanceContext
  • Object
show all
Defined in:
lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result/payload.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, account_sid, reference_sid, add_on_result_sid, sid) ⇒ PayloadContext

Initialize the PayloadContext

Parameters:

  • version (Version)

    Version that contains the resource

  • account_sid (String)

    The SID of the Account that created the Recording AddOnResult Payload resource to fetch.

  • reference_sid (String)

    The SID of the recording to which the AddOnResult resource that contains the payload to fetch belongs.

  • add_on_result_sid (String)

    The SID of the AddOnResult to which the payload to fetch belongs.

  • sid (String)

    The Twilio-provided string that uniquely identifies the Recording AddOnResult Payload resource to fetch.


176
177
178
179
180
181
182
183
184
185
186
187
# File 'lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result/payload.rb', line 176

def initialize(version, , reference_sid, add_on_result_sid, sid)
  super(version)

  # Path Solution
  @solution = {
      account_sid: ,
      reference_sid: reference_sid,
      add_on_result_sid: add_on_result_sid,
      sid: sid,
  }
  @uri = "/Accounts/#{@solution[:account_sid]}/Recordings/#{@solution[:reference_sid]}/AddOnResults/#{@solution[:add_on_result_sid]}/Payloads/#{@solution[:sid]}.json"
end

Instance Method Details

#deleteBoolean

Delete the PayloadInstance

Returns:

  • (Boolean)

    true if delete succeeds, false otherwise


208
209
210
# File 'lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result/payload.rb', line 208

def delete
   @version.delete('DELETE', @uri)
end

#fetchPayloadInstance

Fetch the PayloadInstance

Returns:


192
193
194
195
196
197
198
199
200
201
202
203
# File 'lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result/payload.rb', line 192

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

  PayloadInstance.new(
      @version,
      payload,
      account_sid: @solution[:account_sid],
      reference_sid: @solution[:reference_sid],
      add_on_result_sid: @solution[:add_on_result_sid],
      sid: @solution[:sid],
  )
end

#inspectObject

Provide a detailed, user friendly representation


221
222
223
224
# File 'lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result/payload.rb', line 221

def inspect
  context = @solution.map {|k, v| "#{k}: #{v}"}.join(',')
  "#<Twilio.Api.V2010.PayloadContext #{context}>"
end

#to_sObject

Provide a user friendly representation


214
215
216
217
# File 'lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result/payload.rb', line 214

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