Class: DingSDK::Shared::CreateAuthenticationResponse
- Inherits:
-
Utils::FieldAugmented
- Object
- Utils::FieldAugmented
- DingSDK::Shared::CreateAuthenticationResponse
- Extended by:
- T::Sig
- Defined in:
- lib/ding_sdk/models/shared/createauthenticationresponse.rb
Overview
A successful response to an authentication creation request.
Instance Method Summary collapse
-
#initialize(authentication_uuid: nil, created_at: nil, expires_at: nil, status: nil) ⇒ CreateAuthenticationResponse
constructor
A new instance of CreateAuthenticationResponse.
Methods included from MetadataFields
#field, #fields, included, #marshal_json, #marshal_single
Constructor Details
#initialize(authentication_uuid: nil, created_at: nil, expires_at: nil, status: nil) ⇒ CreateAuthenticationResponse
Returns a new instance of CreateAuthenticationResponse.
29 30 31 32 33 34 |
# File 'lib/ding_sdk/models/shared/createauthenticationresponse.rb', line 29 def initialize(authentication_uuid: nil, created_at: nil, expires_at: nil, status: nil) @authentication_uuid = authentication_uuid @created_at = created_at @expires_at = expires_at @status = status end |