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

import Foundation

public struct SongifyCancelReasons: RawRepresentable, Codable, Equatable {
    public let rawValue: String

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

    public static let userRequest = Self(rawValue: "user_request")
    public static let shutdown = Self(rawValue: "shutdown")
}
