pointers_nullable_by_default

package
v0.33.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 7, 2025 License: Apache-2.0 Imports: 0 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Item

type Item struct {
	Value1 *int

	Value2 int

	// Extensions:
	// ---
	// x-nullable: false
	Value3 *int

	// Extensions:
	// ---
	// x-isnullable: false
	Value4 *int

	Value5 *int `json:"Value5,omitempty"`
}

swagger:model Item

type ItemInterface

type ItemInterface interface {
	Value1() *int
	Value2() int

	// Value3 is a nullable value
	// Extensions:
	// ---
	// x-nullable: false
	Value3() *int

	// Value4 is a non-nullable value
	// Extensions:
	// ---
	// x-isnullable: false
	Value4() *int

	Value5() int
}

swagger:model ItemInterface

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL