Class: SynsbasenApi::ApiResponse

Inherits:
Object
  • Object
show all
Defined in:
lib/synsbasen_api/api_response.rb

Overview

The ApiResponse class represents the response structure from the Synsbasen API.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(response) ⇒ ApiResponse

Initializes a new instance of ApiResponse with the provided response data.

Parameters:

  • response (Hash)

    The response data from the API.

Options Hash (response):

  • :data (Hash)

    The data included in the API response.

  • :cost (Numeric)

    The cost associated with the API response.

  • :has_more (Boolean)

    Indicates whether there is more data available in the response.

  • :total_pages (Boolean)

    The total number of pages available.

  • :total_count (Boolean)

    The total count of items available.



32
33
34
35
36
37
38
39
# File 'lib/synsbasen_api/api_response.rb', line 32

def initialize(response)
  @data = response[:data]
  @cost = response[:cost]

  %i[has_more page total_pages total_count].each do |key|
    instance_variable_set("@#{key}", response[key]) if response.key?(key)
  end
end

Instance Attribute Details

#costNumeric (readonly)

Returns The cost associated with the API response.

Returns:

  • (Numeric)

    The cost associated with the API response.



10
11
12
# File 'lib/synsbasen_api/api_response.rb', line 10

def cost
  @cost
end

#dataHash (readonly)

Returns The data included in the API response.

Returns:

  • (Hash)

    The data included in the API response.



7
8
9
# File 'lib/synsbasen_api/api_response.rb', line 7

def data
  @data
end

#has_moreBoolean (readonly)

Returns Indicates whether there is more data available in the response.

Returns:

  • (Boolean)

    Indicates whether there is more data available in the response.



13
14
15
# File 'lib/synsbasen_api/api_response.rb', line 13

def has_more
  @has_more
end

#pageNumeric (readonly)

Returns The current page number.

Returns:

  • (Numeric)

    The current page number.



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

def page
  @page
end

#total_countNumeric (readonly)

Returns The total count of items available.

Returns:

  • (Numeric)

    The total count of items available.



22
23
24
# File 'lib/synsbasen_api/api_response.rb', line 22

def total_count
  @total_count
end

#total_pagesNumeric (readonly)

Returns The total number of pages available.

Returns:

  • (Numeric)

    The total number of pages available.



19
20
21
# File 'lib/synsbasen_api/api_response.rb', line 19

def total_pages
  @total_pages
end