RecordingDateTime

public struct RecordingDateTime : CustomDebugStringConvertible

A struct used to represent the recording date and time for the ID3 recording date time frame.

  • Recording date of the song.

    Declaration

    Swift

    public var date: RecordingDate?
  • Recording time of the song.

    Declaration

    Swift

    public var time: RecordingTime?
  • RecordingDateTime description, useful for debug.

    Declaration

    Swift

    public var debugDescription: String { get }
  • Init a recording date time.

    Declaration

    Swift

    public init(date: RecordingDate?, time: RecordingTime?)

    Parameters

    date

    the recording date of the song.

    time

    the recording time of the song.