Class: Stripe::Issuing::CardCreateParams::Pin

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h

Constructor Details

#initialize(encrypted_number: nil) ⇒ Pin



28
29
30
# File 'lib/stripe/params/issuing/card_create_params.rb', line 28

def initialize(encrypted_number: nil)
  @encrypted_number = encrypted_number
end

Instance Attribute Details

#encrypted_numberObject

The card’s desired new PIN, encrypted under Stripe’s public key.



26
27
28
# File 'lib/stripe/params/issuing/card_create_params.rb', line 26

def encrypted_number
  @encrypted_number
end