module BookingSync::API::Client::Rates
Public Instance Methods
rate(rate, options = {})
click to toggle source
Get a single rate
@param rate [BookingSync::API::Resource|Integer] Rate or ID
of the rate.
@param options [Hash] A customizable set of query options. @option options [Array] fields: List of fields to be fetched. @return [BookingSync::API::Resource]
# File lib/bookingsync/api/client/rates.rb, line 29 def rate(rate, options = {}) get("rates/#{rate}", options).pop end
rates(options = {}, &block)
click to toggle source
List rates
Returns rates for the rentals of the account user is authenticated with. @param options [Hash] A customizable set of options. @option options [Array] fields: List of fields to be fetched. @return [Array<BookingSync::API::Resource>] Array of rates.
@example Get the list of rates for the current account
rates = @api.rates rates.first.final_nightly_rate # => 700
@example Get the list of rates only with final rates
for smaller response @api.rates(fields: %w(final_nightly_rate final_weekely_rate final_monthly_rate))
@see developers.bookingsync.com/reference/endpoints/rates/#list-rates
# File lib/bookingsync/api/client/rates.rb, line 18 def rates(options = {}, &block) paginate :rates, options, &block end