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

import Foundation

/// Sort field for playlist clips
public struct SortBy: RawRepresentable, Codable, Equatable {
    public let rawValue: String

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

    public static let createdAt = Self(rawValue: "created_at")
    public static let title = Self(rawValue: "title")
    public static let playCount = Self(rawValue: "play_count")
    public static let upvoteCount = Self(rawValue: "upvote_count")
}
