You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// EventSuccessMessagePayload is a schema from the AsyncAPI specification required in messagestypeEventSuccessMessagePayloadstruct {
// Description: The id of the eventEventId*int64`json:"event_id"`
}
Desired Behaviour
The x-go-name directive is respected, the same way oapi-codegen does here
typeEventSuccessMessagePayloadstruct {
// Description: The id of the eventEventID*int64`json:"event_id"`
}
Current Behaviour
Given the following spec:
The produced output will have the generated type:
> asyncapi-codegen -i asyncapi.yml -g types -o gen.gen.go
Desired Behaviour
The
x-go-name
directive is respected, the same wayoapi-codegen
does hereNotes
The text was updated successfully, but these errors were encountered: