Class: Twilio::REST::Trusthub::V1::EndUserTypeInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Trusthub::V1::EndUserTypeInstance
- Defined in:
- lib/twilio-ruby/rest/trusthub/v1/end_user_type.rb
Instance Method Summary collapse
-
#context ⇒ EndUserTypeContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#fetch ⇒ EndUserTypeInstance
Fetch the EndUserTypeInstance.
-
#fields ⇒ Array<Hash>
The required information for creating an End-User.
-
#friendly_name ⇒ String
A human-readable description that is assigned to describe the End-User Type resource.
-
#initialize(version, payload, sid: nil) ⇒ EndUserTypeInstance
constructor
Initialize the EndUserTypeInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#machine_name ⇒ String
A machine-readable description of the End-User Type resource.
-
#sid ⇒ String
The unique string that identifies the End-User Type resource.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#url ⇒ String
The absolute URL of the End-User Type resource.
Constructor Details
#initialize(version, payload, sid: nil) ⇒ EndUserTypeInstance
Initialize the EndUserTypeInstance
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 |
# File 'lib/twilio-ruby/rest/trusthub/v1/end_user_type.rb', line 218 def initialize(version, payload , sid: nil) super(version) # Marshaled Properties @properties = { 'sid' => payload['sid'], 'friendly_name' => payload['friendly_name'], 'machine_name' => payload['machine_name'], 'fields' => payload['fields'], 'url' => payload['url'], } # Context @instance_context = nil @params = { 'sid' => sid || @properties['sid'] , } end |
Instance Method Details
#context ⇒ EndUserTypeContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
239 240 241 242 243 244 |
# File 'lib/twilio-ruby/rest/trusthub/v1/end_user_type.rb', line 239 def context unless @instance_context @instance_context = EndUserTypeContext.new(@version , @params['sid']) end @instance_context end |
#fetch ⇒ EndUserTypeInstance
Fetch the EndUserTypeInstance
279 280 281 282 |
# File 'lib/twilio-ruby/rest/trusthub/v1/end_user_type.rb', line 279 def fetch context.fetch end |
#fields ⇒ Array<Hash>
Returns The required information for creating an End-User. The required fields will change as regulatory needs change and will differ for businesses and individuals.
266 267 268 |
# File 'lib/twilio-ruby/rest/trusthub/v1/end_user_type.rb', line 266 def fields @properties['fields'] end |
#friendly_name ⇒ String
Returns A human-readable description that is assigned to describe the End-User Type resource. Examples can include first name, last name, email, business name, etc.
254 255 256 |
# File 'lib/twilio-ruby/rest/trusthub/v1/end_user_type.rb', line 254 def friendly_name @properties['friendly_name'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
293 294 295 296 |
# File 'lib/twilio-ruby/rest/trusthub/v1/end_user_type.rb', line 293 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Trusthub.V1.EndUserTypeInstance #{values}>" end |
#machine_name ⇒ String
Returns A machine-readable description of the End-User Type resource. Examples can include first_name, last_name, email, business_name, etc.
260 261 262 |
# File 'lib/twilio-ruby/rest/trusthub/v1/end_user_type.rb', line 260 def machine_name @properties['machine_name'] end |
#sid ⇒ String
Returns The unique string that identifies the End-User Type resource.
248 249 250 |
# File 'lib/twilio-ruby/rest/trusthub/v1/end_user_type.rb', line 248 def sid @properties['sid'] end |
#to_s ⇒ Object
Provide a user friendly representation
286 287 288 289 |
# File 'lib/twilio-ruby/rest/trusthub/v1/end_user_type.rb', line 286 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Trusthub.V1.EndUserTypeInstance #{values}>" end |
#url ⇒ String
Returns The absolute URL of the End-User Type resource.
272 273 274 |
# File 'lib/twilio-ruby/rest/trusthub/v1/end_user_type.rb', line 272 def url @properties['url'] end |