module BookingSync::API::Client::RatesTables

Public Instance Methods

create_rates_table(options = {}) click to toggle source

Create a new rates_table

@param options [Hash] rates_table attributes @return [BookingSync::API::Resource] Newly created rates table

# File lib/bookingsync/api/client/rates_tables.rb, line 36
def create_rates_table(options = {})
  post(:rates_tables, rates_tables: [options]).pop
end
delete_rates_table(rates_table) click to toggle source

Delete a rates_table

@param rates_table [BookingSync::API::Resource|Integer] Rates table or

ID of the rates table to be deleteed.

@return [NilClass] Returns nil on success

# File lib/bookingsync/api/client/rates_tables.rb, line 59
def delete_rates_table(rates_table)
  delete "rates_tables/#{rates_table}"
end
edit_rates_table(rates_table, options = {}) click to toggle source

Edit a rates_table

@param rates_table [BookingSync::API::Resource|Integer] rates table or ID of the rates table to be updated @param options [Hash] rates table attributes to be updated @return [BookingSync::API::Resource] Updated rates table on success, exception is raised otherwise @example

rates_table = @api.rates_tables.first
@api.edit_rates_table(rates_table, { name: "Lorem" })
# File lib/bookingsync/api/client/rates_tables.rb, line 50
def edit_rates_table(rates_table, options = {})
  put("rates_tables/#{rates_table}", rates_tables: [options]).pop
end
rates_table(rates_table, options = {}) click to toggle source

Get a single rates_table

@param rates_table [BookingSync::API::Resource|Integer] RatesTable or ID

of the rates_table.

@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_tables.rb, line 28
def rates_table(rates_table, options = {})
  get("rates_tables/#{rates_table}", options).pop
end
rates_tables(options = {}, &block) click to toggle source

List rates table

Returns rates tables for 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 tables.

@example Get the list of rates tables for the current account

rates_tables = @api.rates_tables
rates_tables.first.name # => "Rates table 2"

@example Get the list of rates tables only with name and account_id for smaller response

@api.rates_tables(fields: [:name, :account_id])

@see developers.bookingsync.com/reference/endpoints/rates_tables/#list-rates-tables

# File lib/bookingsync/api/client/rates_tables.rb, line 17
def rates_tables(options = {}, &block)
  paginate :rates_tables, options, &block
end