Class: Twilio::REST::Numbers::V1::BulkEligibilityInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Numbers::V1::BulkEligibilityInstance
- Defined in:
- lib/twilio-ruby/rest/numbers/v1/bulk_eligibility.rb
Instance Method Summary collapse
-
#context ⇒ BulkEligibilityContext
Generate an instance context for the instance, the context is capable of performing various actions.
- #date_completed ⇒ Time
- #date_created ⇒ Time
-
#fetch ⇒ BulkEligibilityInstance
Fetch the BulkEligibilityInstance.
-
#friendly_name ⇒ String
This is the string that you assigned as a friendly name for describing the eligibility check request.
-
#initialize(version, payload, request_id: nil) ⇒ BulkEligibilityInstance
constructor
Initialize the BulkEligibilityInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#request_id ⇒ String
The SID of the bulk eligibility check that you want to know about.
-
#results ⇒ Array<Hash>
The result set that contains the eligibility check response for each requested number, each result has at least the following attributes: phone_number: The requested phone number ,hosting_account_sid: The account sid where the phone number will be hosted, country: Phone number’s country, eligibility_status: Indicates the eligibility status of the PN (Eligible/Ineligible), eligibility_sub_status: Indicates the sub status of the eligibility , ineligibility_reason: Reason for number’s ineligibility (if applicable), next_step: Suggested next step in the hosting process based on the eligibility status.
-
#status ⇒ String
This is the status of the bulk eligibility check request.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#url ⇒ String
This is the url of the request that you’re trying to reach out to locate the resource.
Constructor Details
#initialize(version, payload, request_id: nil) ⇒ BulkEligibilityInstance
Initialize the BulkEligibilityInstance
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 |
# File 'lib/twilio-ruby/rest/numbers/v1/bulk_eligibility.rb', line 128 def initialize(version, payload , request_id: nil) super(version) # Marshaled Properties @properties = { 'request_id' => payload['request_id'], 'url' => payload['url'], 'results' => payload['results'], 'friendly_name' => payload['friendly_name'], 'status' => payload['status'], 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']), 'date_completed' => Twilio.deserialize_iso8601_datetime(payload['date_completed']), } # Context @instance_context = nil @params = { 'request_id' => request_id || @properties['request_id'] , } end |
Instance Method Details
#context ⇒ BulkEligibilityContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
151 152 153 154 155 156 |
# File 'lib/twilio-ruby/rest/numbers/v1/bulk_eligibility.rb', line 151 def context unless @instance_context @instance_context = BulkEligibilityContext.new(@version , @params['request_id']) end @instance_context end |
#date_completed ⇒ Time
196 197 198 |
# File 'lib/twilio-ruby/rest/numbers/v1/bulk_eligibility.rb', line 196 def date_completed @properties['date_completed'] end |
#date_created ⇒ Time
190 191 192 |
# File 'lib/twilio-ruby/rest/numbers/v1/bulk_eligibility.rb', line 190 def date_created @properties['date_created'] end |
#fetch ⇒ BulkEligibilityInstance
Fetch the BulkEligibilityInstance
203 204 205 206 |
# File 'lib/twilio-ruby/rest/numbers/v1/bulk_eligibility.rb', line 203 def fetch context.fetch end |
#friendly_name ⇒ String
Returns This is the string that you assigned as a friendly name for describing the eligibility check request.
178 179 180 |
# File 'lib/twilio-ruby/rest/numbers/v1/bulk_eligibility.rb', line 178 def friendly_name @properties['friendly_name'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
217 218 219 220 |
# File 'lib/twilio-ruby/rest/numbers/v1/bulk_eligibility.rb', line 217 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Numbers.V1.BulkEligibilityInstance #{values}>" end |
#request_id ⇒ String
Returns The SID of the bulk eligibility check that you want to know about.
160 161 162 |
# File 'lib/twilio-ruby/rest/numbers/v1/bulk_eligibility.rb', line 160 def request_id @properties['request_id'] end |
#results ⇒ Array<Hash>
Returns The result set that contains the eligibility check response for each requested number, each result has at least the following attributes: phone_number: The requested phone number ,hosting_account_sid: The account sid where the phone number will be hosted, country: Phone number’s country, eligibility_status: Indicates the eligibility status of the PN (Eligible/Ineligible), eligibility_sub_status: Indicates the sub status of the eligibility , ineligibility_reason: Reason for number’s ineligibility (if applicable), next_step: Suggested next step in the hosting process based on the eligibility status.
172 173 174 |
# File 'lib/twilio-ruby/rest/numbers/v1/bulk_eligibility.rb', line 172 def results @properties['results'] end |
#status ⇒ String
Returns This is the status of the bulk eligibility check request. (Example: COMPLETE, IN_PROGRESS).
184 185 186 |
# File 'lib/twilio-ruby/rest/numbers/v1/bulk_eligibility.rb', line 184 def status @properties['status'] end |
#to_s ⇒ Object
Provide a user friendly representation
210 211 212 213 |
# File 'lib/twilio-ruby/rest/numbers/v1/bulk_eligibility.rb', line 210 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Numbers.V1.BulkEligibilityInstance #{values}>" end |
#url ⇒ String
Returns This is the url of the request that you’re trying to reach out to locate the resource.
166 167 168 |
# File 'lib/twilio-ruby/rest/numbers/v1/bulk_eligibility.rb', line 166 def url @properties['url'] end |