-
-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update API to 10.10.0-unstable.20240926134655
- Loading branch information
1 parent
902307b
commit fec48e1
Showing
7 changed files
with
99 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
jellyfin-model/src/commonMain/kotlin-generated/org/jellyfin/sdk/model/api/PlaylistDto.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// !! 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. | ||
@file:UseSerializers(UUIDSerializer::class) | ||
|
||
package org.jellyfin.sdk.model.api | ||
|
||
import kotlin.Boolean | ||
import kotlin.collections.List | ||
import kotlinx.serialization.SerialName | ||
import kotlinx.serialization.Serializable | ||
import kotlinx.serialization.UseSerializers | ||
import org.jellyfin.sdk.model.UUID | ||
import org.jellyfin.sdk.model.serializer.UUIDSerializer | ||
|
||
/** | ||
* DTO for playlists. | ||
*/ | ||
@Serializable | ||
public data class PlaylistDto( | ||
/** | ||
* A value indicating whether the playlist is publicly readable. | ||
*/ | ||
@SerialName("OpenAccess") | ||
public val openAccess: Boolean, | ||
/** | ||
* The share permissions. | ||
*/ | ||
@SerialName("Shares") | ||
public val shares: List<PlaylistUserPermissions>, | ||
/** | ||
* The item ids. | ||
*/ | ||
@SerialName("ItemIds") | ||
public val itemIds: List<UUID>, | ||
) |
Git LFS file not shown