-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel_branching_model_settings.go
252 lines (205 loc) · 7.58 KB
/
model_branching_model_settings.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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
/*
Bitbucket API
Code against the Bitbucket API to automate simple tasks, embed Bitbucket data into your own site, build mobile or desktop apps, or even add custom UI add-ons into Bitbucket itself using the Connect framework.
API version: 2.0
Contact: [email protected]
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package bitbucket
import (
"encoding/json"
)
// BranchingModelSettings A repository's branching model settings
type BranchingModelSettings struct {
Links *BranchingModelSettingsLinks `json:"links,omitempty"`
BranchTypes []BranchingModelSettingsBranchTypes `json:"branch_types,omitempty"`
Development *BranchingModelSettingsDevelopment `json:"development,omitempty"`
Production *BranchingModelSettingsProduction `json:"production,omitempty"`
AdditionalProperties map[string]interface{}
}
type _BranchingModelSettings BranchingModelSettings
// NewBranchingModelSettings instantiates a new BranchingModelSettings object
// This constructor will assign default values to properties that have it defined,
// and makes sure properties required by API are set, but the set of arguments
// will change when the set of required properties is changed
func NewBranchingModelSettings() *BranchingModelSettings {
this := BranchingModelSettings{}
return &this
}
// NewBranchingModelSettingsWithDefaults instantiates a new BranchingModelSettings object
// This constructor will only assign default values to properties that have it defined,
// but it doesn't guarantee that properties required by API are set
func NewBranchingModelSettingsWithDefaults() *BranchingModelSettings {
this := BranchingModelSettings{}
return &this
}
// GetLinks returns the Links field value if set, zero value otherwise.
func (o *BranchingModelSettings) GetLinks() BranchingModelSettingsLinks {
if o == nil || o.Links == nil {
var ret BranchingModelSettingsLinks
return ret
}
return *o.Links
}
// GetLinksOk returns a tuple with the Links field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *BranchingModelSettings) GetLinksOk() (*BranchingModelSettingsLinks, bool) {
if o == nil || o.Links == nil {
return nil, false
}
return o.Links, true
}
// HasLinks returns a boolean if a field has been set.
func (o *BranchingModelSettings) HasLinks() bool {
if o != nil && o.Links != nil {
return true
}
return false
}
// SetLinks gets a reference to the given BranchingModelSettingsLinks and assigns it to the Links field.
func (o *BranchingModelSettings) SetLinks(v BranchingModelSettingsLinks) {
o.Links = &v
}
// GetBranchTypes returns the BranchTypes field value if set, zero value otherwise.
func (o *BranchingModelSettings) GetBranchTypes() []BranchingModelSettingsBranchTypes {
if o == nil || o.BranchTypes == nil {
var ret []BranchingModelSettingsBranchTypes
return ret
}
return o.BranchTypes
}
// GetBranchTypesOk returns a tuple with the BranchTypes field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *BranchingModelSettings) GetBranchTypesOk() ([]BranchingModelSettingsBranchTypes, bool) {
if o == nil || o.BranchTypes == nil {
return nil, false
}
return o.BranchTypes, true
}
// HasBranchTypes returns a boolean if a field has been set.
func (o *BranchingModelSettings) HasBranchTypes() bool {
if o != nil && o.BranchTypes != nil {
return true
}
return false
}
// SetBranchTypes gets a reference to the given []BranchingModelSettingsBranchTypes and assigns it to the BranchTypes field.
func (o *BranchingModelSettings) SetBranchTypes(v []BranchingModelSettingsBranchTypes) {
o.BranchTypes = v
}
// GetDevelopment returns the Development field value if set, zero value otherwise.
func (o *BranchingModelSettings) GetDevelopment() BranchingModelSettingsDevelopment {
if o == nil || o.Development == nil {
var ret BranchingModelSettingsDevelopment
return ret
}
return *o.Development
}
// GetDevelopmentOk returns a tuple with the Development field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *BranchingModelSettings) GetDevelopmentOk() (*BranchingModelSettingsDevelopment, bool) {
if o == nil || o.Development == nil {
return nil, false
}
return o.Development, true
}
// HasDevelopment returns a boolean if a field has been set.
func (o *BranchingModelSettings) HasDevelopment() bool {
if o != nil && o.Development != nil {
return true
}
return false
}
// SetDevelopment gets a reference to the given BranchingModelSettingsDevelopment and assigns it to the Development field.
func (o *BranchingModelSettings) SetDevelopment(v BranchingModelSettingsDevelopment) {
o.Development = &v
}
// GetProduction returns the Production field value if set, zero value otherwise.
func (o *BranchingModelSettings) GetProduction() BranchingModelSettingsProduction {
if o == nil || o.Production == nil {
var ret BranchingModelSettingsProduction
return ret
}
return *o.Production
}
// GetProductionOk returns a tuple with the Production field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *BranchingModelSettings) GetProductionOk() (*BranchingModelSettingsProduction, bool) {
if o == nil || o.Production == nil {
return nil, false
}
return o.Production, true
}
// HasProduction returns a boolean if a field has been set.
func (o *BranchingModelSettings) HasProduction() bool {
if o != nil && o.Production != nil {
return true
}
return false
}
// SetProduction gets a reference to the given BranchingModelSettingsProduction and assigns it to the Production field.
func (o *BranchingModelSettings) SetProduction(v BranchingModelSettingsProduction) {
o.Production = &v
}
func (o BranchingModelSettings) MarshalJSON() ([]byte, error) {
toSerialize := map[string]interface{}{}
if o.Links != nil {
toSerialize["links"] = o.Links
}
if o.BranchTypes != nil {
toSerialize["branch_types"] = o.BranchTypes
}
if o.Development != nil {
toSerialize["development"] = o.Development
}
if o.Production != nil {
toSerialize["production"] = o.Production
}
for key, value := range o.AdditionalProperties {
toSerialize[key] = value
}
return json.Marshal(toSerialize)
}
func (o *BranchingModelSettings) UnmarshalJSON(bytes []byte) (err error) {
varBranchingModelSettings := _BranchingModelSettings{}
if err = json.Unmarshal(bytes, &varBranchingModelSettings); err == nil {
*o = BranchingModelSettings(varBranchingModelSettings)
}
additionalProperties := make(map[string]interface{})
if err = json.Unmarshal(bytes, &additionalProperties); err == nil {
delete(additionalProperties, "links")
delete(additionalProperties, "branch_types")
delete(additionalProperties, "development")
delete(additionalProperties, "production")
o.AdditionalProperties = additionalProperties
}
return err
}
type NullableBranchingModelSettings struct {
value *BranchingModelSettings
isSet bool
}
func (v NullableBranchingModelSettings) Get() *BranchingModelSettings {
return v.value
}
func (v *NullableBranchingModelSettings) Set(val *BranchingModelSettings) {
v.value = val
v.isSet = true
}
func (v NullableBranchingModelSettings) IsSet() bool {
return v.isSet
}
func (v *NullableBranchingModelSettings) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableBranchingModelSettings(val *BranchingModelSettings) *NullableBranchingModelSettings {
return &NullableBranchingModelSettings{value: val, isSet: true}
}
func (v NullableBranchingModelSettings) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableBranchingModelSettings) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}