Class: Stripe::TestHelpers::Issuing::TransactionCreateUnlinkedRefundParams::PurchaseDetails::Lodging

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/test_helpers/issuing/transaction_create_unlinked_refund_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(check_in_at: nil, nights: nil) ⇒ Lodging

Returns a new instance of Lodging.



298
299
300
301
# File 'lib/stripe/params/test_helpers/issuing/transaction_create_unlinked_refund_params.rb', line 298

def initialize(check_in_at: nil, nights: nil)
  @check_in_at = check_in_at
  @nights = nights
end

Instance Attribute Details

#check_in_atObject

The time of checking into the lodging.



294
295
296
# File 'lib/stripe/params/test_helpers/issuing/transaction_create_unlinked_refund_params.rb', line 294

def check_in_at
  @check_in_at
end

#nightsObject

The number of nights stayed at the lodging.



296
297
298
# File 'lib/stripe/params/test_helpers/issuing/transaction_create_unlinked_refund_params.rb', line 296

def nights
  @nights
end