Class: Twilio::REST::Trusthub::V1::TrustProductsContext::TrustProductsEvaluationsContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Trusthub::V1::TrustProductsContext::TrustProductsEvaluationsContext
- Defined in:
- lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_evaluations.rb
Instance Method Summary collapse
-
#fetch ⇒ TrustProductsEvaluationsInstance
Fetch the TrustProductsEvaluationsInstance.
-
#initialize(version, trust_product_sid, sid) ⇒ TrustProductsEvaluationsContext
constructor
Initialize the TrustProductsEvaluationsContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version, trust_product_sid, sid) ⇒ TrustProductsEvaluationsContext
Initialize the TrustProductsEvaluationsContext
158 159 160 161 162 163 164 165 166 |
# File 'lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_evaluations.rb', line 158 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
#fetch ⇒ TrustProductsEvaluationsInstance
Fetch the TrustProductsEvaluationsInstance
170 171 172 173 174 175 176 177 178 179 180 181 |
# File 'lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_evaluations.rb', line 170 def fetch headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.fetch('GET', @uri, headers: headers) TrustProductsEvaluationsInstance.new( @version, payload, trust_product_sid: @solution[:trust_product_sid], sid: @solution[:sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
193 194 195 196 |
# File 'lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_evaluations.rb', line 193 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Trusthub.V1.TrustProductsEvaluationsContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
186 187 188 189 |
# File 'lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_evaluations.rb', line 186 def to_s context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Trusthub.V1.TrustProductsEvaluationsContext #{context}>" end |