lib/billomat/models/contact.rb in billomat-0.2.0 vs lib/billomat/models/contact.rb in billomat-0.3.0

- old
+ new

@@ -1,17 +1,16 @@ # frozen_string_literal: true module Billomat module Models - ## - # Representation of the client resource + # Representation of the client resource. class Contact < Base - # @return [String] The resource's base path + # @return [String] the resource's base path def self.base_path '/contacts' end - # @return [String] The resource's name + # @return [String] the resource's name def self.resource_name 'contact' end end end