Class: Id3Taginator::Frames::Ufid::Entities::UfidInfo

Inherits:
Object
  • Object
show all
Includes:
Extensions::Comparable
Defined in:
lib/id3taginator/frames/ufid/entities/ufid_info.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Extensions::Comparable

#==, #compare

Constructor Details

#initialize(owner_id, identifier) ⇒ UfidInfo

constructor

Parameters:

  • owner_id (String)

    the owner id

  • identifier (String)

    the identifier bytes represented as a String (str.bytes)



16
17
18
19
# File 'lib/id3taginator/frames/ufid/entities/ufid_info.rb', line 16

def initialize(owner_id, identifier)
  @owner_id = owner_id
  @identifier = identifier
end

Instance Attribute Details

#identifierObject

Returns the value of attribute identifier.



10
11
12
# File 'lib/id3taginator/frames/ufid/entities/ufid_info.rb', line 10

def identifier
  @identifier
end

#owner_idObject

Returns the value of attribute owner_id.



10
11
12
# File 'lib/id3taginator/frames/ufid/entities/ufid_info.rb', line 10

def owner_id
  @owner_id
end