Class: Stripe::Issuing::CardListParams::Wallets
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Issuing::CardListParams::Wallets
- Defined in:
- lib/stripe/params/issuing/card_list_params.rb
Defined Under Namespace
Instance Attribute Summary collapse
-
#apple_pay ⇒ Object
Filter cards by Apple Pay wallet details.
-
#google_pay ⇒ Object
Filter cards by Google Pay wallet details.
Instance Method Summary collapse
-
#initialize(apple_pay: nil, google_pay: nil) ⇒ Wallets
constructor
A new instance of Wallets.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #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_pay ⇒ Object
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_pay ⇒ Object
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 |