summaryrefslogtreecommitdiff
path: root/pkg/bindings/system/types_events_options.go
blob: 6bb13b8a62fdf9d8216fc332917f805cfded579a (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
// Code generated by go generate; DO NOT EDIT.
package system

import (
	"net/url"

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

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

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

// WithFilters set field Filters to given value
func (o *EventsOptions) WithFilters(value map[string][]string) *EventsOptions {
	o.Filters = value
	return o
}

// GetFilters returns value of field Filters
func (o *EventsOptions) GetFilters() map[string][]string {
	if o.Filters == nil {
		var z map[string][]string
		return z
	}
	return o.Filters
}

// WithSince set field Since to given value
func (o *EventsOptions) WithSince(value string) *EventsOptions {
	o.Since = &value
	return o
}

// GetSince returns value of field Since
func (o *EventsOptions) GetSince() string {
	if o.Since == nil {
		var z string
		return z
	}
	return *o.Since
}

// WithStream set field Stream to given value
func (o *EventsOptions) WithStream(value bool) *EventsOptions {
	o.Stream = &value
	return o
}

// GetStream returns value of field Stream
func (o *EventsOptions) GetStream() bool {
	if o.Stream == nil {
		var z bool
		return z
	}
	return *o.Stream
}

// WithUntil set field Until to given value
func (o *EventsOptions) WithUntil(value string) *EventsOptions {
	o.Until = &value
	return o
}

// GetUntil returns value of field Until
func (o *EventsOptions) GetUntil() string {
	if o.Until == nil {
		var z string
		return z
	}
	return *o.Until
}