// Generated by Create API
// https://github.com/CreateAPI/CreateAPI

import Foundation

public struct GetPublicRadioTimelineResponse: Codable, Equatable {
    /// RadioTimelineEntrySchema
    ///
    /// Represents a single entry in a radio station's timeline.
    public var currentSong: RadioTimelineEntrySchema?

    public init(currentSong: RadioTimelineEntrySchema? = nil) {
        self.currentSong = currentSong
    }
}
