Sha256: 4313aad8fa0f1558680cabf751f9fe05562c6e24bb872926495c5e57e454f0fb

Contents?: true

Size: 797 Bytes

Versions: 1

Compression:

Stored size: 797 Bytes

Contents

# frozen_string_literal: true
require 'vk/api/methods'

module Vk
  module API
    class Audio < Vk::Schema::Namespace
      module Methods
        # Returns lyrics associated with an audio file.
        class GetLyrics < Schema::Method
          # @!group Properties

          self.open = false
          self.method = 'audio.getLyrics'

          # @method initialize(arguments)
          #   @param [Hash] arguments
          #   @option arguments [Integer] :lyrics_id Lyrics ID (could be obtained with , , or  methods).
          #   @return [Audio::Methods::GetLyrics]

          # @!group Arguments

          # @return [Integer] Lyrics ID (could be obtained with , , or  methods).
          attribute :lyrics_id, API::Types::Coercible::Int.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/audio/methods/get_lyrics.rb