Class: DingSDK::Models::Operations::GetAuthenticationStatusRequest
- Inherits:
-
Object
- Object
- DingSDK::Models::Operations::GetAuthenticationStatusRequest
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/ding_sdk/models/operations/getauthenticationstatus_request.rb
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(auth_uuid: nil) ⇒ GetAuthenticationStatusRequest
constructor
A new instance of GetAuthenticationStatusRequest.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(auth_uuid: nil) ⇒ GetAuthenticationStatusRequest
Returns a new instance of GetAuthenticationStatusRequest.
21 22 23 |
# File 'lib/ding_sdk/models/operations/getauthenticationstatus_request.rb', line 21 def initialize(auth_uuid: nil) @auth_uuid = auth_uuid end |
Instance Method Details
#==(other) ⇒ Object
25 26 27 28 29 |
# File 'lib/ding_sdk/models/operations/getauthenticationstatus_request.rb', line 25 def ==(other) return false unless other.is_a? self.class return false unless @auth_uuid == other.auth_uuid true end |