com.github.kongchen.swagger.docgen.PropertyExampleMixIn Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swagger-maven-plugin
Show all versions of swagger-maven-plugin
A maven build plugin which helps you generate API document during build phase
package com.github.kongchen.swagger.docgen;
import com.fasterxml.jackson.annotation.JsonRawValue;
abstract class PropertyExampleMixIn {
PropertyExampleMixIn() { }
@JsonRawValue abstract String getExample();
}