Skip to content
Snippets Groups Projects

Add example property in openApiResponseContent

Merged Baptiste Toulemonde requested to merge describe_repository_api into master
1 file
+ 5
5
Compare changes
  • Side-by-side
  • Inline
@@ -2,14 +2,14 @@ package com.smartharvester.model.openapi;
public class OpenApiResponseContent {
OpenApiMediaType schema;
String example;
public OpenApiMediaType getSchema() {
return schema;
public String getExample() {
return this.example;
}
public void setSchema(OpenApiMediaType schema) {
this.schema = schema;
public void setExemple(String example) {
this.example = example;
}
}
Loading