summaryrefslogtreecommitdiff
path: root/pkg/bindings/images/types_get_options.go
blob: 9c10b9f545edf4cb453517041b30de3f4f50a9ce (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
// Code generated by go generate; DO NOT EDIT.
package images

import (
	"net/url"

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

// Changed returns true if named field has been set
func (o *GetOptions) Changed(fieldName string) bool {
	return util.Changed(o, fieldName)
}

// ToParams formats struct fields to be passed to API service
func (o *GetOptions) ToParams() (url.Values, error) {
	return util.ToParams(o)
}

// WithSize set field Size to given value
func (o *GetOptions) WithSize(value bool) *GetOptions {
	o.Size = &value
	return o
}

// GetSize returns value of field Size
func (o *GetOptions) GetSize() bool {
	if o.Size == nil {
		var z bool
		return z
	}
	return *o.Size
}