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

commonMain.org.jellyfin.sdk.model.FileInfo.kt Maven / Gradle / Ivy

There is a newer version: 1.5.5
Show newest version
package org.jellyfin.sdk.model

/**
 * Information about a file used to for uploading.
 */
public class FileInfo(
	/**
	 * The binary content of the file.
	 */
	public val content: ByteArray,

	/**
	 * The media type of the file.
	 */
	public val mediaType: String = "application/octet-stream",
)

/**
 * Create a [FileInfo] from this byte array.
 */
public fun ByteArray.toFileInfo(
	mediaType: String = "application/octet-stream",
): FileInfo = FileInfo(this, mediaType)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy