class Beatport::Catalog::AudioFormat

Public Class Methods

all() click to toggle source
# File lib/beatport/catalog/audio_format.rb, line 10
def self.all
  Client.retrieve 'audio-formats', AudioFormat
end
find(key) click to toggle source

Returns the audio format with the name given

# File lib/beatport/catalog/audio_format.rb, line 6
def self.find(key)
  Client.retrieve 'audio-formats', AudioFormat, :key => key
end