
com.contentful.java.cda.CDAArray Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
Java SDK for Contentful's Content Delivery API.
package com.contentful.java.cda;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/** Collection of CDA resources. */
public class CDAArray extends ArrayResource {
int total;
int skip;
int limit;
Includes includes;
/** Total number of resources (linked excluded). */
public int total() {
return total;
}
/** Skip attribute. */
public int skip() {
return skip;
}
/** Limit attribute. */
public int limit() {
return limit;
}
static class Includes {
@SerializedName("Asset") List assets;
@SerializedName("Entry") List entries;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy