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

xyz.cssxsh.pixiv.exception.AuthError.kt Maven / Gradle / Ivy

package xyz.cssxsh.pixiv.exception

import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable

@Serializable
public data class AuthError(
    @SerialName("has_error")
    val hasError: Boolean,
    @SerialName("error")
    val error: String,
    @SerialName("errors")
    val errors: Map,
) {
    @Serializable
    public data class ErrorInfo(
        @SerialName("message")
        val message: String,
        @SerialName("code")
        val code: Int,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy