com.exaroton.api.server.MclogsData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
The official exaroton java library
The newest version!
package com.exaroton.api.server;
public class MclogsData {
private final String id;
private final String url;
private final String raw;
public MclogsData(String id, String url, String raw) {
this.id = id;
this.url = url;
this.raw = raw;
}
/**
* @return mclo.gs log ID
*/
public String getId() {
return id;
}
/**
* @return mclo.gs log URL
*/
public String getUrl() {
return url;
}
/**
* @return mclo.gs raw URL
*/
public String getRaw() {
return raw;
}
}