forked from TykTechnologies/tyk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Swagger documentation (TykTechnologies#2126)
See TykTechnologies/product#88 - [x] Definition of swagger models and responses - [x] CI build step to validate the schema
- Loading branch information
Showing
9 changed files
with
2,504 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package main | ||
|
||
import ( | ||
"github.com/TykTechnologies/tyk/apidef" | ||
"github.com/TykTechnologies/tyk/user" | ||
) | ||
|
||
// parameterBodies | ||
// swagger:response parameterBodies | ||
type swaggerParameterBodies struct { | ||
// in: body | ||
APIStatusMessage apiStatusMessage | ||
// in: body | ||
APIModifyKeySuccess apiModifyKeySuccess | ||
// in: body | ||
NewClientRequest NewClientRequest | ||
// in: body | ||
APIDefinition apidef.APIDefinition | ||
// in: body | ||
SessionState user.SessionState | ||
// in:body | ||
APIAllKeys apiAllKeys | ||
// in: body | ||
OAuthClientToken OAuthClientToken | ||
} |
Oops, something went wrong.