![JAR search and dependency download from the Maven repository](/logo.png)
io.payrun.models.LinkCollection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk Show documentation
Show all versions of sdk Show documentation
Java SDK for accessing the UK Payroll API - PayRun.io
package io.payrun.models;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonRootName;
@JsonRootName(value = "LinkCollection")
public class LinkCollection
{
@JsonProperty(value="Links")
public linksWrapper links;
public LinkCollection(){
this.links = new linksWrapper();
this.links.instance = new java.util.ArrayList<>();
}
@com.fasterxml.jackson.annotation.JsonIgnore
public java.util.ArrayList getLinks() {
return this.links.instance;
}
public class linksWrapper {
@JsonProperty(value="Link")
public java.util.ArrayList instance;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy