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

commonMain.hassemble.core.ErrorResponse.kt Maven / Gradle / Ivy

The newest version!
package hassemble.core

import kotlinx.serialization.Serializable

/**
 * A data class representing home assistant's error response details
 *
 * @property code error code returning from home assistant
 * @property message error message returning from home assistant
 */
@Serializable
data class ErrorResponse(val code: String, val message: String)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy