
com.contentful.java.cda.SynchronizedSpace 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 java.util.Set;
/** Represents results for synchronization via the Sync API. */
public class SynchronizedSpace extends ArrayResource {
String nextPageUrl;
String nextSyncUrl;
Set deletedAssets;
Set deletedEntries;
/** Next Sync URL */
public String nextSyncUrl() {
return nextSyncUrl;
}
/** Url of next page, containing more data. */
String nextPageUrl() {
return nextPageUrl;
}
/** Deleted asset ids. */
public Set deletedAssets() {
return deletedAssets;
}
/** Deleted entry ids. */
public Set deletedEntries() {
return deletedEntries;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy