Class: DingSDK::Operations::GetAuthenticationStatusRequest
- Inherits:
-
Crystalline::FieldAugmented
- Object
- Crystalline::FieldAugmented
- DingSDK::Operations::GetAuthenticationStatusRequest
- Extended by:
- T::Sig
- 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.
19 20 21 |
# File 'lib/ding_sdk/models/operations/getauthenticationstatus_request.rb', line 19 def initialize(auth_uuid: nil) @auth_uuid = auth_uuid end |
Instance Method Details
#==(other) ⇒ Object
23 24 25 26 27 |
# File 'lib/ding_sdk/models/operations/getauthenticationstatus_request.rb', line 23 def ==(other) return false unless other.is_a? self.class return false unless @auth_uuid == other.auth_uuid true end |