Class: Twilio::REST::Api::V2010::AccountContext::NewKeyInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Api::V2010::AccountContext::NewKeyInstance
- Defined in:
- lib/twilio-ruby/rest/api/v2010/account/new_key.rb
Instance Method Summary collapse
-
#date_created ⇒ Time
The RFC 2822 date and time in GMT that the resource was created.
-
#date_updated ⇒ Time
The RFC 2822 date and time in GMT that the resource was last updated.
-
#friendly_name ⇒ String
The string that you assigned to describe the resource.
-
#initialize(version, payload, account_sid: nil) ⇒ NewKeyInstance
constructor
Initialize the NewKeyInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#secret ⇒ String
The secret your application uses to sign Access Tokens and to authenticate to the REST API.
-
#sid ⇒ String
The unique string that identifies the resource.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version, payload, account_sid: nil) ⇒ NewKeyInstance
Initialize the NewKeyInstance
91 92 93 94 95 96 97 98 99 100 101 102 |
# File 'lib/twilio-ruby/rest/api/v2010/account/new_key.rb', line 91 def initialize(version, payload, account_sid: nil) super(version) # Marshaled Properties @properties = { 'sid' => payload['sid'], 'friendly_name' => payload['friendly_name'], 'date_created' => Twilio.deserialize_rfc2822(payload['date_created']), 'date_updated' => Twilio.deserialize_rfc2822(payload['date_updated']), 'secret' => payload['secret'], } end |
Instance Method Details
#date_created ⇒ Time
Returns The RFC 2822 date and time in GMT that the resource was created.
118 119 120 |
# File 'lib/twilio-ruby/rest/api/v2010/account/new_key.rb', line 118 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
Returns The RFC 2822 date and time in GMT that the resource was last updated.
124 125 126 |
# File 'lib/twilio-ruby/rest/api/v2010/account/new_key.rb', line 124 def date_updated @properties['date_updated'] end |
#friendly_name ⇒ String
Returns The string that you assigned to describe the resource.
112 113 114 |
# File 'lib/twilio-ruby/rest/api/v2010/account/new_key.rb', line 112 def friendly_name @properties['friendly_name'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
142 143 144 |
# File 'lib/twilio-ruby/rest/api/v2010/account/new_key.rb', line 142 def inspect "<Twilio.Api.V2010.NewKeyInstance>" end |
#secret ⇒ String
Returns The secret your application uses to sign Access Tokens and to authenticate to the REST API.
130 131 132 |
# File 'lib/twilio-ruby/rest/api/v2010/account/new_key.rb', line 130 def secret @properties['secret'] end |
#sid ⇒ String
Returns The unique string that identifies the resource.
106 107 108 |
# File 'lib/twilio-ruby/rest/api/v2010/account/new_key.rb', line 106 def sid @properties['sid'] end |
#to_s ⇒ Object
Provide a user friendly representation
136 137 138 |
# File 'lib/twilio-ruby/rest/api/v2010/account/new_key.rb', line 136 def to_s "<Twilio.Api.V2010.NewKeyInstance>" end |