Class: Stripe::Issuing::PersonalizationDesignService::UpdateParams::CarrierText

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/services/issuing/personalization_design_service.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.



163
164
165
166
167
168
# File 'lib/stripe/services/issuing/personalization_design_service.rb', line 163

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.



152
153
154
# File 'lib/stripe/services/issuing/personalization_design_service.rb', line 152

def footer_body
  @footer_body
end

The footer title text of the carrier letter.



155
156
157
# File 'lib/stripe/services/issuing/personalization_design_service.rb', line 155

def footer_title
  @footer_title
end

#header_bodyObject

The header body text of the carrier letter.



158
159
160
# File 'lib/stripe/services/issuing/personalization_design_service.rb', line 158

def header_body
  @header_body
end

#header_titleObject

The header title text of the carrier letter.



161
162
163
# File 'lib/stripe/services/issuing/personalization_design_service.rb', line 161

def header_title
  @header_title
end