Class: Stripe::Issuing::PersonalizationDesign::UpdateParams::CarrierText

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/resources/issuing/personalization_design.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(footer_body: nil, footer_title: nil, header_body: nil, header_title: nil) ⇒ CarrierText

Returns a new instance of CarrierText.



203
204
205
206
207
208
# File 'lib/stripe/resources/issuing/personalization_design.rb', line 203

def initialize(footer_body: nil, footer_title: nil, header_body: nil, header_title: nil)
  @footer_body = footer_body
  @footer_title = footer_title
  @header_body = header_body
  @header_title = header_title
end

Instance Attribute Details

The footer body text of the carrier letter.



192
193
194
# File 'lib/stripe/resources/issuing/personalization_design.rb', line 192

def footer_body
  @footer_body
end

The footer title text of the carrier letter.



195
196
197
# File 'lib/stripe/resources/issuing/personalization_design.rb', line 195

def footer_title
  @footer_title
end

#header_bodyObject

The header body text of the carrier letter.



198
199
200
# File 'lib/stripe/resources/issuing/personalization_design.rb', line 198

def header_body
  @header_body
end

#header_titleObject

The header title text of the carrier letter.



201
202
203
# File 'lib/stripe/resources/issuing/personalization_design.rb', line 201

def header_title
  @header_title
end