Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 518 Bytes

VkApi.ApiError.md

File metadata and controls

15 lines (13 loc) · 518 Bytes

ApiError

type ApiError struct {
	Code       int               `json:"error_code"`
	Message    string            `json:"error_msg"`
	Params     []RequestedParams `json:"request_params"`
	CaptchaSid string            `json:"captcha_sid"`
	CaptchaImg string            `json:"captcha_img"`
	CallMethod *string // Ссылка на метод который был вызван
	CallParams *VkApi.P // Ссылка на параметры которые были переданы
}

Назад