Sha256: 4ac59b7daf7b6b2ab8ed08381ec13b42d3c255e5a0cba63375d878a4a02634ae
Contents?: true
Size: 761 Bytes
Versions: 1
Compression:
Stored size: 761 Bytes
Contents
# frozen_string_literal: true require 'vk/api/methods' module Vk module API class Utils < Vk::Schema::Namespace module Methods # Checks whether a link is blocked in VK. class CheckLink < Schema::Method # @!group Properties self.open = true self.method = 'utils.checkLink' # @method initialize(arguments) # @param [Hash] arguments # @option arguments [String] :url Link to check (e.g., 'http://google.com'). # @return [Utils::Methods::CheckLink] # @!group Arguments # @return [String] Link to check (e.g., 'http://google.com'). attribute :url, API::Types::Coercible::String.optional end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
vk-0.99.5.53.alpha | lib/vk/api/utils/methods/check_link.rb |