Class: Twilio::REST::Numbers::V2::RegulatoryComplianceList::RegulationInstance

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

Instance Method Summary collapse

Constructor Details

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

Initialize the RegulationInstance

Parameters:

  • version (Version)

    Version that contains the resource

  • payload (Hash)

    payload that contains response from Twilio

  • account_sid (String)

    The SID of the Account that created this Regulation resource.

  • sid (String) (defaults to: nil)

    The SID of the Call resource to fetch.



228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb', line 228

def initialize(version, payload , sid: nil)
    super(version)
    
    # Marshaled Properties
    @properties = { 
        'sid' => payload['sid'],
        'friendly_name' => payload['friendly_name'],
        'iso_country' => payload['iso_country'],
        'number_type' => payload['number_type'],
        'end_user_type' => payload['end_user_type'],
        'requirements' => payload['requirements'],
        'url' => payload['url'],
    }

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

Instance Method Details

#contextRegulationContext

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

Returns:



251
252
253
254
255
256
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb', line 251

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

#end_user_typeEndUserType

Returns:

  • (EndUserType)


284
285
286
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb', line 284

def end_user_type
    @properties['end_user_type']
end

#fetchRegulationInstance

Fetch the RegulationInstance

Returns:



303
304
305
306
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb', line 303

def fetch

    context.fetch
end

#friendly_nameString

Returns A human-readable description that is assigned to describe the Regulation resource. Examples can include Germany: Mobile - Business.

Returns:

  • (String)

    A human-readable description that is assigned to describe the Regulation resource. Examples can include Germany: Mobile - Business.



266
267
268
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb', line 266

def friendly_name
    @properties['friendly_name']
end

#inspectObject

Provide a detailed, user friendly representation



317
318
319
320
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb', line 317

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

#iso_countryString

Returns The ISO country code of the phone number’s country.

Returns:

  • (String)

    The ISO country code of the phone number’s country.



272
273
274
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb', line 272

def iso_country
    @properties['iso_country']
end

#number_typeString

Returns The type of phone number restricted by the regulatory requirement. For example, Germany mobile phone numbers provisioned by businesses require a business name with commercial register proof from the Handelsregisterauszug and a proof of address from Handelsregisterauszug or a trade license by Gewerbeanmeldung.

Returns:

  • (String)

    The type of phone number restricted by the regulatory requirement. For example, Germany mobile phone numbers provisioned by businesses require a business name with commercial register proof from the Handelsregisterauszug and a proof of address from Handelsregisterauszug or a trade license by Gewerbeanmeldung.



278
279
280
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb', line 278

def number_type
    @properties['number_type']
end

#requirementsHash

Returns The SID of an object that holds the regulatory information of the phone number country, phone number type, and end user type.

Returns:

  • (Hash)

    The SID of an object that holds the regulatory information of the phone number country, phone number type, and end user type.



290
291
292
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb', line 290

def requirements
    @properties['requirements']
end

#sidString

Returns The unique string that identifies the Regulation resource.

Returns:

  • (String)

    The unique string that identifies the Regulation resource.



260
261
262
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb', line 260

def sid
    @properties['sid']
end

#to_sObject

Provide a user friendly representation



310
311
312
313
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb', line 310

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

#urlString

Returns The absolute URL of the Regulation resource.

Returns:

  • (String)

    The absolute URL of the Regulation resource.



296
297
298
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb', line 296

def url
    @properties['url']
end