summaryrefslogtreecommitdiff
path: root/pkg/bindings/system/types_events_options.go
blob: 8b4cff42ca7eafcf097474a592b2e1bd611b0880 (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
79
80
81
82
83
84
85
package system

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 *EventsOptions) Changed(fieldName string) bool {
	return util.Changed(o, fieldName)
}

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

// WithFilters
func (o *EventsOptions) WithFilters(value map[string][]string) *EventsOptions {
	v := value
	o.Filters = v
	return o
}

// GetFilters
func (o *EventsOptions) GetFilters() map[string][]string {
	var filters map[string][]string
	if o.Filters == nil {
		return filters
	}
	return o.Filters
}

// WithSince
func (o *EventsOptions) WithSince(value string) *EventsOptions {
	v := &value
	o.Since = v
	return o
}

// GetSince
func (o *EventsOptions) GetSince() string {
	var since string
	if o.Since == nil {
		return since
	}
	return *o.Since
}

// WithStream
func (o *EventsOptions) WithStream(value bool) *EventsOptions {
	v := &value
	o.Stream = v
	return o
}

// GetStream
func (o *EventsOptions) GetStream() bool {
	var stream bool
	if o.Stream == nil {
		return stream
	}
	return *o.Stream
}

// WithUntil
func (o *EventsOptions) WithUntil(value string) *EventsOptions {
	v := &value
	o.Until = v
	return o
}

// GetUntil
func (o *EventsOptions) GetUntil() string {
	var until string
	if o.Until == nil {
		return until
	}
	return *o.Until
}