openapi: unused

This commit is contained in:
2024-12-09 21:19:12 -08:00
parent 1c0ed6574f
commit b3ba9c2301
3 changed files with 7 additions and 40 deletions

View File

@@ -723,7 +723,6 @@ type SubmissionCreate struct {
DisplayName string `json:"DisplayName"`
Creator string `json:"Creator"`
GameID int32 `json:"GameID"`
Submitter int64 `json:"Submitter"`
AssetID int64 `json:"AssetID"`
AssetVersion int64 `json:"AssetVersion"`
TargetAssetID OptInt64 `json:"TargetAssetID"`
@@ -744,11 +743,6 @@ func (s *SubmissionCreate) GetGameID() int32 {
return s.GameID
}
// GetSubmitter returns the value of Submitter.
func (s *SubmissionCreate) GetSubmitter() int64 {
return s.Submitter
}
// GetAssetID returns the value of AssetID.
func (s *SubmissionCreate) GetAssetID() int64 {
return s.AssetID
@@ -779,11 +773,6 @@ func (s *SubmissionCreate) SetGameID(val int32) {
s.GameID = val
}
// SetSubmitter sets the value of Submitter.
func (s *SubmissionCreate) SetSubmitter(val int64) {
s.Submitter = val
}
// SetAssetID sets the value of AssetID.
func (s *SubmissionCreate) SetAssetID(val int64) {
s.AssetID = val