Skip to content
Snippets Groups Projects
Commit d56ef34d authored by Charly Maeder's avatar Charly Maeder
Browse files

Add example property in openApiResponseContent

parent a9310064
No related branches found
No related tags found
1 merge request!5Add example property in openApiResponseContent
......@@ -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;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment