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

import Foundation

public struct BannerSongCardSchema: Codable, Equatable {
    public var songId: String?
    public var type: `Type`?

    /// Type
    public struct `Type`: RawRepresentable, Codable, Equatable {
        public let rawValue: String

        public init(rawValue: String) {
            self.rawValue = rawValue
        }

        public static let songCard = Self(rawValue: "song_card")
    }

    public init(songId: String? = nil, type: `Type`? = nil) {
        self.songId = songId
        self.type = type
    }
}
