-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaddonassociation.go
More file actions
283 lines (272 loc) · 10.7 KB
/
addonassociation.go
File metadata and controls
283 lines (272 loc) · 10.7 KB
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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
// Code generated by ent, DO NOT EDIT.
package ent
import (
"encoding/json"
"fmt"
"strings"
"time"
"entgo.io/ent"
"entgo.io/ent/dialect/sql"
"github.com/flexprice/flexprice/ent/addonassociation"
)
// AddonAssociation is the model entity for the AddonAssociation schema.
type AddonAssociation struct {
config `json:"-"`
// ID of the ent.
ID string `json:"id,omitempty"`
// TenantID holds the value of the "tenant_id" field.
TenantID string `json:"tenant_id,omitempty"`
// Status holds the value of the "status" field.
Status string `json:"status,omitempty"`
// CreatedAt holds the value of the "created_at" field.
CreatedAt time.Time `json:"created_at,omitempty"`
// UpdatedAt holds the value of the "updated_at" field.
UpdatedAt time.Time `json:"updated_at,omitempty"`
// CreatedBy holds the value of the "created_by" field.
CreatedBy string `json:"created_by,omitempty"`
// UpdatedBy holds the value of the "updated_by" field.
UpdatedBy string `json:"updated_by,omitempty"`
// EnvironmentID holds the value of the "environment_id" field.
EnvironmentID string `json:"environment_id,omitempty"`
// EntityID holds the value of the "entity_id" field.
EntityID string `json:"entity_id,omitempty"`
// EntityType holds the value of the "entity_type" field.
EntityType string `json:"entity_type,omitempty"`
// AddonID holds the value of the "addon_id" field.
AddonID string `json:"addon_id,omitempty"`
// StartDate holds the value of the "start_date" field.
StartDate *time.Time `json:"start_date,omitempty"`
// EndDate holds the value of the "end_date" field.
EndDate *time.Time `json:"end_date,omitempty"`
// AddonStatus holds the value of the "addon_status" field.
AddonStatus string `json:"addon_status,omitempty"`
// CancellationReason holds the value of the "cancellation_reason" field.
CancellationReason string `json:"cancellation_reason,omitempty"`
// CancelledAt holds the value of the "cancelled_at" field.
CancelledAt *time.Time `json:"cancelled_at,omitempty"`
// Metadata holds the value of the "metadata" field.
Metadata map[string]interface{} `json:"metadata,omitempty"`
selectValues sql.SelectValues
}
// scanValues returns the types for scanning values from sql.Rows.
func (*AddonAssociation) scanValues(columns []string) ([]any, error) {
values := make([]any, len(columns))
for i := range columns {
switch columns[i] {
case addonassociation.FieldMetadata:
values[i] = new([]byte)
case addonassociation.FieldID, addonassociation.FieldTenantID, addonassociation.FieldStatus, addonassociation.FieldCreatedBy, addonassociation.FieldUpdatedBy, addonassociation.FieldEnvironmentID, addonassociation.FieldEntityID, addonassociation.FieldEntityType, addonassociation.FieldAddonID, addonassociation.FieldAddonStatus, addonassociation.FieldCancellationReason:
values[i] = new(sql.NullString)
case addonassociation.FieldCreatedAt, addonassociation.FieldUpdatedAt, addonassociation.FieldStartDate, addonassociation.FieldEndDate, addonassociation.FieldCancelledAt:
values[i] = new(sql.NullTime)
default:
values[i] = new(sql.UnknownType)
}
}
return values, nil
}
// assignValues assigns the values that were returned from sql.Rows (after scanning)
// to the AddonAssociation fields.
func (aa *AddonAssociation) assignValues(columns []string, values []any) error {
if m, n := len(values), len(columns); m < n {
return fmt.Errorf("mismatch number of scan values: %d != %d", m, n)
}
for i := range columns {
switch columns[i] {
case addonassociation.FieldID:
if value, ok := values[i].(*sql.NullString); !ok {
return fmt.Errorf("unexpected type %T for field id", values[i])
} else if value.Valid {
aa.ID = value.String
}
case addonassociation.FieldTenantID:
if value, ok := values[i].(*sql.NullString); !ok {
return fmt.Errorf("unexpected type %T for field tenant_id", values[i])
} else if value.Valid {
aa.TenantID = value.String
}
case addonassociation.FieldStatus:
if value, ok := values[i].(*sql.NullString); !ok {
return fmt.Errorf("unexpected type %T for field status", values[i])
} else if value.Valid {
aa.Status = value.String
}
case addonassociation.FieldCreatedAt:
if value, ok := values[i].(*sql.NullTime); !ok {
return fmt.Errorf("unexpected type %T for field created_at", values[i])
} else if value.Valid {
aa.CreatedAt = value.Time
}
case addonassociation.FieldUpdatedAt:
if value, ok := values[i].(*sql.NullTime); !ok {
return fmt.Errorf("unexpected type %T for field updated_at", values[i])
} else if value.Valid {
aa.UpdatedAt = value.Time
}
case addonassociation.FieldCreatedBy:
if value, ok := values[i].(*sql.NullString); !ok {
return fmt.Errorf("unexpected type %T for field created_by", values[i])
} else if value.Valid {
aa.CreatedBy = value.String
}
case addonassociation.FieldUpdatedBy:
if value, ok := values[i].(*sql.NullString); !ok {
return fmt.Errorf("unexpected type %T for field updated_by", values[i])
} else if value.Valid {
aa.UpdatedBy = value.String
}
case addonassociation.FieldEnvironmentID:
if value, ok := values[i].(*sql.NullString); !ok {
return fmt.Errorf("unexpected type %T for field environment_id", values[i])
} else if value.Valid {
aa.EnvironmentID = value.String
}
case addonassociation.FieldEntityID:
if value, ok := values[i].(*sql.NullString); !ok {
return fmt.Errorf("unexpected type %T for field entity_id", values[i])
} else if value.Valid {
aa.EntityID = value.String
}
case addonassociation.FieldEntityType:
if value, ok := values[i].(*sql.NullString); !ok {
return fmt.Errorf("unexpected type %T for field entity_type", values[i])
} else if value.Valid {
aa.EntityType = value.String
}
case addonassociation.FieldAddonID:
if value, ok := values[i].(*sql.NullString); !ok {
return fmt.Errorf("unexpected type %T for field addon_id", values[i])
} else if value.Valid {
aa.AddonID = value.String
}
case addonassociation.FieldStartDate:
if value, ok := values[i].(*sql.NullTime); !ok {
return fmt.Errorf("unexpected type %T for field start_date", values[i])
} else if value.Valid {
aa.StartDate = new(time.Time)
*aa.StartDate = value.Time
}
case addonassociation.FieldEndDate:
if value, ok := values[i].(*sql.NullTime); !ok {
return fmt.Errorf("unexpected type %T for field end_date", values[i])
} else if value.Valid {
aa.EndDate = new(time.Time)
*aa.EndDate = value.Time
}
case addonassociation.FieldAddonStatus:
if value, ok := values[i].(*sql.NullString); !ok {
return fmt.Errorf("unexpected type %T for field addon_status", values[i])
} else if value.Valid {
aa.AddonStatus = value.String
}
case addonassociation.FieldCancellationReason:
if value, ok := values[i].(*sql.NullString); !ok {
return fmt.Errorf("unexpected type %T for field cancellation_reason", values[i])
} else if value.Valid {
aa.CancellationReason = value.String
}
case addonassociation.FieldCancelledAt:
if value, ok := values[i].(*sql.NullTime); !ok {
return fmt.Errorf("unexpected type %T for field cancelled_at", values[i])
} else if value.Valid {
aa.CancelledAt = new(time.Time)
*aa.CancelledAt = value.Time
}
case addonassociation.FieldMetadata:
if value, ok := values[i].(*[]byte); !ok {
return fmt.Errorf("unexpected type %T for field metadata", values[i])
} else if value != nil && len(*value) > 0 {
if err := json.Unmarshal(*value, &aa.Metadata); err != nil {
return fmt.Errorf("unmarshal field metadata: %w", err)
}
}
default:
aa.selectValues.Set(columns[i], values[i])
}
}
return nil
}
// Value returns the ent.Value that was dynamically selected and assigned to the AddonAssociation.
// This includes values selected through modifiers, order, etc.
func (aa *AddonAssociation) Value(name string) (ent.Value, error) {
return aa.selectValues.Get(name)
}
// Update returns a builder for updating this AddonAssociation.
// Note that you need to call AddonAssociation.Unwrap() before calling this method if this AddonAssociation
// was returned from a transaction, and the transaction was committed or rolled back.
func (aa *AddonAssociation) Update() *AddonAssociationUpdateOne {
return NewAddonAssociationClient(aa.config).UpdateOne(aa)
}
// Unwrap unwraps the AddonAssociation entity that was returned from a transaction after it was closed,
// so that all future queries will be executed through the driver which created the transaction.
func (aa *AddonAssociation) Unwrap() *AddonAssociation {
_tx, ok := aa.config.driver.(*txDriver)
if !ok {
panic("ent: AddonAssociation is not a transactional entity")
}
aa.config.driver = _tx.drv
return aa
}
// String implements the fmt.Stringer.
func (aa *AddonAssociation) String() string {
var builder strings.Builder
builder.WriteString("AddonAssociation(")
builder.WriteString(fmt.Sprintf("id=%v, ", aa.ID))
builder.WriteString("tenant_id=")
builder.WriteString(aa.TenantID)
builder.WriteString(", ")
builder.WriteString("status=")
builder.WriteString(aa.Status)
builder.WriteString(", ")
builder.WriteString("created_at=")
builder.WriteString(aa.CreatedAt.Format(time.ANSIC))
builder.WriteString(", ")
builder.WriteString("updated_at=")
builder.WriteString(aa.UpdatedAt.Format(time.ANSIC))
builder.WriteString(", ")
builder.WriteString("created_by=")
builder.WriteString(aa.CreatedBy)
builder.WriteString(", ")
builder.WriteString("updated_by=")
builder.WriteString(aa.UpdatedBy)
builder.WriteString(", ")
builder.WriteString("environment_id=")
builder.WriteString(aa.EnvironmentID)
builder.WriteString(", ")
builder.WriteString("entity_id=")
builder.WriteString(aa.EntityID)
builder.WriteString(", ")
builder.WriteString("entity_type=")
builder.WriteString(aa.EntityType)
builder.WriteString(", ")
builder.WriteString("addon_id=")
builder.WriteString(aa.AddonID)
builder.WriteString(", ")
if v := aa.StartDate; v != nil {
builder.WriteString("start_date=")
builder.WriteString(v.Format(time.ANSIC))
}
builder.WriteString(", ")
if v := aa.EndDate; v != nil {
builder.WriteString("end_date=")
builder.WriteString(v.Format(time.ANSIC))
}
builder.WriteString(", ")
builder.WriteString("addon_status=")
builder.WriteString(aa.AddonStatus)
builder.WriteString(", ")
builder.WriteString("cancellation_reason=")
builder.WriteString(aa.CancellationReason)
builder.WriteString(", ")
if v := aa.CancelledAt; v != nil {
builder.WriteString("cancelled_at=")
builder.WriteString(v.Format(time.ANSIC))
}
builder.WriteString(", ")
builder.WriteString("metadata=")
builder.WriteString(fmt.Sprintf("%v", aa.Metadata))
builder.WriteByte(')')
return builder.String()
}
// AddonAssociations is a parsable slice of AddonAssociation.
type AddonAssociations []*AddonAssociation