This repository was archived by the owner on Mar 16, 2025. It is now read-only.
This repository was archived by the owner on Mar 16, 2025. It is now read-only.
Format mapping on primitive type not work #22
Closed
Description
I have the following typ:
UUID:
type: string
and try to map it to a java UUID type:
map:
types:
- type: UUID => java.util.UUID
The result of the generated Interface is, that the UUID typ will generated in a String.
If I change the type of UUID to object, it works correctly. My read is, that mapping for primitive types not work.