summaryrefslogtreecommitdiff
path: root/pkg/bindings/images/types_get_options.go
blob: 33da7b0be85d461af61b47974334ea919938ab93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package images

import (
	"net/url"

	"github.com/containers/podman/v3/pkg/bindings/internal/util"
)

/*
This file is generated automatically by go generate.  Do not edit.
*/

// Changed
func (o *GetOptions) Changed(fieldName string) bool {
	return util.Changed(o, fieldName)
}

// ToParams
func (o *GetOptions) ToParams() (url.Values, error) {
	return util.ToParams(o)
}

// WithSize
func (o *GetOptions) WithSize(value bool) *GetOptions {
	v := &value
	o.Size = v
	return o
}

// GetSize
func (o *GetOptions) GetSize() bool {
	var size bool
	if o.Size == nil {
		return size
	}
	return *o.Size
}