Sha256: 89374683d5723d9e896d3b19667d563652eef46d527ded3ce55e5134295ecec4

Contents?: true

Size: 319 Bytes

Versions: 3

Compression:

Stored size: 319 Bytes

Contents

# frozen_string_literal: true

module AppleMusic
  # https://developer.apple.com/documentation/applemusicapi/editorialnotes
  class EditorialNotes
    attr_reader :short, :standard

    def initialize(props = {})
      @short = props['short'] # required
      @standard = props['standard'] # required
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
apple_music-0.3.1 lib/apple_music/editorial_notes.rb
apple_music-0.3.0 lib/apple_music/editorial_notes.rb
apple_music-0.2.0 lib/apple_music/editorial_notes.rb