Merged in feature/openapiowasp (pull request #101)

Remove OWASP Errors

* started

* somewarns

* somewarns

* gen
This commit is contained in:
Michael McGuinness
2025-03-12 00:59:58 +00:00
parent bbd86fb4ea
commit d60eb9b16b
4 changed files with 256 additions and 57 deletions
+7 -2
View File
@@ -12,11 +12,16 @@ import (
"net/http"
"net/url"
"strings"
"time"
"github.com/oapi-codegen/runtime"
openapi_types "github.com/oapi-codegen/runtime/types"
)
const (
PlaceholderAuthScopes = "placeholderAuth.Scopes"
)
// Defines values for ClientStatus.
const (
INSYNC ClientStatus = "IN_SYNC"
@@ -204,10 +209,10 @@ type ExportTrigger struct {
// IngestionFilters Filter the scope based on ingestion parameters.
IngestionFilters *struct {
// EndDate The last date of ingestion.
EndDate *string `json:"end_date,omitempty"`
EndDate *time.Time `json:"end_date,omitempty"`
// StartDate This first date of ingestion.
StartDate *string `json:"start_date,omitempty"`
StartDate *time.Time `json:"start_date,omitempty"`
} `json:"ingestion_filters,omitempty"`
}