Class: SynsbasenApi::Version

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

Overview

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

Retrieves information about all versions associated with a given variant.

Parameters:

  • variant_id (String)

    The unique identifier of the variant.

Returns:

  • (ApiResponse)

    An instance of ApiResponse containing details of all versions associated with the specified variant.



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

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