Class: Stripe::Issuing::CardListParams::Wallets

Inherits:
RequestParams show all
Defined in:
lib/stripe/params/issuing/card_list_params.rb

Defined Under Namespace

Classes: ApplePay, GooglePay

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(apple_pay: nil, google_pay: nil) ⇒ Wallets

Returns a new instance of Wallets.



48
49
50
51
# File 'lib/stripe/params/issuing/card_list_params.rb', line 48

def initialize(apple_pay: nil, google_pay: nil)
  @apple_pay = apple_pay
  @google_pay = google_pay
end

Instance Attribute Details

#apple_payObject

Filter cards by Apple Pay wallet details.



44
45
46
# File 'lib/stripe/params/issuing/card_list_params.rb', line 44

def apple_pay
  @apple_pay
end

#google_payObject

Filter cards by Google Pay wallet details.



46
47
48
# File 'lib/stripe/params/issuing/card_list_params.rb', line 46

def google_pay
  @google_pay
end