Class: Twilio::REST::Numbers::V2::RegulatoryComplianceList::EndUserTypeContext

Inherits:
InstanceContext
  • Object
show all
Defined in:
lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/end_user_type.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, sid) ⇒ EndUserTypeContext

Initialize the EndUserTypeContext

Parameters:

  • version (Version)

    Version that contains the resource

  • sid (String)

    The unique string that identifies the End-User Type resource.



135
136
137
138
139
140
141
142
143
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/end_user_type.rb', line 135

def initialize(version, sid)
    super(version)

    # Path Solution
    @solution = { sid: sid,  }
    @uri = "/RegulatoryCompliance/EndUserTypes/#{@solution[:sid]}"

    
end

Instance Method Details

#fetchEndUserTypeInstance

Fetch the EndUserTypeInstance

Returns:



147
148
149
150
151
152
153
154
155
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/end_user_type.rb', line 147

def fetch

    payload = @version.fetch('GET', @uri)
    EndUserTypeInstance.new(
        @version,
        payload,
        sid: @solution[:sid],
    )
end

#inspectObject

Provide a detailed, user friendly representation



167
168
169
170
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/end_user_type.rb', line 167

def inspect
    context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
    "#<Twilio.Numbers.V2.EndUserTypeContext #{context}>"
end

#to_sObject

Provide a user friendly representation



160
161
162
163
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/end_user_type.rb', line 160

def to_s
    context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
    "#<Twilio.Numbers.V2.EndUserTypeContext #{context}>"
end