Class: Twilio::REST::Trusthub::V1::EndUserTypeContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Trusthub::V1::EndUserTypeContext
- Defined in:
- lib/twilio-ruby/rest/trusthub/v1/end_user_type.rb
Instance Method Summary collapse
-
#fetch ⇒ EndUserTypeInstance
Fetch the EndUserTypeInstance.
-
#initialize(version, sid) ⇒ EndUserTypeContext
constructor
Initialize the EndUserTypeContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version, sid) ⇒ EndUserTypeContext
Initialize the EndUserTypeContext
132 133 134 135 136 137 138 139 140 |
# File 'lib/twilio-ruby/rest/trusthub/v1/end_user_type.rb', line 132 def initialize(version, sid) super(version) # Path Solution @solution = { sid: sid, } @uri = "/EndUserTypes/#{@solution[:sid]}" end |
Instance Method Details
#fetch ⇒ EndUserTypeInstance
Fetch the EndUserTypeInstance
144 145 146 147 148 149 150 151 152 |
# File 'lib/twilio-ruby/rest/trusthub/v1/end_user_type.rb', line 144 def fetch payload = @version.fetch('GET', @uri) EndUserTypeInstance.new( @version, payload, sid: @solution[:sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
164 165 166 167 |
# File 'lib/twilio-ruby/rest/trusthub/v1/end_user_type.rb', line 164 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Trusthub.V1.EndUserTypeContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
157 158 159 160 |
# File 'lib/twilio-ruby/rest/trusthub/v1/end_user_type.rb', line 157 def to_s context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Trusthub.V1.EndUserTypeContext #{context}>" end |