com.bigcommerce.catalog.models.Links Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bigcommerce-sdk Show documentation
Show all versions of bigcommerce-sdk Show documentation
Java SDK for BigCommerce REST APIs
package com.bigcommerce.catalog.models;
public class Links {
private String previous;
private String next;
private String current;
public String getPrevious() {
return previous;
}
public void setPrevious(String previous) {
this.previous = previous;
}
public String getNext() {
return next;
}
public void setNext(String next) {
this.next = next;
}
public String getCurrent() {
return current;
}
public void setCurrent(String current) {
this.current = current;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy