Skip to content
Snippets Groups Projects
Commit 004800e8 authored by Baptiste Toulemonde's avatar Baptiste Toulemonde
Browse files

Merge branch 'describe_repository_api' into 'master'

Add example property in openApiResponseContent

See merge request !5
parents 38343df4 d56ef34d
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; ...@@ -2,14 +2,14 @@ package com.smartharvester.model.openapi;
public class OpenApiResponseContent { public class OpenApiResponseContent {
OpenApiMediaType schema; String example;
public OpenApiMediaType getSchema() { public String getExample() {
return schema; return this.example;
} }
public void setSchema(OpenApiMediaType schema) { public void setExemple(String example) {
this.schema = schema; 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