Class: Twilio::REST::Trusthub::V1::TrustProductsContext::TrustProductsEvaluationsContext

Inherits:
InstanceContext
  • Object
show all
Defined in:
lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_evaluations.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, trust_product_sid, sid) ⇒ TrustProductsEvaluationsContext

Initialize the TrustProductsEvaluationsContext

Parameters:

  • version (Version)

    Version that contains the resource

  • trust_product_sid (String)

    The unique string that we created to identify the trust_product resource.

  • sid (String)

    The unique string that identifies the Evaluation resource.



155
156
157
158
159
160
161
162
163
# File 'lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_evaluations.rb', line 155

def initialize(version, trust_product_sid, sid)
    super(version)

    # Path Solution
    @solution = { trust_product_sid: trust_product_sid, sid: sid,  }
    @uri = "/TrustProducts/#{@solution[:trust_product_sid]}/Evaluations/#{@solution[:sid]}"

    
end

Instance Method Details

#fetchTrustProductsEvaluationsInstance

Fetch the TrustProductsEvaluationsInstance

Returns:



167
168
169
170
171
172
173
174
175
176
# File 'lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_evaluations.rb', line 167

def fetch

    payload = @version.fetch('GET', @uri)
    TrustProductsEvaluationsInstance.new(
        @version,
        payload,
        trust_product_sid: @solution[:trust_product_sid],
        sid: @solution[:sid],
    )
end

#inspectObject

Provide a detailed, user friendly representation



188
189
190
191
# File 'lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_evaluations.rb', line 188

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

#to_sObject

Provide a user friendly representation



181
182
183
184
# File 'lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_evaluations.rb', line 181

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