30 lines
870 B
Go
30 lines
870 B
Go
// Code generated by sqlc. DO NOT EDIT.
|
|
// versions:
|
|
// sqlc v1.29.0
|
|
|
|
package integration
|
|
|
|
import (
|
|
"database/sql"
|
|
"time"
|
|
)
|
|
|
|
type ConfigOverride struct {
|
|
Key string `json:"key"`
|
|
Value string `json:"value"`
|
|
UpdatedBy sql.NullString `json:"updated_by"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
}
|
|
|
|
type Provider struct {
|
|
Slug string `json:"slug"`
|
|
ProviderKind string `json:"provider_kind"`
|
|
DisplayName string `json:"display_name"`
|
|
OperatorSurfacePath sql.NullString `json:"operator_surface_path"`
|
|
Status string `json:"status"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
SuspendedAt sql.NullTime `json:"suspended_at"`
|
|
RetiredAt sql.NullTime `json:"retired_at"`
|
|
}
|