Hi I'm having the following piece of code
BBResponse bbStmtResponse = BBResponse.builder().result(IN_PROGRESS).build();
After few validations, I want to update the object "bbStmtResponse" to set to other properties as
bbStmtResponse.builder().status(SUCCESS).build();
When I print the bbStmtResponse object, it doesn't hold "result" property value which was supposed to be"IN_PROGRESS". How can I overcome this, instead of using setter methods as there are more properties to set