Class: Twilio::REST::Trusthub::V1
- Inherits:
-
Version
- Object
- Version
- Twilio::REST::Trusthub::V1
show all
- Defined in:
- lib/twilio-ruby/rest/trusthub/v1.rb,
lib/twilio-ruby/rest/trusthub/v1/end_user.rb,
lib/twilio-ruby/rest/trusthub/v1/policies.rb,
lib/twilio-ruby/rest/trusthub/v1/end_user_type.rb,
lib/twilio-ruby/rest/trusthub/v1/trust_products.rb,
lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb,
lib/twilio-ruby/rest/trusthub/v1/supporting_document.rb,
lib/twilio-ruby/rest/trusthub/v1/supporting_document_type.rb,
lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_evaluations.rb,
lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_evaluations.rb,
lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_entity_assignments.rb,
lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_entity_assignments.rb,
lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_channel_endpoint_assignment.rb,
lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_channel_endpoint_assignment.rb
Defined Under Namespace
Classes: CustomerProfilesContext, CustomerProfilesInstance, CustomerProfilesList, CustomerProfilesPage, EndUserContext, EndUserInstance, EndUserList, EndUserPage, EndUserTypeContext, EndUserTypeInstance, EndUserTypeList, EndUserTypePage, PoliciesContext, PoliciesInstance, PoliciesList, PoliciesPage, SupportingDocumentContext, SupportingDocumentInstance, SupportingDocumentList, SupportingDocumentPage, SupportingDocumentTypeContext, SupportingDocumentTypeInstance, SupportingDocumentTypeList, SupportingDocumentTypePage, TrustProductsContext, TrustProductsInstance, TrustProductsList, TrustProductsPage
Instance Attribute Summary
Attributes inherited from Version
#domain
Instance Method Summary
collapse
Methods inherited from Version
#absolute_url, #create, #delete, #exception, #fetch, #page, #read_limits, #relative_uri, #request, #stream, #update
Constructor Details
#initialize(domain) ⇒ V1
Initialize the V1 version of Trusthub
15
16
17
18
19
20
21
22
23
24
25
|
# File 'lib/twilio-ruby/rest/trusthub/v1.rb', line 15
def initialize(domain)
super
@version = 'v1'
@customer_profiles = nil
@end_users = nil
@end_user_types = nil
@policies = nil
@supporting_documents = nil
@supporting_document_types = nil
@trust_products = nil
end
|
Instance Method Details
32
33
34
35
36
37
38
39
40
41
|
# File 'lib/twilio-ruby/rest/trusthub/v1.rb', line 32
def customer_profiles(sid=:unset)
if sid.nil?
raise ArgumentError, 'sid cannot be nil'
end
if sid == :unset
@customer_profiles ||= CustomerProfilesList.new self
else
CustomerProfilesContext.new(self, sid)
end
end
|
64
65
66
67
68
69
70
71
72
73
|
# File 'lib/twilio-ruby/rest/trusthub/v1.rb', line 64
def end_user_types(sid=:unset)
if sid.nil?
raise ArgumentError, 'sid cannot be nil'
end
if sid == :unset
@end_user_types ||= EndUserTypeList.new self
else
EndUserTypeContext.new(self, sid)
end
end
|
48
49
50
51
52
53
54
55
56
57
|
# File 'lib/twilio-ruby/rest/trusthub/v1.rb', line 48
def end_users(sid=:unset)
if sid.nil?
raise ArgumentError, 'sid cannot be nil'
end
if sid == :unset
@end_users ||= EndUserList.new self
else
EndUserContext.new(self, sid)
end
end
|
79
80
81
82
83
84
85
86
87
88
|
# File 'lib/twilio-ruby/rest/trusthub/v1.rb', line 79
def policies(sid=:unset)
if sid.nil?
raise ArgumentError, 'sid cannot be nil'
end
if sid == :unset
@policies ||= PoliciesList.new self
else
PoliciesContext.new(self, sid)
end
end
|
111
112
113
114
115
116
117
118
119
120
|
# File 'lib/twilio-ruby/rest/trusthub/v1.rb', line 111
def supporting_document_types(sid=:unset)
if sid.nil?
raise ArgumentError, 'sid cannot be nil'
end
if sid == :unset
@supporting_document_types ||= SupportingDocumentTypeList.new self
else
SupportingDocumentTypeContext.new(self, sid)
end
end
|
95
96
97
98
99
100
101
102
103
104
|
# File 'lib/twilio-ruby/rest/trusthub/v1.rb', line 95
def supporting_documents(sid=:unset)
if sid.nil?
raise ArgumentError, 'sid cannot be nil'
end
if sid == :unset
@supporting_documents ||= SupportingDocumentList.new self
else
SupportingDocumentContext.new(self, sid)
end
end
|
#to_s ⇒ Object
Provide a user friendly representation
140
141
142
|
# File 'lib/twilio-ruby/rest/trusthub/v1.rb', line 140
def to_s
'<Twilio::REST::Trusthub::V1>'
end
|
127
128
129
130
131
132
133
134
135
136
|
# File 'lib/twilio-ruby/rest/trusthub/v1.rb', line 127
def trust_products(sid=:unset)
if sid.nil?
raise ArgumentError, 'sid cannot be nil'
end
if sid == :unset
@trust_products ||= TrustProductsList.new self
else
TrustProductsContext.new(self, sid)
end
end
|