Class: Twilio::REST::Trusthub::V1::CustomerProfilesContext::CustomerProfilesEvaluationsContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Trusthub::V1::CustomerProfilesContext::CustomerProfilesEvaluationsContext
- Defined in:
- lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_evaluations.rb
Instance Method Summary collapse
-
#fetch ⇒ CustomerProfilesEvaluationsInstance
Fetch the CustomerProfilesEvaluationsInstance.
-
#initialize(version, customer_profile_sid, sid) ⇒ CustomerProfilesEvaluationsContext
constructor
Initialize the CustomerProfilesEvaluationsContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version, customer_profile_sid, sid) ⇒ CustomerProfilesEvaluationsContext
Initialize the CustomerProfilesEvaluationsContext
174 175 176 177 178 179 180 |
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_evaluations.rb', line 174 def initialize(version, customer_profile_sid, sid) super(version) # Path Solution @solution = {customer_profile_sid: customer_profile_sid, sid: sid, } @uri = "/CustomerProfiles/#{@solution[:customer_profile_sid]}/Evaluations/#{@solution[:sid]}" end |
Instance Method Details
#fetch ⇒ CustomerProfilesEvaluationsInstance
Fetch the CustomerProfilesEvaluationsInstance
185 186 187 188 189 190 191 192 193 194 |
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_evaluations.rb', line 185 def fetch payload = @version.fetch('GET', @uri) CustomerProfilesEvaluationsInstance.new( @version, payload, customer_profile_sid: @solution[:customer_profile_sid], sid: @solution[:sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
205 206 207 208 |
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_evaluations.rb', line 205 def inspect context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Trusthub.V1.CustomerProfilesEvaluationsContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
198 199 200 201 |
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_evaluations.rb', line 198 def to_s context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Trusthub.V1.CustomerProfilesEvaluationsContext #{context}>" end |