public WhenSerializeEmptyFieldsIsTrue()
                {
                    var options = new API.UserUpdateOptions(true);
                    options.Name = "David Muto";

                    this._subject = options.Serialize();
                }
예제 #2
0
            public UpdateUser()
            {
                var options = new API.UserUpdateOptions();
                options.Name = "David Muto";

                this._tokenAuthClient.Users().UpdateUser(options);
            }