org.heigit.ohsome.ohsomeapi.output.dataaggregationresponse.Attribution Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ohsome-api Show documentation
Show all versions of ohsome-api Show documentation
A public Web-RESTful-API for "ohsome" OpenStreetMap history data.
package org.heigit.ohsome.ohsomeapi.output.dataaggregationresponse;
import io.swagger.annotations.ApiModelProperty;
import lombok.AllArgsConstructor;
import lombok.Getter;
/**
* Represents the attribution information contained in every json response. It holds a link to the
* copyright and license information and a short copyright text.
*/
@Getter
@AllArgsConstructor
public class Attribution {
@ApiModelProperty(notes = "URL to the copyright and license info", required = true)
private String url;
@ApiModelProperty(notes = "Copyright info about the used data", required = true)
private String text;
}