class Spotify::Models::Follower

Attributes

href[R]
total[R]

Public Class Methods

new(args = {}) click to toggle source

Sets the arguments to its variables.

@param [Hash] args the arguments that will be placed on each variable.

@return [Follower] a follower object.

# File lib/spotify/models/follower.rb, line 16
def initialize(args = {})
  args = Hash(args).with_indifferent_access

  @href  = args[:href]
  @total = args[:total]
end