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 beta products that are subject to change. Use them with caution.

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 SID of the Service to fetch the Asset Version resource from.

  • asset_sid (String)

    The SID of the Asset resource that is the parent of the Asset Version resource to fetch.

  • sid (String)

    The SID of the Asset Version resource to fetch.



139
140
141
142
143
144
145
146
147
# File 'lib/twilio-ruby/rest/serverless/v1/service/asset/asset_version.rb', line 139

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 the AssetVersionInstance

Returns:



151
152
153
154
155
156
157
158
159
160
161
# File 'lib/twilio-ruby/rest/serverless/v1/service/asset/asset_version.rb', line 151

def fetch

    payload = @version.fetch('GET', @uri)
    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



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

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

#to_sObject

Provide a user friendly representation



166
167
168
169
# File 'lib/twilio-ruby/rest/serverless/v1/service/asset/asset_version.rb', line 166

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