All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.org.jellyfin.sdk.model.api.DisplayPreferencesDto.kt Maven / Gradle / Ivy

// !!        WARNING
// !! DO NOT EDIT THIS FILE
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.sdk.model.api

import kotlin.Boolean
import kotlin.Int
import kotlin.String
import kotlin.collections.Map
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable

/**
 * Defines the display preferences for any item that supports them (usually Folders).
 */
@Serializable
public data class DisplayPreferencesDto(
	/**
	 * The user id.
	 */
	@SerialName("Id")
	public val id: String? = null,
	/**
	 * The type of the view.
	 */
	@SerialName("ViewType")
	public val viewType: String? = null,
	/**
	 * The sort by.
	 */
	@SerialName("SortBy")
	public val sortBy: String? = null,
	/**
	 * The index by.
	 */
	@SerialName("IndexBy")
	public val indexBy: String? = null,
	/**
	 * A value indicating whether [remember indexing].
	 */
	@SerialName("RememberIndexing")
	public val rememberIndexing: Boolean,
	/**
	 * The height of the primary image.
	 */
	@SerialName("PrimaryImageHeight")
	public val primaryImageHeight: Int,
	/**
	 * The width of the primary image.
	 */
	@SerialName("PrimaryImageWidth")
	public val primaryImageWidth: Int,
	/**
	 * The custom prefs.
	 */
	@SerialName("CustomPrefs")
	public val customPrefs: Map,
	/**
	 * The scroll direction.
	 */
	@SerialName("ScrollDirection")
	public val scrollDirection: ScrollDirection,
	/**
	 * A value indicating whether to show backdrops on this item.
	 */
	@SerialName("ShowBackdrop")
	public val showBackdrop: Boolean,
	/**
	 * A value indicating whether [remember sorting].
	 */
	@SerialName("RememberSorting")
	public val rememberSorting: Boolean,
	/**
	 * The sort order.
	 */
	@SerialName("SortOrder")
	public val sortOrder: SortOrder,
	/**
	 * A value indicating whether [show sidebar].
	 */
	@SerialName("ShowSidebar")
	public val showSidebar: Boolean,
	/**
	 * The client.
	 */
	@SerialName("Client")
	public val client: String? = null,
)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy