com.softwaresandbox.pubgclient.model.Links Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pubg-api-client Show documentation
Show all versions of pubg-api-client Show documentation
Java library to interface with the PUBG developer API.
The newest version!
package com.softwaresandbox.pubgclient.model;
public class Links {
private String self;
public String getSelf() {
return self;
}
public void setSelf(String self) {
this.self = self;
}
@Override
public String toString() {
return "Links{" +
"self='" + self + '\'' +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy