Skip to content

Commit

Permalink
generator-go-sdk: update test fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
manicminer committed Sep 5, 2024
1 parent 483014a commit ff34b34
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,16 @@ type ModeOfTransit interface {
ModeOfTransit() BaseModeOfTransitImpl
}
var _ ModeOfTransit = BaseModeOfTransitImpl{}
type BaseModeOfTransitImpl struct {
Type string ''json:"type"''
}
func (s BaseModeOfTransitImpl) ModeOfTransit() BaseModeOfTransitImpl {
return s
}
var _ ModeOfTransit = RawModeOfTransitImpl{}
// RawModeOfTransitImpl is returned when the Discriminated Value doesn't match any of the defined types
Expand Down

0 comments on commit ff34b34

Please sign in to comment.