Class: Stripe::TestHelpers::Issuing::PersonalizationDesignService::RejectParams::RejectionReasons
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::TestHelpers::Issuing::PersonalizationDesignService::RejectParams::RejectionReasons
- Defined in:
- lib/stripe/services/test_helpers/issuing/personalization_design_service.rb
Instance Attribute Summary collapse
-
#card_logo ⇒ Object
The reason(s) the card logo was rejected.
-
#carrier_text ⇒ Object
The reason(s) the carrier text was rejected.
Instance Method Summary collapse
-
#initialize(card_logo: nil, carrier_text: nil) ⇒ RejectionReasons
constructor
A new instance of RejectionReasons.
Methods inherited from RequestParams
Constructor Details
#initialize(card_logo: nil, carrier_text: nil) ⇒ RejectionReasons
Returns a new instance of RejectionReasons.
33 34 35 36 |
# File 'lib/stripe/services/test_helpers/issuing/personalization_design_service.rb', line 33 def initialize(card_logo: nil, carrier_text: nil) @card_logo = card_logo @carrier_text = carrier_text end |
Instance Attribute Details
#card_logo ⇒ Object
The reason(s) the card logo was rejected.
29 30 31 |
# File 'lib/stripe/services/test_helpers/issuing/personalization_design_service.rb', line 29 def card_logo @card_logo end |
#carrier_text ⇒ Object
The reason(s) the carrier text was rejected.
31 32 33 |
# File 'lib/stripe/services/test_helpers/issuing/personalization_design_service.rb', line 31 def carrier_text @carrier_text end |