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

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

package com.contentful.java.cda;

import java.util.Set;

/**
 * Represents results for synchronization via the Sync API.
 */
public class SynchronizedSpace extends ArrayResource {
  String nextPageUrl;

  String nextSyncUrl;

  Set deletedAssets;

  Set deletedEntries;

  /**
   * @return url to the next sync.
   */
  public String nextSyncUrl() {
    return nextSyncUrl;
  }

  /**
   * @return url of next page, containing more data.
   */
  String nextPageUrl() {
    return nextPageUrl;
  }

  /**
   * @return deleted asset ids.
   */
  public Set deletedAssets() {
    return deletedAssets;
  }

  /**
   * @return deleted entry ids.
   */
  public Set deletedEntries() {
    return deletedEntries;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy