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

import Foundation

public struct SongifyUpdateMetadataRequest: Codable, Equatable {
    public var genre: String?
    public var isPublic: Bool?
    public var title: String?

    public init(genre: String? = nil, isPublic: Bool? = nil, title: String? = nil) {
        self.genre = genre
        self.isPublic = isPublic
        self.title = title
    }
}
