Sha256: 0b098f58b3eb838734ce1b0770f38aa60503b8245575358d41146e1585d80d62
Contents?: true
Size: 547 Bytes
Versions: 4
Compression:
Stored size: 547 Bytes
Contents
# frozen_string_literal: true require_relative 'rest_client' module Uploadcare module Client # API client for getting project info # @see https://uploadcare.com/docs/api_reference/rest/handling_projects/ class ProjectClient < RestClient # get information about current project # current project is determined by public and secret key combination # @see https://uploadcare.com/api-refs/rest-api/v0.5.0/#tag/Project def show get(uri: '/project/') end alias project show end end end
Version data entries
4 entries across 4 versions & 1 rubygems