Class: Moov::Models::Operations::ListIssuedCardAuthorizationsRequest

Inherits:
Object
  • Object
show all
Extended by:
T::Sig
Includes:
Crystalline::MetadataFields
Defined in:
lib/moov/models/operations/listissuedcardauthorizations_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:, skip: nil, count: nil, issued_card_id: nil, start_date_time: nil, end_date_time: nil, statuses: nil) ⇒ ListIssuedCardAuthorizationsRequest

Returns a new instance of ListIssuedCardAuthorizationsRequest.



31
32
33
34
35
36
37
38
39
# File 'lib/moov/models/operations/listissuedcardauthorizations_request.rb', line 31

def initialize(account_id:, skip: nil, count: nil, issued_card_id: nil, start_date_time: nil, end_date_time: nil, statuses: nil)
  @account_id = 
  @skip = skip
  @count = count
  @issued_card_id = issued_card_id
  @start_date_time = start_date_time
  @end_date_time = end_date_time
  @statuses = statuses
end

Instance Method Details

#==(other) ⇒ Object



42
43
44
45
46
47
48
49
50
51
52
# File 'lib/moov/models/operations/listissuedcardauthorizations_request.rb', line 42

def ==(other)
  return false unless other.is_a? self.class
  return false unless @account_id == other.
  return false unless @skip == other.skip
  return false unless @count == other.count
  return false unless @issued_card_id == other.issued_card_id
  return false unless @start_date_time == other.start_date_time
  return false unless @end_date_time == other.end_date_time
  return false unless @statuses == other.statuses
  true
end