Class: Dinie::CredentialWithSecret
- Inherits:
-
Credential
- Object
- Internal::Model
- Credential
- Dinie::CredentialWithSecret
- Defined in:
- lib/dinie/generated/types/credential.rb
Constant Summary
Constants inherited from Internal::Model
Internal::Model::REDACTED_ATTRIBUTES
Class Method Summary collapse
Methods inherited from Credential
Methods inherited from Internal::Model
#==, attribute, attributes, #deconstruct_keys, #hash, inherited, #initialize, #inspect, #to_h
Constructor Details
This class inherits a constructor from Dinie::Internal::Model
Class Method Details
.deserialize(raw) ⇒ Object
37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
# File 'lib/dinie/generated/types/credential.rb', line 37 def self.deserialize(raw) new( client_id: raw[:client_id], client_secret: raw[:client_secret], created_at: raw[:created_at], description: raw[:description], expires_at: raw[:expires_at], id: raw[:id], last_used_at: raw[:last_used_at], name: raw[:name], status: raw[:status], updated_at: raw[:updated_at] ) end |