Class: DingSDK::Models::Shared::CreateCheckResponse

Inherits:
Object
  • Object
show all
Extended by:
T::Sig
Includes:
Crystalline::MetadataFields
Defined in:
lib/ding_sdk/models/shared/createcheckresponse.rb

Instance Method Summary collapse

Methods included from Crystalline::MetadataFields

#field, #fields, included, #marshal_single, #to_dict, #to_json

Constructor Details

#initialize(authentication_uuid: nil, status: nil) ⇒ CreateCheckResponse

Returns a new instance of CreateCheckResponse.



23
24
25
26
# File 'lib/ding_sdk/models/shared/createcheckresponse.rb', line 23

def initialize(authentication_uuid: nil, status: nil)
  @authentication_uuid = authentication_uuid
  @status = status
end

Instance Method Details

#==(other) ⇒ Object



28
29
30
31
32
33
# File 'lib/ding_sdk/models/shared/createcheckresponse.rb', line 28

def ==(other)
  return false unless other.is_a? self.class
  return false unless @authentication_uuid == other.authentication_uuid
  return false unless @status == other.status
  true
end