summaryrefslogtreecommitdiff
path: root/pkg/bindings/images/types_load_options.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/bindings/images/types_load_options.go')
-rw-r--r--pkg/bindings/images/types_load_options.go20
1 files changed, 8 insertions, 12 deletions
diff --git a/pkg/bindings/images/types_load_options.go b/pkg/bindings/images/types_load_options.go
index 7b2e504d9..b139a96f4 100644
--- a/pkg/bindings/images/types_load_options.go
+++ b/pkg/bindings/images/types_load_options.go
@@ -1,3 +1,4 @@
+// Code generated by go generate; DO NOT EDIT.
package images
import (
@@ -6,32 +7,27 @@ import (
"github.com/containers/podman/v3/pkg/bindings/internal/util"
)
-/*
-This file is generated automatically by go generate. Do not edit.
-*/
-
-// Changed
+// Changed returns true if named field has been set
func (o *LoadOptions) Changed(fieldName string) bool {
return util.Changed(o, fieldName)
}
-// ToParams
+// ToParams formats struct fields to be passed to API service
func (o *LoadOptions) ToParams() (url.Values, error) {
return util.ToParams(o)
}
-// WithReference
+// WithReference set field Reference to given value
func (o *LoadOptions) WithReference(value string) *LoadOptions {
- v := &value
- o.Reference = v
+ o.Reference = &value
return o
}
-// GetReference
+// GetReference returns value of field Reference
func (o *LoadOptions) GetReference() string {
- var reference string
if o.Reference == nil {
- return reference
+ var z string
+ return z
}
return *o.Reference
}