Class: Twilio::REST::Serverless::V1::ServiceContext::AssetContext::AssetVersionContext

Inherits:
InstanceContext
  • Object
show all
Defined in:
lib/twilio-ruby/rest/serverless/v1/service/asset/asset_version.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, service_sid, asset_sid, sid) ⇒ AssetVersionContext

Initialize the AssetVersionContext

Parameters:

  • version (Version)

    Version that contains the resource

  • service_sid (String)

    The unique SID identifier of the Service for this Asset Version.

  • asset_sid (String)

    The unique SID identifier of the Asset that is the parent for this Asset Version.

  • sid (String)

    The unique SID identifier of this Asset Version.



171
172
173
174
175
176
177
# File 'lib/twilio-ruby/rest/serverless/v1/service/asset/asset_version.rb', line 171

def initialize(version, service_sid, asset_sid, sid)
  super(version)

  # Path Solution
  @solution = {service_sid: service_sid, asset_sid: asset_sid, sid: sid, }
  @uri = "/Services/#{@solution[:service_sid]}/Assets/#{@solution[:asset_sid]}/Versions/#{@solution[:sid]}"
end

Instance Method Details

#fetchAssetVersionInstance

Fetch a AssetVersionInstance

Returns:



182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
# File 'lib/twilio-ruby/rest/serverless/v1/service/asset/asset_version.rb', line 182

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

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

  AssetVersionInstance.new(
      @version,
      payload,
      service_sid: @solution[:service_sid],
      asset_sid: @solution[:asset_sid],
      sid: @solution[:sid],
  )
end

#inspectObject

Provide a detailed, user friendly representation



209
210
211
212
# File 'lib/twilio-ruby/rest/serverless/v1/service/asset/asset_version.rb', line 209

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

#to_sObject

Provide a user friendly representation



202
203
204
205
# File 'lib/twilio-ruby/rest/serverless/v1/service/asset/asset_version.rb', line 202

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