Class: Stripe::Source::UpdateParams::Mandate::Acceptance::Offline
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Source::UpdateParams::Mandate::Acceptance::Offline
- Defined in:
- lib/stripe/resources/source.rb
Instance Attribute Summary collapse
-
#contact_email ⇒ Object
An email to contact you with if a copy of the mandate is requested, required if ‘type` is `offline`.
Instance Method Summary collapse
-
#initialize(contact_email: nil) ⇒ Offline
constructor
A new instance of Offline.
Methods inherited from RequestParams
Constructor Details
#initialize(contact_email: nil) ⇒ Offline
Returns a new instance of Offline.
574 575 576 |
# File 'lib/stripe/resources/source.rb', line 574 def initialize(contact_email: nil) @contact_email = contact_email end |
Instance Attribute Details
#contact_email ⇒ Object
An email to contact you with if a copy of the mandate is requested, required if ‘type` is `offline`.
572 573 574 |
# File 'lib/stripe/resources/source.rb', line 572 def contact_email @contact_email end |