VkNet.Model.ChatPushSettings.FromJson C# (CSharp) Метод

FromJson() публичный статический Метод

Разобрать из json.
public static FromJson ( VkResponse response ) : ChatPushSettings
response VkResponse Ответ сервера.
Результат ChatPushSettings
        public static ChatPushSettings FromJson(VkResponse response)
        {
            var result = new ChatPushSettings
            {
                PeerId = response["peer_id"],
                Sound = response["sound"],
                DisabledUntil = response["disabled_until"]
            };

            return result;
        }
ChatPushSettings