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](www.twilio.com/docs/iam/api/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.



139
140
141
142
143
144
145
146
147
# File 'lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result/payload.rb', line 139

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



151
152
153
154
# File 'lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result/payload.rb', line 151

def delete

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

#fetchPayloadInstance

Fetch the PayloadInstance

Returns:



159
160
161
162
163
164
165
166
167
168
169
170
# File 'lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result/payload.rb', line 159

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



182
183
184
185
# File 'lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result/payload.rb', line 182

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

#to_sObject

Provide a user friendly representation



175
176
177
178
# File 'lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result/payload.rb', line 175

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