the setter function is actually the option name that will be on my constructor signature (like "RequestOption"). ```go func NewRequest(options ...RequestOption) *Request {} ``` but this option function is generated by the cmd, so I can't put it on my constructor before the file is generated. I think there could be an option to not generate the declaration itself, so I can declare it myself.