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

commonMain.org.jellyfin.sdk.api.operations.ItemUpdateApi.kt Maven / Gradle / Ivy

There is a newer version: 1.5.5
Show newest version
// !!        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.api.operations

import kotlin.Any
import kotlin.String
import kotlin.Unit
import kotlin.collections.buildMap
import kotlin.collections.emptyMap
import org.jellyfin.sdk.api.client.ApiClient
import org.jellyfin.sdk.api.client.Response
import org.jellyfin.sdk.api.client.extensions.`get`
import org.jellyfin.sdk.api.client.extensions.post
import org.jellyfin.sdk.model.UUID
import org.jellyfin.sdk.model.api.BaseItemDto
import org.jellyfin.sdk.model.api.MetadataEditorInfo

public class ItemUpdateApi(
	private val api: ApiClient,
) : Api {
	/**
	 * Gets metadata editor info for an item.
	 *
	 * @param itemId The item id.
	 */
	public suspend fun getMetadataEditorInfo(itemId: UUID): Response {
		val pathParameters = buildMap(1) {
			put("itemId", itemId)
		}
		val queryParameters = emptyMap()
		val data = null
		val response = api.`get`("/Items/{itemId}/MetadataEditor", pathParameters,
				queryParameters, data)
		return response
	}

	/**
	 * Updates an item.
	 *
	 * @param itemId The item id.
	 */
	public suspend fun updateItem(itemId: UUID, `data`: BaseItemDto): Response {
		val pathParameters = buildMap(1) {
			put("itemId", itemId)
		}
		val queryParameters = emptyMap()
		val response = api.post("/Items/{itemId}", pathParameters, queryParameters, data)
		return response
	}

	/**
	 * Updates an item's content type.
	 *
	 * @param itemId The item id.
	 * @param contentType The content type of the item.
	 */
	public suspend fun updateItemContentType(itemId: UUID, contentType: String? = null):
			Response {
		val pathParameters = buildMap(1) {
			put("itemId", itemId)
		}
		val queryParameters = buildMap(1) {
			put("contentType", contentType)
		}
		val data = null
		val response = api.post("/Items/{itemId}/ContentType", pathParameters, queryParameters,
				data)
		return response
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy