Class: SynsbasenApi::Brand

Inherits:
Resource show all
Extended by:
Findable, Searchable
Defined in:
lib/synsbasen_api/resources/brand.rb

Overview

The Brand class provides methods for interacting with brand-related endpoints in the Synsbasen API.

Constant Summary

Constants inherited from Client

Client::DEFAULT_BASE_URL

Class Method Summary collapse

Methods included from Findable

find

Methods included from Searchable

search

Methods inherited from Client

delete, get, post

Class Method Details

.all(expand: []) ⇒ ApiResponse

Retrieves information about all brands.

Returns:

  • (ApiResponse)

    An instance of ApiResponse containing details of all brands.



15
16
17
# File 'lib/synsbasen_api/resources/brand.rb', line 15

def all(expand: [])
  get("/v1/#{resource_name}", expand: expand)
end