Class: Stripe::PaymentIntentConfirmParams::PaymentDetails::LodgingDatum

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/payment_intent_confirm_params.rb

Defined Under Namespace

Classes: Accommodation, Affiliate, Guest, Host, Insurance, Total

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(accommodation: nil, affiliate: nil, booking_number: nil, checkin_at: nil, checkout_at: nil, customer_service_phone_number: nil, fire_safety_act_compliance_indicator: nil, guests: nil, host: nil, insurances: nil, no_show_indicator: nil, renter_id_number: nil, renter_name: nil, total: nil) ⇒ LodgingDatum

Returns a new instance of LodgingDatum.



1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 1919

def initialize(
  accommodation: nil,
  affiliate: nil,
  booking_number: nil,
  checkin_at: nil,
  checkout_at: nil,
  customer_service_phone_number: nil,
  fire_safety_act_compliance_indicator: nil,
  guests: nil,
  host: nil,
  insurances: nil,
  no_show_indicator: nil,
  renter_id_number: nil,
  renter_name: nil,
  total: nil
)
  @accommodation = accommodation
  @affiliate = affiliate
  @booking_number = booking_number
  @checkin_at = checkin_at
  @checkout_at = checkout_at
  @customer_service_phone_number = customer_service_phone_number
  @fire_safety_act_compliance_indicator = fire_safety_act_compliance_indicator
  @guests = guests
  @host = host
  @insurances = insurances
  @no_show_indicator = no_show_indicator
  @renter_id_number = renter_id_number
  @renter_name = renter_name
  @total = total
end

Instance Attribute Details

#accommodationObject

Accommodation details for the lodging.



1891
1892
1893
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 1891

def accommodation
  @accommodation
end

#affiliateObject

Affiliate details if applicable.



1893
1894
1895
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 1893

def affiliate
  @affiliate
end

#booking_numberObject

Booking confirmation number for the lodging.



1895
1896
1897
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 1895

def booking_number
  @booking_number
end

#checkin_atObject

Check-in date.



1897
1898
1899
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 1897

def checkin_at
  @checkin_at
end

#checkout_atObject

Check-out date.



1899
1900
1901
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 1899

def checkout_at
  @checkout_at
end

#customer_service_phone_numberObject

Customer service phone number for the lodging company.



1901
1902
1903
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 1901

def customer_service_phone_number
  @customer_service_phone_number
end

#fire_safety_act_compliance_indicatorObject

Whether the lodging is compliant with any hotel fire safety regulations.



1903
1904
1905
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 1903

def fire_safety_act_compliance_indicator
  @fire_safety_act_compliance_indicator
end

#guestsObject

List of guests for the lodging.



1905
1906
1907
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 1905

def guests
  @guests
end

#hostObject

Host details for the lodging.



1907
1908
1909
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 1907

def host
  @host
end

#insurancesObject

List of insurances for the lodging.



1909
1910
1911
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 1909

def insurances
  @insurances
end

#no_show_indicatorObject

Whether the renter is a no-show.



1911
1912
1913
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 1911

def no_show_indicator
  @no_show_indicator
end

#renter_id_numberObject

Renter ID number for the lodging.



1913
1914
1915
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 1913

def renter_id_number
  @renter_id_number
end

#renter_nameObject

Renter name for the lodging.



1915
1916
1917
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 1915

def renter_name
  @renter_name
end

#totalObject

Total details for the lodging.



1917
1918
1919
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 1917

def total
  @total
end