Class: Stripe::Issuing::CardCreateParams::Shipping::Customs
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Issuing::CardCreateParams::Shipping::Customs
- Defined in:
- lib/stripe/params/issuing/card_create_params.rb
Instance Attribute Summary collapse
-
#eori_number ⇒ Object
The Economic Operators Registration and Identification (EORI) number to use for Customs.
Instance Method Summary collapse
-
#initialize(eori_number: nil) ⇒ Customs
constructor
A new instance of Customs.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(eori_number: nil) ⇒ Customs
Returns a new instance of Customs.
78 79 80 |
# File 'lib/stripe/params/issuing/card_create_params.rb', line 78 def initialize(eori_number: nil) @eori_number = eori_number end |
Instance Attribute Details
#eori_number ⇒ Object
The Economic Operators Registration and Identification (EORI) number to use for Customs. Required for bulk shipments to Europe.
76 77 78 |
# File 'lib/stripe/params/issuing/card_create_params.rb', line 76 def eori_number @eori_number end |