# frozen_string_literal: true require 'vk/api/responses' module Vk module API class Utils < Vk::Schema::Namespace module Responses # @see https://github.com/VKCOM/vk-api-schema/blob/master/objects.json class CheckLinkResponse < Vk::Schema::Response # @return [API::Utils::LinkChecked] @see https://github.com/VKCOM/vk-api-schema/blob/master/objects.json attribute :response, Dry::Types[API::Utils::LinkChecked].optional end end end end end