Files
member-console/internal/integration/models.go
T
cgalo5758 88db730fcc Add dual licensing and SPDX headers
Introduce a commercial license option alongside AGPL-3.0-only, require a
CLA for contributors, and document the terms in COMMERCIAL.md and
NOTICE. Add a script to stamp SPDX headers on Go files and apply it
across the tree.
2026-09-06 02:29:42 -05:00

33 lines
994 B
Go

// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Commercial
// SPDX-FileCopyrightText: 2025-2026 Christian Galo
// 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 {
Provider string `json:"provider"`
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"`
}