In the below function as you can see in the .save() part there is no response object, I would like to know how do i declare a response object to get a return value.
        $.when(
            _this.formWebsitePart.save({
                success: function () {
                    console.log("website saved")
                    _this.formWebsitePart.isSaved = true;
                }
            }),
            _this.formAddressPart.save({
                success: function () {
                    console.log("address saved")
                }
            })
        ).then(function () {
                _this.signupSuccess();
            }
        )
 
     
     
    