summaryrefslogtreecommitdiff
path: root/pkg/bindings/images/types_get_options.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/bindings/images/types_get_options.go')
-rw-r--r--pkg/bindings/images/types_get_options.go20
1 files changed, 8 insertions, 12 deletions
diff --git a/pkg/bindings/images/types_get_options.go b/pkg/bindings/images/types_get_options.go
index 33da7b0be..9c10b9f54 100644
--- a/pkg/bindings/images/types_get_options.go
+++ b/pkg/bindings/images/types_get_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 *GetOptions) Changed(fieldName string) bool {
return util.Changed(o, fieldName)
}
-// ToParams
+// ToParams formats struct fields to be passed to API service
func (o *GetOptions) ToParams() (url.Values, error) {
return util.ToParams(o)
}
-// WithSize
+// WithSize set field Size to given value
func (o *GetOptions) WithSize(value bool) *GetOptions {
- v := &value
- o.Size = v
+ o.Size = &value
return o
}
-// GetSize
+// GetSize returns value of field Size
func (o *GetOptions) GetSize() bool {
- var size bool
if o.Size == nil {
- return size
+ var z bool
+ return z
}
return *o.Size
}