Class: DingSDK::Models::Shared::RetryAuthenticationRequest
- Inherits:
-
Object
- Object
- DingSDK::Models::Shared::RetryAuthenticationRequest
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/ding_sdk/models/shared/retryauthenticationrequest.rb
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(authentication_uuid: nil, customer_uuid: nil) ⇒ RetryAuthenticationRequest
constructor
A new instance of RetryAuthenticationRequest.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(authentication_uuid: nil, customer_uuid: nil) ⇒ RetryAuthenticationRequest
Returns a new instance of RetryAuthenticationRequest.
23 24 25 26 |
# File 'lib/ding_sdk/models/shared/retryauthenticationrequest.rb', line 23 def initialize(authentication_uuid: nil, customer_uuid: nil) @authentication_uuid = authentication_uuid @customer_uuid = customer_uuid end |
Instance Method Details
#==(other) ⇒ Object
28 29 30 31 32 33 |
# File 'lib/ding_sdk/models/shared/retryauthenticationrequest.rb', line 28 def ==(other) return false unless other.is_a? self.class return false unless @authentication_uuid == other.authentication_uuid return false unless @customer_uuid == other.customer_uuid true end |