Exception: Moov::Models::Errors::ListTransfersValidationError
- Inherits:
-
StandardError
- Object
- StandardError
- Moov::Models::Errors::ListTransfersValidationError
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/moov/models/errors/listtransfersvalidationerror.rb
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(account_i_ds: nil, status: nil, start_date_time: nil, end_date_time: nil, skip: nil, count: nil, group_id: nil, foreign_id: nil, schedule_id: nil, payment_link_code: nil, refunded: nil, disputed: nil, raw_response: nil) ⇒ ListTransfersValidationError
constructor
A new instance of ListTransfersValidationError.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(account_i_ds: nil, status: nil, start_date_time: nil, end_date_time: nil, skip: nil, count: nil, group_id: nil, foreign_id: nil, schedule_id: nil, payment_link_code: nil, refunded: nil, disputed: nil, raw_response: nil) ⇒ ListTransfersValidationError
Returns a new instance of ListTransfersValidationError.
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
# File 'lib/moov/models/errors/listtransfersvalidationerror.rb', line 43 def initialize(account_i_ds: nil, status: nil, start_date_time: nil, end_date_time: nil, skip: nil, count: nil, group_id: nil, foreign_id: nil, schedule_id: nil, payment_link_code: nil, refunded: nil, disputed: nil, raw_response: nil) @account_i_ds = account_i_ds @status = status @start_date_time = start_date_time @end_date_time = end_date_time @skip = skip @count = count @group_id = group_id @foreign_id = foreign_id @schedule_id = schedule_id @payment_link_code = payment_link_code @refunded = refunded @disputed = disputed @raw_response = raw_response end |
Instance Method Details
#==(other) ⇒ Object
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
# File 'lib/moov/models/errors/listtransfersvalidationerror.rb', line 60 def ==(other) return false unless other.is_a? self.class return false unless @account_i_ds == other.account_i_ds 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 @skip == other.skip return false unless @count == other.count return false unless @group_id == other.group_id return false unless @foreign_id == other.foreign_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 @raw_response == other.raw_response true end |