Class: Twilio::REST::Trusthub::V1::CustomerProfilesContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Trusthub::V1::CustomerProfilesContext
- Defined in:
- lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb,
lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_evaluations.rb,
lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_entity_assignments.rb,
lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_channel_endpoint_assignment.rb
Defined Under Namespace
Classes: CustomerProfilesChannelEndpointAssignmentContext, CustomerProfilesChannelEndpointAssignmentInstance, CustomerProfilesChannelEndpointAssignmentList, CustomerProfilesChannelEndpointAssignmentPage, CustomerProfilesEntityAssignmentsContext, CustomerProfilesEntityAssignmentsInstance, CustomerProfilesEntityAssignmentsList, CustomerProfilesEntityAssignmentsPage, CustomerProfilesEvaluationsContext, CustomerProfilesEvaluationsInstance, CustomerProfilesEvaluationsList, CustomerProfilesEvaluationsPage
Instance Method Summary collapse
-
#customer_profiles_channel_endpoint_assignment(sid = :unset) ⇒ CustomerProfilesChannelEndpointAssignmentList, CustomerProfilesChannelEndpointAssignmentContext
Access the customer_profiles_channel_endpoint_assignment.
-
#customer_profiles_entity_assignments(sid = :unset) ⇒ CustomerProfilesEntityAssignmentsList, CustomerProfilesEntityAssignmentsContext
Access the customer_profiles_entity_assignments.
-
#customer_profiles_evaluations(sid = :unset) ⇒ CustomerProfilesEvaluationsList, CustomerProfilesEvaluationsContext
Access the customer_profiles_evaluations.
-
#delete ⇒ Boolean
Delete the CustomerProfilesInstance.
-
#fetch ⇒ CustomerProfilesInstance
Fetch the CustomerProfilesInstance.
-
#initialize(version, sid) ⇒ CustomerProfilesContext
constructor
Initialize the CustomerProfilesContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(status: :unset, status_callback: :unset, friendly_name: :unset, email: :unset) ⇒ CustomerProfilesInstance
Update the CustomerProfilesInstance.
Constructor Details
#initialize(version, sid) ⇒ CustomerProfilesContext
Initialize the CustomerProfilesContext
188 189 190 191 192 193 194 195 196 197 198 199 |
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb', line 188 def initialize(version, sid) super(version) # Path Solution @solution = { sid: sid, } @uri = "/CustomerProfiles/#{@solution[:sid]}" # Dependents @customer_profiles_channel_endpoint_assignment = nil @customer_profiles_entity_assignments = nil @customer_profiles_evaluations = nil end |
Instance Method Details
#customer_profiles_channel_endpoint_assignment(sid = :unset) ⇒ CustomerProfilesChannelEndpointAssignmentList, CustomerProfilesChannelEndpointAssignmentContext
Access the customer_profiles_channel_endpoint_assignment
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 |
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb', line 270 def customer_profiles_channel_endpoint_assignment(sid=:unset) raise ArgumentError, 'sid cannot be nil' if sid.nil? if sid != :unset return CustomerProfilesChannelEndpointAssignmentContext.new(@version, @solution[:sid],sid ) end unless @customer_profiles_channel_endpoint_assignment @customer_profiles_channel_endpoint_assignment = CustomerProfilesChannelEndpointAssignmentList.new( @version, customer_profile_sid: @solution[:sid], ) end @customer_profiles_channel_endpoint_assignment end |
#customer_profiles_entity_assignments(sid = :unset) ⇒ CustomerProfilesEntityAssignmentsList, CustomerProfilesEntityAssignmentsContext
Access the customer_profiles_entity_assignments
289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 |
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb', line 289 def customer_profiles_entity_assignments(sid=:unset) raise ArgumentError, 'sid cannot be nil' if sid.nil? if sid != :unset return CustomerProfilesEntityAssignmentsContext.new(@version, @solution[:sid],sid ) end unless @customer_profiles_entity_assignments @customer_profiles_entity_assignments = CustomerProfilesEntityAssignmentsList.new( @version, customer_profile_sid: @solution[:sid], ) end @customer_profiles_entity_assignments end |
#customer_profiles_evaluations(sid = :unset) ⇒ CustomerProfilesEvaluationsList, CustomerProfilesEvaluationsContext
Access the customer_profiles_evaluations
308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 |
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb', line 308 def customer_profiles_evaluations(sid=:unset) raise ArgumentError, 'sid cannot be nil' if sid.nil? if sid != :unset return CustomerProfilesEvaluationsContext.new(@version, @solution[:sid],sid ) end unless @customer_profiles_evaluations @customer_profiles_evaluations = CustomerProfilesEvaluationsList.new( @version, customer_profile_sid: @solution[:sid], ) end @customer_profiles_evaluations end |
#delete ⇒ Boolean
Delete the CustomerProfilesInstance
203 204 205 206 207 208 209 210 |
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb', line 203 def delete headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) @version.delete('DELETE', @uri, headers: headers) end |
#fetch ⇒ CustomerProfilesInstance
Fetch the CustomerProfilesInstance
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 |
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb', line 215 def fetch headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.fetch('GET', @uri, headers: headers) CustomerProfilesInstance.new( @version, payload, sid: @solution[:sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
333 334 335 336 |
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb', line 333 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Trusthub.V1.CustomerProfilesContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
326 327 328 329 |
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb', line 326 def to_s context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Trusthub.V1.CustomerProfilesContext #{context}>" end |
#update(status: :unset, status_callback: :unset, friendly_name: :unset, email: :unset) ⇒ CustomerProfilesInstance
Update the CustomerProfilesInstance
238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 |
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb', line 238 def update( status: :unset, status_callback: :unset, friendly_name: :unset, email: :unset ) data = Twilio::Values.of({ 'Status' => status, 'StatusCallback' => status_callback, 'FriendlyName' => friendly_name, 'Email' => email, }) headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.update('POST', @uri, data: data, headers: headers) CustomerProfilesInstance.new( @version, payload, sid: @solution[:sid], ) end |