Exception: Moov::Models::Errors::ListWalletTransactionsValidationError
- Inherits:
-
StandardError
- Object
- StandardError
- Moov::Models::Errors::ListWalletTransactionsValidationError
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/moov/models/errors/listwallettransactionsvalidationerror.rb
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(transaction_type: nil, transaction_types: nil, source_type: nil, source_id: nil, status: nil, sweep_id: nil, created_start_date_time: nil, created_end_date_time: nil, completed_start_date_time: nil, completed_end_date_time: nil, statement_descriptor: nil, skip: nil, count: nil, raw_response: nil) ⇒ ListWalletTransactionsValidationError
constructor
A new instance of ListWalletTransactionsValidationError.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(transaction_type: nil, transaction_types: nil, source_type: nil, source_id: nil, status: nil, sweep_id: nil, created_start_date_time: nil, created_end_date_time: nil, completed_start_date_time: nil, completed_end_date_time: nil, statement_descriptor: nil, skip: nil, count: nil, raw_response: nil) ⇒ ListWalletTransactionsValidationError
Returns a new instance of ListWalletTransactionsValidationError.
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
# File 'lib/moov/models/errors/listwallettransactionsvalidationerror.rb', line 45 def initialize(transaction_type: nil, transaction_types: nil, source_type: nil, source_id: nil, status: nil, sweep_id: nil, created_start_date_time: nil, created_end_date_time: nil, completed_start_date_time: nil, completed_end_date_time: nil, statement_descriptor: nil, skip: nil, count: nil, raw_response: nil) @transaction_type = transaction_type @transaction_types = transaction_types @source_type = source_type @source_id = source_id @status = status @sweep_id = sweep_id @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 @statement_descriptor = statement_descriptor @skip = skip @count = count @raw_response = raw_response end |
Instance Method Details
#==(other) ⇒ Object
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
# File 'lib/moov/models/errors/listwallettransactionsvalidationerror.rb', line 63 def ==(other) return false unless other.is_a? self.class 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 @sweep_id == other.sweep_id 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 @statement_descriptor == other.statement_descriptor return false unless @skip == other.skip return false unless @count == other.count return false unless @raw_response == other.raw_response true end |