com.bigcommerce.catalog.models.Brands 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
The newest version!
package com.bigcommerce.catalog.models;
import java.util.List;
public class Brands implements PaginatedModel {
private final List brands;
private final Pagination pagination;
public Brands(final List brands, final Pagination pagination) {
this.brands = brands;
this.pagination = pagination;
}
public List getBrands() {
return brands;
}
public Pagination getPagination() {
return pagination;
}
@Override
public List getItems() {
return getBrands();
}
}