Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix embedded struct marshalling #3

Closed
wants to merge 1 commit into from
Closed

Conversation

alecsammon
Copy link
Owner

@alecsammon alecsammon commented Jul 3, 2024

Fixes struct marshalling for embedded structs when a json tag is specified.

Currently the following case works, and produces the same result as json.Marshal

type EmbeddedParent struct {
	*EmbeddedChild
}

However this case does not work as expected

type EmbeddedParent struct {
	*EmbeddedChild `json:"embedded"`
}

In the second case the outputted json is flattened, instead of nested as expected.

@alecsammon alecsammon closed this Jul 3, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants