Хранит информацию о текущем аккаунте. Подробнее:
Пример #1
0
        internal static AccountInfo FromJson(VkResponse response)
        {
            AccountInfo info = new AccountInfo();

            info.Country = response["country"];
            info.HttpsRequired = response["https_required"];
            info.Intro = response["intro"];
            info.Language = response["lang"];

            return info;
        }