Generate code is ``` public CallTask withCallAsyncAPI(CallAsyncAPI value) { callAsyncAPI = value; return this; } ``` and should be ``` public CallTask withCallAsyncAPI(CallAsyncAPI value) { callAsyncAPI = value; this.value = value; return this; } ```