Class: Twilio::REST::Trusthub::V1::CustomerProfilesInstance

Inherits:
InstanceResource show all
Defined in:
lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, sid: nil) ⇒ CustomerProfilesInstance

Initialize the CustomerProfilesInstance



344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb', line 344

def initialize(version, payload, sid: nil)
  super(version)

  # Marshaled Properties
  @properties = {
      'sid' => payload['sid'],
      'account_sid' => payload['account_sid'],
      'policy_sid' => payload['policy_sid'],
      'friendly_name' => payload['friendly_name'],
      'status' => payload['status'],
      'valid_until' => Twilio.deserialize_iso8601_datetime(payload['valid_until']),
      'email' => payload['email'],
      'status_callback' => payload['status_callback'],
      'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']),
      'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']),
      'url' => payload['url'],
      'links' => payload['links'],
  }

  # Context
  @instance_context = nil
  @params = {'sid' => sid || @properties['sid'], }
end

Instance Method Details

#account_sidString



387
388
389
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb', line 387

def 
  @properties['account_sid']
end

#contextCustomerProfilesContext

Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context



372
373
374
375
376
377
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb', line 372

def context
  unless @instance_context
    @instance_context = CustomerProfilesContext.new(@version, @params['sid'], )
  end
  @instance_context
end

#customer_profiles_channel_endpoint_assignmentcustomer_profiles_channel_endpoint_assignment

Access the customer_profiles_channel_endpoint_assignment



502
503
504
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb', line 502

def customer_profiles_channel_endpoint_assignment
  context.customer_profiles_channel_endpoint_assignment
end

#customer_profiles_entity_assignmentscustomer_profiles_entity_assignments

Access the customer_profiles_entity_assignments



488
489
490
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb', line 488

def customer_profiles_entity_assignments
  context.customer_profiles_entity_assignments
end

#customer_profiles_evaluationscustomer_profiles_evaluations

Access the customer_profiles_evaluations



495
496
497
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb', line 495

def customer_profiles_evaluations
  context.customer_profiles_evaluations
end

#date_createdTime



429
430
431
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb', line 429

def date_created
  @properties['date_created']
end

#date_updatedTime



435
436
437
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb', line 435

def date_updated
  @properties['date_updated']
end

#deleteBoolean

Delete the CustomerProfilesInstance



481
482
483
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb', line 481

def delete
  context.delete
end

#emailString



417
418
419
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb', line 417

def email
  @properties['email']
end

#fetchCustomerProfilesInstance

Fetch the CustomerProfilesInstance



454
455
456
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb', line 454

def fetch
  context.fetch
end

#friendly_nameString



399
400
401
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb', line 399

def friendly_name
  @properties['friendly_name']
end

#inspectObject

Provide a detailed, user friendly representation



515
516
517
518
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb', line 515

def inspect
  values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ")
  "<Twilio.Trusthub.V1.CustomerProfilesInstance #{values}>"
end


447
448
449
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb', line 447

def links
  @properties['links']
end

#policy_sidString



393
394
395
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb', line 393

def policy_sid
  @properties['policy_sid']
end

#sidString



381
382
383
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb', line 381

def sid
  @properties['sid']
end

#statuscustomer_profiles.Status



405
406
407
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb', line 405

def status
  @properties['status']
end

#status_callbackString



423
424
425
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb', line 423

def status_callback
  @properties['status_callback']
end

#to_sObject

Provide a user friendly representation



508
509
510
511
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb', line 508

def to_s
  values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
  "<Twilio.Trusthub.V1.CustomerProfilesInstance #{values}>"
end

#update(status: :unset, status_callback: :unset, friendly_name: :unset, email: :unset) ⇒ CustomerProfilesInstance

Update the CustomerProfilesInstance



469
470
471
472
473
474
475
476
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb', line 469

def update(status: :unset, status_callback: :unset, friendly_name: :unset, email: :unset)
  context.update(
      status: status,
      status_callback: status_callback,
      friendly_name: friendly_name,
      email: email,
  )
end

#urlString



441
442
443
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb', line 441

def url
  @properties['url']
end

#valid_untilTime



411
412
413
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb', line 411

def valid_until
  @properties['valid_until']
end