Class: Moov::Models::Operations::ListTransfersRequest

Inherits:
Object
  • Object
show all
Extended by:
T::Sig
Includes:
Crystalline::MetadataFields
Defined in:
lib/moov/models/operations/listtransfers_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:, account_i_ds: nil, status: nil, start_date_time: nil, end_date_time: nil, group_id: nil, schedule_id: nil, payment_link_code: nil, refunded: nil, disputed: nil, foreign_id: nil, skip: nil, count: nil, x_moov_version: 'v2024.01.00') ⇒ ListTransfersRequest

Returns a new instance of ListTransfersRequest.



54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# File 'lib/moov/models/operations/listtransfers_request.rb', line 54

def initialize(account_id:, account_i_ds: nil, status: nil, start_date_time: nil, end_date_time: nil, group_id: nil, schedule_id: nil, payment_link_code: nil, refunded: nil, disputed: nil, foreign_id: nil, skip: nil, count: nil, x_moov_version: 'v2024.01.00')
  @account_id = 
  @account_i_ds = 
  @status = status
  @start_date_time = start_date_time
  @end_date_time = end_date_time
  @group_id = group_id
  @schedule_id = schedule_id
  @payment_link_code = payment_link_code
  @refunded = refunded
  @disputed = disputed
  @foreign_id = foreign_id
  @skip = skip
  @count = count
  @x_moov_version = x_moov_version
end

Instance Method Details

#==(other) ⇒ Object



72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# File 'lib/moov/models/operations/listtransfers_request.rb', line 72

def ==(other)
  return false unless other.is_a? self.class
  return false unless @account_id == other.
  return false unless @account_i_ds == other.
  return false unless @status == other.status
  return false unless @start_date_time == other.start_date_time
  return false unless @end_date_time == other.end_date_time
  return false unless @group_id == other.group_id
  return false unless @schedule_id == other.schedule_id
  return false unless @payment_link_code == other.payment_link_code
  return false unless @refunded == other.refunded
  return false unless @disputed == other.disputed
  return false unless @foreign_id == other.foreign_id
  return false unless @skip == other.skip
  return false unless @count == other.count
  return false unless @x_moov_version == other.x_moov_version
  true
end