Class: Twilio::REST::Numbers::V2::RegulatoryComplianceList::RegulationInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Numbers::V2::RegulatoryComplianceList::RegulationInstance
- Defined in:
- lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb
Instance Method Summary collapse
-
#context ⇒ RegulationContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#end_user_type ⇒ regulation.EndUserType
The type of End User of the Regulation resource.
-
#fetch ⇒ RegulationInstance
Fetch the RegulationInstance.
-
#friendly_name ⇒ String
A human-readable description of the Regulation resource.
-
#initialize(version, payload, sid: nil) ⇒ RegulationInstance
constructor
Initialize the RegulationInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#iso_country ⇒ String
The ISO country code of the phone number's country.
-
#number_type ⇒ String
The type of phone number restricted by the regulatory requirement.
-
#requirements ⇒ Hash
The sid of a regulation object that dictates requirements.
-
#sid ⇒ String
The unique string that identifies the Regulation resource.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#url ⇒ String
The absolute URL of the Regulation resource.
Constructor Details
#initialize(version, payload, sid: nil) ⇒ RegulationInstance
Initialize the RegulationInstance
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 |
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb', line 217 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
#context ⇒ RegulationContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
240 241 242 243 244 245 |
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb', line 240 def context unless @instance_context @instance_context = RegulationContext.new(@version, @params['sid'], ) end @instance_context end |
#end_user_type ⇒ regulation.EndUserType
Returns The type of End User of the Regulation resource.
273 274 275 |
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb', line 273 def end_user_type @properties['end_user_type'] end |
#fetch ⇒ RegulationInstance
Fetch the RegulationInstance
292 293 294 |
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb', line 292 def fetch context.fetch end |
#friendly_name ⇒ String
Returns A human-readable description of the Regulation resource.
255 256 257 |
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb', line 255 def friendly_name @properties['friendly_name'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
305 306 307 308 |
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb', line 305 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Numbers.V2.RegulationInstance #{values}>" end |
#iso_country ⇒ String
Returns The ISO country code of the phone number's country.
261 262 263 |
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb', line 261 def iso_country @properties['iso_country'] end |
#number_type ⇒ String
Returns The type of phone number restricted by the regulatory requirement.
267 268 269 |
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb', line 267 def number_type @properties['number_type'] end |
#requirements ⇒ Hash
Returns The sid of a regulation object that dictates requirements.
279 280 281 |
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb', line 279 def requirements @properties['requirements'] end |
#sid ⇒ String
Returns The unique string that identifies the Regulation resource.
249 250 251 |
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb', line 249 def sid @properties['sid'] end |
#to_s ⇒ Object
Provide a user friendly representation
298 299 300 301 |
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb', line 298 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Numbers.V2.RegulationInstance #{values}>" end |
#url ⇒ String
Returns The absolute URL of the Regulation resource.
285 286 287 |
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb', line 285 def url @properties['url'] end |