class Spotify::Models::Copyright
Attributes
text[R]
type[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 [Image] a copyright object.
# File lib/spotify/models/copyright.rb, line 16 def initialize(args = {}) args = Hash(args).with_indifferent_access @text = args[:text] @type = args[:type] end