fr.bmartel.bboxapi.router.model.BboxException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bboxapi-router Show documentation
Show all versions of bboxapi-router Show documentation
Java/Android client for Bbox Router API
The newest version!
package fr.bmartel.bboxapi.router.model
data class BboxException(
val exception: ApiException? = null
)
data class ApiException(
val domain: String? = null,
val code: String? = null,
val errors: List? = null
)
data class ApiError(
val name: String? = null,
val reason: String? = null
)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy