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