Class: Stripe::Issuing::CardholderCreateParams

Inherits:
RequestParams show all
Defined in:
lib/stripe/params/issuing/cardholder_create_params.rb

Defined Under Namespace

Classes: Billing, Company, Individual, SpendingControls

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(billing: nil, company: nil, email: nil, expand: nil, individual: nil, metadata: nil, name: nil, phone_number: nil, preferred_locales: nil, spending_controls: nil, status: nil, type: nil) ⇒ CardholderCreateParams

Returns a new instance of CardholderCreateParams.



209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
# File 'lib/stripe/params/issuing/cardholder_create_params.rb', line 209

def initialize(
  billing: nil,
  company: nil,
  email: nil,
  expand: nil,
  individual: nil,
  metadata: nil,
  name: nil,
  phone_number: nil,
  preferred_locales: nil,
  spending_controls: nil,
  status: nil,
  type: nil
)
  @billing = billing
  @company = company
  @email = email
  @expand = expand
  @individual = individual
  @metadata = 
  @name = name
  @phone_number = phone_number
  @preferred_locales = preferred_locales
  @spending_controls = spending_controls
  @status = status
  @type = type
end

Instance Attribute Details

#billingObject

The cardholder’s billing address.



184
185
186
# File 'lib/stripe/params/issuing/cardholder_create_params.rb', line 184

def billing
  @billing
end

#companyObject

Additional information about a ‘company` cardholder.



186
187
188
# File 'lib/stripe/params/issuing/cardholder_create_params.rb', line 186

def company
  @company
end

#emailObject

The cardholder’s email address.



188
189
190
# File 'lib/stripe/params/issuing/cardholder_create_params.rb', line 188

def email
  @email
end

#expandObject

Specifies which fields in the response should be expanded.



190
191
192
# File 'lib/stripe/params/issuing/cardholder_create_params.rb', line 190

def expand
  @expand
end

#individualObject

Additional information about an ‘individual` cardholder.



192
193
194
# File 'lib/stripe/params/issuing/cardholder_create_params.rb', line 192

def individual
  @individual
end

#metadataObject

Set of [key-value pairs](stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to ‘metadata`.



194
195
196
# File 'lib/stripe/params/issuing/cardholder_create_params.rb', line 194

def 
  @metadata
end

#nameObject

The cardholder’s name. This will be printed on cards issued to them. The maximum length of this field is 24 characters. This field cannot contain any special characters or numbers.



196
197
198
# File 'lib/stripe/params/issuing/cardholder_create_params.rb', line 196

def name
  @name
end

#phone_numberObject

The cardholder’s phone number. This will be transformed to [E.164](en.wikipedia.org/wiki/E.164) if it is not provided in that format already. This is required for all cardholders who will be creating EU cards. See the [3D Secure documentation](stripe.com/docs/issuing/3d-secure#when-is-3d-secure-applied) for more details.



198
199
200
# File 'lib/stripe/params/issuing/cardholder_create_params.rb', line 198

def phone_number
  @phone_number
end

#preferred_localesObject

The cardholder’s preferred locales (languages), ordered by preference. Locales can be ‘de`, `en`, `es`, `fr`, or `it`.

This changes the language of the [3D Secure flow](https://stripe.com/docs/issuing/3d-secure) and one-time password messages sent to the cardholder.


201
202
203
# File 'lib/stripe/params/issuing/cardholder_create_params.rb', line 201

def preferred_locales
  @preferred_locales
end

#spending_controlsObject

Rules that control spending across this cardholder’s cards. Refer to our [documentation](stripe.com/docs/issuing/controls/spending-controls) for more details.



203
204
205
# File 'lib/stripe/params/issuing/cardholder_create_params.rb', line 203

def spending_controls
  @spending_controls
end

#statusObject

Specifies whether to permit authorizations on this cardholder’s cards. Defaults to ‘active`.



205
206
207
# File 'lib/stripe/params/issuing/cardholder_create_params.rb', line 205

def status
  @status
end

#typeObject

One of ‘individual` or `company`. See [Choose a cardholder type](stripe.com/docs/issuing/other/choose-cardholder) for more details.



207
208
209
# File 'lib/stripe/params/issuing/cardholder_create_params.rb', line 207

def type
  @type
end