Sha256: 4bdf2c10b96d751c8a2ae4921a020af882371fb4f2ee1fc83f82c00453adbe2e

Contents?: true

Size: 386 Bytes

Versions: 6

Compression:

Stored size: 386 Bytes

Contents

# frozen_string_literal: true

require 'lightspeed_restaurant/base'
require 'lightspeed_restaurant/operations/list'

module LightspeedRestaurantClient
  class Receipt < LightspeedRestaurantClient::Base
    extend Operations::List

    def self.resource_name
      'Receipt'
    end

    def self.default_resource_path
      "/rest/financial/#{resource_name.downcase}"
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
lightspeed_restaurant-3.3.3 lib/lightspeed_restaurant/receipt.rb
lightspeed_restaurant-3.3.2 lib/lightspeed_restaurant/receipt.rb
lightspeed_restaurant-3.3.1 lib/lightspeed_restaurant/receipt.rb
lightspeed_restaurant-3.3.0 lib/lightspeed_restaurant/receipt.rb
lightspeed_restaurant-3.2.0 lib/lightspeed_restaurant/receipt.rb
lightspeed_restaurant-3.1.0 lib/lightspeed_restaurant/receipt.rb