Class: Twilio::REST::Api::V2010::AccountContext::NewSigningKeyInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Api::V2010::AccountContext::NewSigningKeyInstance
- Defined in:
- lib/twilio-ruby/rest/api/v2010/account/new_signing_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) ⇒ NewSigningKeyInstance
constructor
Initialize the NewSigningKeyInstance.
-
#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) ⇒ NewSigningKeyInstance
Initialize the NewSigningKeyInstance
86 87 88 89 90 91 92 93 94 95 96 97 |
# File 'lib/twilio-ruby/rest/api/v2010/account/new_signing_key.rb', line 86 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.
113 114 115 |
# File 'lib/twilio-ruby/rest/api/v2010/account/new_signing_key.rb', line 113 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.
119 120 121 |
# File 'lib/twilio-ruby/rest/api/v2010/account/new_signing_key.rb', line 119 def date_updated @properties['date_updated'] end |
#friendly_name ⇒ String
Returns The string that you assigned to describe the resource.
107 108 109 |
# File 'lib/twilio-ruby/rest/api/v2010/account/new_signing_key.rb', line 107 def friendly_name @properties['friendly_name'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
137 138 139 |
# File 'lib/twilio-ruby/rest/api/v2010/account/new_signing_key.rb', line 137 def inspect "<Twilio.Api.V2010.NewSigningKeyInstance>" end |
#secret ⇒ String
Returns The secret your application uses to sign Access Tokens and to authenticate to the REST API.
125 126 127 |
# File 'lib/twilio-ruby/rest/api/v2010/account/new_signing_key.rb', line 125 def secret @properties['secret'] end |
#sid ⇒ String
Returns The unique string that identifies the resource.
101 102 103 |
# File 'lib/twilio-ruby/rest/api/v2010/account/new_signing_key.rb', line 101 def sid @properties['sid'] end |
#to_s ⇒ Object
Provide a user friendly representation
131 132 133 |
# File 'lib/twilio-ruby/rest/api/v2010/account/new_signing_key.rb', line 131 def to_s "<Twilio.Api.V2010.NewSigningKeyInstance>" end |