-
Notifications
You must be signed in to change notification settings - Fork 125
/
contract_type.go
180 lines (156 loc) · 4.96 KB
/
contract_type.go
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
/*
Copyright (c) 2020 Red Hat, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// IMPORTANT: This file has been generated automatically, refrain from modifying it manually as all
// your changes will be lost when the file is generated again.
package v1 // github.com/openshift-online/ocm-sdk-go/accountsmgmt/v1
import (
time "time"
)
// Contract represents the values of the 'contract' type.
type Contract struct {
bitmap_ uint32
dimensions []*ContractDimension
endDate time.Time
startDate time.Time
}
// Empty returns true if the object is empty, i.e. no attribute has a value.
func (o *Contract) Empty() bool {
return o == nil || o.bitmap_ == 0
}
// Dimensions returns the value of the 'dimensions' attribute, or
// the zero value of the type if the attribute doesn't have a value.
func (o *Contract) Dimensions() []*ContractDimension {
if o != nil && o.bitmap_&1 != 0 {
return o.dimensions
}
return nil
}
// GetDimensions returns the value of the 'dimensions' attribute and
// a flag indicating if the attribute has a value.
func (o *Contract) GetDimensions() (value []*ContractDimension, ok bool) {
ok = o != nil && o.bitmap_&1 != 0
if ok {
value = o.dimensions
}
return
}
// EndDate returns the value of the 'end_date' attribute, or
// the zero value of the type if the attribute doesn't have a value.
func (o *Contract) EndDate() time.Time {
if o != nil && o.bitmap_&2 != 0 {
return o.endDate
}
return time.Time{}
}
// GetEndDate returns the value of the 'end_date' attribute and
// a flag indicating if the attribute has a value.
func (o *Contract) GetEndDate() (value time.Time, ok bool) {
ok = o != nil && o.bitmap_&2 != 0
if ok {
value = o.endDate
}
return
}
// StartDate returns the value of the 'start_date' attribute, or
// the zero value of the type if the attribute doesn't have a value.
func (o *Contract) StartDate() time.Time {
if o != nil && o.bitmap_&4 != 0 {
return o.startDate
}
return time.Time{}
}
// GetStartDate returns the value of the 'start_date' attribute and
// a flag indicating if the attribute has a value.
func (o *Contract) GetStartDate() (value time.Time, ok bool) {
ok = o != nil && o.bitmap_&4 != 0
if ok {
value = o.startDate
}
return
}
// ContractListKind is the name of the type used to represent list of objects of
// type 'contract'.
const ContractListKind = "ContractList"
// ContractListLinkKind is the name of the type used to represent links to list
// of objects of type 'contract'.
const ContractListLinkKind = "ContractListLink"
// ContractNilKind is the name of the type used to nil lists of objects of
// type 'contract'.
const ContractListNilKind = "ContractListNil"
// ContractList is a list of values of the 'contract' type.
type ContractList struct {
href string
link bool
items []*Contract
}
// Len returns the length of the list.
func (l *ContractList) Len() int {
if l == nil {
return 0
}
return len(l.items)
}
// Empty returns true if the list is empty.
func (l *ContractList) Empty() bool {
return l == nil || len(l.items) == 0
}
// Get returns the item of the list with the given index. If there is no item with
// that index it returns nil.
func (l *ContractList) Get(i int) *Contract {
if l == nil || i < 0 || i >= len(l.items) {
return nil
}
return l.items[i]
}
// Slice returns an slice containing the items of the list. The returned slice is a
// copy of the one used internally, so it can be modified without affecting the
// internal representation.
//
// If you don't need to modify the returned slice consider using the Each or Range
// functions, as they don't need to allocate a new slice.
func (l *ContractList) Slice() []*Contract {
var slice []*Contract
if l == nil {
slice = make([]*Contract, 0)
} else {
slice = make([]*Contract, len(l.items))
copy(slice, l.items)
}
return slice
}
// Each runs the given function for each item of the list, in order. If the function
// returns false the iteration stops, otherwise it continues till all the elements
// of the list have been processed.
func (l *ContractList) Each(f func(item *Contract) bool) {
if l == nil {
return
}
for _, item := range l.items {
if !f(item) {
break
}
}
}
// Range runs the given function for each index and item of the list, in order. If
// the function returns false the iteration stops, otherwise it continues till all
// the elements of the list have been processed.
func (l *ContractList) Range(f func(index int, item *Contract) bool) {
if l == nil {
return
}
for index, item := range l.items {
if !f(index, item) {
break
}
}
}