com.bigcommerce.catalog.models.Variants 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;
import java.util.List;
public class Variants implements PaginatedModel {
private final List variants;
private final Pagination pagination;
public Variants(final List products, final Pagination pagination) {
this.variants = products;
this.pagination = pagination;
}
public List getVariants() {
return variants;
}
public Pagination getPagination() {
return pagination;
}
@Override
public List getItems() {
return getVariants();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy