summaryrefslogtreecommitdiff
path: root/pkg/bindings/pods/types_top_options.go
blob: 2e319afb2a8bab274f9e0e8fe070292c71ee5e48 (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 pods

import (
	"net/url"

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

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

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

// WithDescriptors set field Descriptors to given value
func (o *TopOptions) WithDescriptors(value []string) *TopOptions {
	o.Descriptors = value
	return o
}

// GetDescriptors returns value of field Descriptors
func (o *TopOptions) GetDescriptors() []string {
	if o.Descriptors == nil {
		var z []string
		return z
	}
	return o.Descriptors
}