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 documentation
Show all versions of swagger-maven-plugin Show documentation
A maven build plugin which helps you generate API document during build phase
The newest version!
package com.github.kongchen.swagger.docgen;
import com.fasterxml.jackson.annotation.JsonRawValue;
abstract class PropertyExampleMixIn {
PropertyExampleMixIn() { }
@JsonRawValue abstract Object getExample();
}