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

io.github.archangelx360.models.ErrorResponse.kt Maven / Gradle / Ivy

package io.github.archangelx360.models

/**
 * The notary service’s response when an error occurs.
 *
 * https://developer.apple.com/documentation/notaryapi/errorresponse
 */
data class ErrorResponse(
    /**
     * The name of the error.
     */
    val name: String?,
    /**
     * A string that describes the reason for the error.
     */
    val description: String?,
    /**
     * Additional information about the error.
     */
    val label: List?,
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy