Class: Stripe::Issuing::PersonalizationDesignUpdateParams::CarrierText
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Issuing::PersonalizationDesignUpdateParams::CarrierText
- Defined in:
- lib/stripe/params/issuing/personalization_design_update_params.rb
Instance Attribute Summary collapse
-
#footer_body ⇒ Object
The footer body text of the carrier letter.
-
#footer_title ⇒ Object
The footer title text of the carrier letter.
-
#header_body ⇒ Object
The header body text of the carrier letter.
-
#header_title ⇒ Object
The header title text of the carrier letter.
Instance Method Summary collapse
-
#initialize(footer_body: nil, footer_title: nil, header_body: nil, header_title: nil) ⇒ CarrierText
constructor
A new instance of CarrierText.
Methods inherited from RequestParams
Constructor Details
#initialize(footer_body: nil, footer_title: nil, header_body: nil, header_title: nil) ⇒ CarrierText
Returns a new instance of CarrierText.
17 18 19 20 21 22 |
# File 'lib/stripe/params/issuing/personalization_design_update_params.rb', line 17 def initialize(footer_body: nil, footer_title: nil, header_body: nil, header_title: nil) @footer_body = @footer_title = @header_body = header_body @header_title = header_title end |
Instance Attribute Details
#footer_body ⇒ Object
The footer body text of the carrier letter.
9 10 11 |
# File 'lib/stripe/params/issuing/personalization_design_update_params.rb', line 9 def @footer_body end |
#footer_title ⇒ Object
The footer title text of the carrier letter.
11 12 13 |
# File 'lib/stripe/params/issuing/personalization_design_update_params.rb', line 11 def @footer_title end |
#header_body ⇒ Object
The header body text of the carrier letter.
13 14 15 |
# File 'lib/stripe/params/issuing/personalization_design_update_params.rb', line 13 def header_body @header_body end |
#header_title ⇒ Object
The header title text of the carrier letter.
15 16 17 |
# File 'lib/stripe/params/issuing/personalization_design_update_params.rb', line 15 def header_title @header_title end |