github.com/benchkram/bob@v0.0.0-20240314204020-b7a57f2f9be9/pkg/store-client/generated/types.gen.go (about) 1 // Package generated provides primitives to interact with the openapi HTTP API. 2 // 3 // Code generated by github.com/deepmap/oapi-codegen DO NOT EDIT. 4 package generated 5 6 // Artifact defines model for Artifact. 7 type Artifact struct { 8 Id string `json:"id"` 9 10 // location to download the artifact using a GET request. 11 Location *string `json:"location,omitempty"` 12 } 13 14 // ArtifactIds defines model for ArtifactIds. 15 type ArtifactIds []string 16 17 // Error defines model for Error. 18 type Error struct { 19 Id string `json:"id"` 20 } 21 22 // Success defines model for Success. 23 type Success struct { 24 Message string `json:"message"` 25 }