Open
Description
{
"components": {
"schemas": {
"TokenExpirationSeconds": {
"type": "integer",
"description": "The number of seconds until the generated token expires.",
"format": "int32",
"default": 3600,
"example": 3600,
"minimum": 15,
"maximum": 86400
},
"PersonalAccessToken": {
"type": "object",
"properties": {
"expires_in": {
"$ref": "#/compnenets/schemas/TokenExpirationSeconds"
}
}
}
}
}
}
All i get in the generated code is
case class PersonalAccessToken(expiresIn: Option[Int] = Option(3600))
I'd ideally be able to access these constants in some way. Only the default
is present in the generated code at all.
Metadata
Metadata
Assignees
Labels
No labels