Sha256: 249b7f396edb246364102052bfa1143a51ce040721a336f0fab7d420f89a5d7c
Contents?: true
Size: 810 Bytes
Versions: 4
Compression:
Stored size: 810 Bytes
Contents
# Copyright 2022 Daniel Herzog # Use of this source code is governed by an MIT # license that can be found in the LICENSE.md file. # frozen_string_literal: true module DeepL module Requests module Glossary class List < Base def initialize(api, options = {}) super end def request build_glossary_list(*execute_request_with_retries(get_request)) end def to_s "GET #{uri.request_uri}" end private def build_glossary_list(request, response) data = JSON.parse(response.body) data['glossaries'].map do |glossary| Resources::Glossary.new(glossary, request, response) end end def path 'glossaries' end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems