public String getSwaggerType()

in src/main/java/com/jetbrains/codegen/kotlin/TeamCityKotlinCodegen.java [185:189]


    public String getSwaggerType(Property p) {
        String swaggerType = super.getSwaggerType(p);
        // This maps, for example, long -> kotlin.Long based on hashes in this type's constructor
        return typeMapping.getOrDefault(swaggerType, swaggerType);
    }