Class: Stripe::Issuing::PersonalizationDesign::UpdateParams::CarrierText
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Issuing::PersonalizationDesign::UpdateParams::CarrierText
- Defined in:
- lib/stripe/resources/issuing/personalization_design.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.
168 169 170 171 172 173 |
# File 'lib/stripe/resources/issuing/personalization_design.rb', line 168 def initialize(footer_body: nil, footer_title: nil, header_body: nil, header_title: nil) = = @header_body = header_body @header_title = header_title end |
Instance Attribute Details
#footer_body ⇒ Object
The footer body text of the carrier letter.
160 161 162 |
# File 'lib/stripe/resources/issuing/personalization_design.rb', line 160 def end |
#footer_title ⇒ Object
The footer title text of the carrier letter.
162 163 164 |
# File 'lib/stripe/resources/issuing/personalization_design.rb', line 162 def end |
#header_body ⇒ Object
The header body text of the carrier letter.
164 165 166 |
# File 'lib/stripe/resources/issuing/personalization_design.rb', line 164 def header_body @header_body end |
#header_title ⇒ Object
The header title text of the carrier letter.
166 167 168 |
# File 'lib/stripe/resources/issuing/personalization_design.rb', line 166 def header_title @header_title end |