It generates code like this currently: ``` go type JobWrapper struct { Job Job `json:"job,omitempty"` } ``` Same with slices and what not. It would be nice (and probably what most people would want) to have it use pointers, eg: ``` go type JobWrapper struct { Job *Job `json:"job,omitempty"` } ```