Class: Moov::Models::Operations::ListWalletTransactionsRequest

Inherits:
Object
  • Object
show all
Extended by:
T::Sig
Includes:
Crystalline::MetadataFields
Defined in:
lib/moov/models/operations/listwallettransactions_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:, wallet_id:, skip: nil, count: nil, transaction_type: nil, transaction_types: nil, source_type: nil, source_id: nil, status: nil, created_start_date_time: nil, created_end_date_time: nil, completed_start_date_time: nil, completed_end_date_time: nil, sweep_id: nil, x_moov_version: 'v2024.01.00') ⇒ ListWalletTransactionsRequest

Returns a new instance of ListWalletTransactionsRequest.



56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# File 'lib/moov/models/operations/listwallettransactions_request.rb', line 56

def initialize(account_id:, wallet_id:, skip: nil, count: nil, transaction_type: nil, transaction_types: nil, source_type: nil, source_id: nil, status: nil, created_start_date_time: nil, created_end_date_time: nil, completed_start_date_time: nil, completed_end_date_time: nil, sweep_id: nil, x_moov_version: 'v2024.01.00')
  @account_id = 
  @wallet_id = wallet_id
  @skip = skip
  @count = count
  @transaction_type = transaction_type
  @transaction_types = transaction_types
  @source_type = source_type
  @source_id = source_id
  @status = status
  @created_start_date_time = created_start_date_time
  @created_end_date_time = created_end_date_time
  @completed_start_date_time = completed_start_date_time
  @completed_end_date_time = completed_end_date_time
  @sweep_id = sweep_id
  @x_moov_version = x_moov_version
end

Instance Method Details

#==(other) ⇒ Object



75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# File 'lib/moov/models/operations/listwallettransactions_request.rb', line 75

def ==(other)
  return false unless other.is_a? self.class
  return false unless @account_id == other.
  return false unless @wallet_id == other.wallet_id
  return false unless @skip == other.skip
  return false unless @count == other.count
  return false unless @transaction_type == other.transaction_type
  return false unless @transaction_types == other.transaction_types
  return false unless @source_type == other.source_type
  return false unless @source_id == other.source_id
  return false unless @status == other.status
  return false unless @created_start_date_time == other.created_start_date_time
  return false unless @created_end_date_time == other.created_end_date_time
  return false unless @completed_start_date_time == other.completed_start_date_time
  return false unless @completed_end_date_time == other.completed_end_date_time
  return false unless @sweep_id == other.sweep_id
  return false unless @x_moov_version == other.x_moov_version
  true
end