Class: Moov::Models::Operations::UpdateDisputeEvidenceRequest

Inherits:
Object
  • Object
show all
Extended by:
T::Sig
Includes:
Crystalline::MetadataFields
Defined in:
lib/moov/models/operations/updatedisputeevidence_request.rb

Instance Method Summary collapse

Methods included from Crystalline::MetadataFields

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

Constructor Details

#initialize(account_id:, dispute_id:, evidence_id:, update_evidence:) ⇒ UpdateDisputeEvidenceRequest

Returns a new instance of UpdateDisputeEvidenceRequest.



25
26
27
28
29
30
# File 'lib/moov/models/operations/updatedisputeevidence_request.rb', line 25

def initialize(account_id:, dispute_id:, evidence_id:, update_evidence:)
  @account_id = 
  @dispute_id = dispute_id
  @evidence_id = evidence_id
  @update_evidence = update_evidence
end

Instance Method Details

#==(other) ⇒ Object



33
34
35
36
37
38
39
40
# File 'lib/moov/models/operations/updatedisputeevidence_request.rb', line 33

def ==(other)
  return false unless other.is_a? self.class
  return false unless @account_id == other.
  return false unless @dispute_id == other.dispute_id
  return false unless @evidence_id == other.evidence_id
  return false unless @update_evidence == other.update_evidence
  true
end