Class: Stripe::Issuing::TransactionCreateUnlinkedRefundParams::MerchantData
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Issuing::TransactionCreateUnlinkedRefundParams::MerchantData
- Defined in:
- lib/stripe/params/issuing/transaction_create_unlinked_refund_params.rb
Instance Attribute Summary collapse
-
#category ⇒ Object
A categorization of the seller’s type of business.
-
#city ⇒ Object
City where the seller is located.
-
#country ⇒ Object
Country where the seller is located.
-
#name ⇒ Object
Name of the seller.
-
#network_id ⇒ Object
Identifier assigned to the seller by the card network.
-
#postal_code ⇒ Object
Postal code where the seller is located.
-
#state ⇒ Object
State where the seller is located.
-
#terminal_id ⇒ Object
An ID assigned by the seller to the location of the sale.
-
#url ⇒ Object
URL provided by the merchant on a 3DS request.
Instance Method Summary collapse
-
#initialize(category: nil, city: nil, country: nil, name: nil, network_id: nil, postal_code: nil, state: nil, terminal_id: nil, url: nil) ⇒ MerchantData
constructor
A new instance of MerchantData.
Methods inherited from RequestParams
Constructor Details
#initialize(category: nil, city: nil, country: nil, name: nil, network_id: nil, postal_code: nil, state: nil, terminal_id: nil, url: nil) ⇒ MerchantData
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
# File 'lib/stripe/params/issuing/transaction_create_unlinked_refund_params.rb', line 27 def initialize( category: nil, city: nil, country: nil, name: nil, network_id: nil, postal_code: nil, state: nil, terminal_id: nil, url: nil ) @category = category @city = city @country = country @name = name @network_id = network_id @postal_code = postal_code @state = state @terminal_id = terminal_id @url = url end |
Instance Attribute Details
#category ⇒ Object
A categorization of the seller’s type of business. See our [merchant categories guide](stripe.com/docs/issuing/merchant-categories) for a list of possible values.
9 10 11 |
# File 'lib/stripe/params/issuing/transaction_create_unlinked_refund_params.rb', line 9 def category @category end |
#city ⇒ Object
City where the seller is located
11 12 13 |
# File 'lib/stripe/params/issuing/transaction_create_unlinked_refund_params.rb', line 11 def city @city end |
#country ⇒ Object
Country where the seller is located
13 14 15 |
# File 'lib/stripe/params/issuing/transaction_create_unlinked_refund_params.rb', line 13 def country @country end |
#name ⇒ Object
Name of the seller
15 16 17 |
# File 'lib/stripe/params/issuing/transaction_create_unlinked_refund_params.rb', line 15 def name @name end |
#network_id ⇒ Object
Identifier assigned to the seller by the card network. Different card networks may assign different network_id fields to the same merchant.
17 18 19 |
# File 'lib/stripe/params/issuing/transaction_create_unlinked_refund_params.rb', line 17 def network_id @network_id end |
#postal_code ⇒ Object
Postal code where the seller is located
19 20 21 |
# File 'lib/stripe/params/issuing/transaction_create_unlinked_refund_params.rb', line 19 def postal_code @postal_code end |
#state ⇒ Object
State where the seller is located
21 22 23 |
# File 'lib/stripe/params/issuing/transaction_create_unlinked_refund_params.rb', line 21 def state @state end |
#terminal_id ⇒ Object
An ID assigned by the seller to the location of the sale.
23 24 25 |
# File 'lib/stripe/params/issuing/transaction_create_unlinked_refund_params.rb', line 23 def terminal_id @terminal_id end |
#url ⇒ Object
URL provided by the merchant on a 3DS request
25 26 27 |
# File 'lib/stripe/params/issuing/transaction_create_unlinked_refund_params.rb', line 25 def url @url end |