commonMain.org.jellyfin.sdk.model.api.QuickConnectResult.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.
@file:UseSerializers(DateTimeSerializer::class)
package org.jellyfin.sdk.model.api
import kotlin.Boolean
import kotlin.String
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
import kotlinx.serialization.UseSerializers
import org.jellyfin.sdk.model.DateTime
import org.jellyfin.sdk.model.serializer.DateTimeSerializer
/**
* Stores the state of an quick connect request.
*/
@Serializable
public data class QuickConnectResult(
/**
* A value indicating whether this request is authorized.
*/
@SerialName("Authenticated")
public val authenticated: Boolean,
/**
* The secret value used to uniquely identify this request. Can be used to retrieve authentication
* information.
*/
@SerialName("Secret")
public val secret: String,
/**
* The user facing code used so the user can quickly differentiate this request from others.
*/
@SerialName("Code")
public val code: String,
/**
* The requesting device id.
*/
@SerialName("DeviceId")
public val deviceId: String,
/**
* The requesting device name.
*/
@SerialName("DeviceName")
public val deviceName: String,
/**
* The requesting app name.
*/
@SerialName("AppName")
public val appName: String,
/**
* The requesting app version.
*/
@SerialName("AppVersion")
public val appVersion: String,
/**
* The DateTime that this request was created.
*/
@SerialName("DateAdded")
public val dateAdded: DateTime,
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy