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

import Foundation

public struct ShortcutResponse: Codable, Equatable {
    public var page: Int?
    public var pageSize: Int?
    /// PlaylistSchema
    public var playlist: PlaylistSchema?
    public var shortcutType: ShortcutType?
    public var totalSections: Int?

    public init(page: Int? = nil, pageSize: Int? = nil, playlist: PlaylistSchema? = nil, shortcutType: ShortcutType? = nil, totalSections: Int? = nil) {
        self.page = page
        self.pageSize = pageSize
        self.playlist = playlist
        self.shortcutType = shortcutType
        self.totalSections = totalSections
    }
}
