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

import Foundation

public struct ListBetaGensSpec: Codable, Equatable {
    public var cursor: String?
    public var limit: Int?
    public var showDisliked: Bool
    public var showLiked: Bool
    public var showUnrated: Bool

    public init(cursor: String? = nil, limit: Int? = nil, showDisliked: Bool? = nil, showLiked: Bool? = nil, showUnrated: Bool? = nil) {
        self.cursor = cursor
        self.limit = limit
        self.showDisliked = showDisliked ?? false
        self.showLiked = showLiked ?? true
        self.showUnrated = showUnrated ?? true
    }
}
