Class: SynsbasenApi::Variant

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

Overview

The Variant class provides methods for interacting with variant-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(model_id, expand: []) ⇒ ApiResponse

Retrieves information about all variants associated with a given model.

Parameters:

  • model_id (String)

    The unique identifier of the model.

Returns:

  • (ApiResponse)

    An instance of ApiResponse containing details of all variants associated with the specified model.



16
17
18
# File 'lib/synsbasen_api/resources/variant.rb', line 16

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