![JAR search and dependency download from the Maven repository](/logo.png)
ru.sadv1r.vk.parser.model.Error.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vk-parser Show documentation
Show all versions of vk-parser Show documentation
vk.com API implementation
The newest version!
package ru.sadv1r.vk.parser.model
import com.fasterxml.jackson.annotation.JsonProperty
/**
* Модель ошибки Вконтакте
*
* Created on 4/3/16.
*
* @author sadv1r
* @version 0.1
* @since 0.1
* @see https://vk.com/dev/errors
*/
data class Error(
@JsonProperty("error_code")
val errorCode: Int,
@JsonProperty("error_msg")
val errorMsg: String,
@JsonProperty("request_params")
val requestParams: List
) {
data class Param(
val key: String,
val value: String
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy