Class: Twilio::REST::Verify::V2::ServiceContext::EntityContext::ChallengeContext::NotificationInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Verify::V2::ServiceContext::EntityContext::ChallengeContext::NotificationInstance
- Defined in:
- lib/twilio-ruby/rest/verify/v2/service/entity/challenge/notification.rb
Overview
PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
Instance Method Summary collapse
-
#account_sid ⇒ String
Account Sid.
-
#challenge_sid ⇒ String
Challenge Sid.
-
#date_created ⇒ Time
The date this Notification was created.
-
#entity_sid ⇒ String
Entity Sid.
-
#identity ⇒ String
Unique external identifier of the Entity.
-
#initialize(version, payload, service_sid: nil, identity: nil, challenge_sid: nil) ⇒ NotificationInstance
constructor
Initialize the NotificationInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#priority ⇒ String
The priority of the notification.
-
#service_sid ⇒ String
Service Sid.
-
#sid ⇒ String
A string that uniquely identifies this Notification.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#ttl ⇒ String
How long, in seconds, the notification is valid.
Constructor Details
#initialize(version, payload, service_sid: nil, identity: nil, challenge_sid: nil) ⇒ NotificationInstance
Initialize the NotificationInstance
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 |
# File 'lib/twilio-ruby/rest/verify/v2/service/entity/challenge/notification.rb', line 116 def initialize(version, payload, service_sid: nil, identity: nil, challenge_sid: nil) super(version) # Marshaled Properties @properties = { 'sid' => payload['sid'], 'account_sid' => payload['account_sid'], 'service_sid' => payload['service_sid'], 'entity_sid' => payload['entity_sid'], 'identity' => payload['identity'], 'challenge_sid' => payload['challenge_sid'], 'priority' => payload['priority'], 'ttl' => payload['ttl'].to_i, 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']), } end |
Instance Method Details
#account_sid ⇒ String
Returns Account Sid.
141 142 143 |
# File 'lib/twilio-ruby/rest/verify/v2/service/entity/challenge/notification.rb', line 141 def account_sid @properties['account_sid'] end |
#challenge_sid ⇒ String
Returns Challenge Sid.
165 166 167 |
# File 'lib/twilio-ruby/rest/verify/v2/service/entity/challenge/notification.rb', line 165 def challenge_sid @properties['challenge_sid'] end |
#date_created ⇒ Time
Returns The date this Notification was created.
183 184 185 |
# File 'lib/twilio-ruby/rest/verify/v2/service/entity/challenge/notification.rb', line 183 def date_created @properties['date_created'] end |
#entity_sid ⇒ String
Returns Entity Sid.
153 154 155 |
# File 'lib/twilio-ruby/rest/verify/v2/service/entity/challenge/notification.rb', line 153 def entity_sid @properties['entity_sid'] end |
#identity ⇒ String
Returns Unique external identifier of the Entity.
159 160 161 |
# File 'lib/twilio-ruby/rest/verify/v2/service/entity/challenge/notification.rb', line 159 def identity @properties['identity'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
195 196 197 |
# File 'lib/twilio-ruby/rest/verify/v2/service/entity/challenge/notification.rb', line 195 def inspect "<Twilio.Verify.V2.NotificationInstance>" end |
#priority ⇒ String
Returns The priority of the notification.
171 172 173 |
# File 'lib/twilio-ruby/rest/verify/v2/service/entity/challenge/notification.rb', line 171 def priority @properties['priority'] end |
#service_sid ⇒ String
Returns Service Sid.
147 148 149 |
# File 'lib/twilio-ruby/rest/verify/v2/service/entity/challenge/notification.rb', line 147 def service_sid @properties['service_sid'] end |
#sid ⇒ String
Returns A string that uniquely identifies this Notification.
135 136 137 |
# File 'lib/twilio-ruby/rest/verify/v2/service/entity/challenge/notification.rb', line 135 def sid @properties['sid'] end |
#to_s ⇒ Object
Provide a user friendly representation
189 190 191 |
# File 'lib/twilio-ruby/rest/verify/v2/service/entity/challenge/notification.rb', line 189 def to_s "<Twilio.Verify.V2.NotificationInstance>" end |
#ttl ⇒ String
Returns How long, in seconds, the notification is valid.
177 178 179 |
# File 'lib/twilio-ruby/rest/verify/v2/service/entity/challenge/notification.rb', line 177 def ttl @properties['ttl'] end |