All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.contentful.java.cda.CDAArray Maven / Gradle / Ivy

There is a newer version: 9.1.0
Show newest version
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