
com.coveo.pushapiclient.BatchIdentityRecord Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of push-api-client.java Show documentation
Show all versions of push-api-client.java Show documentation
Coveo Push API client. See more on https://github.com/coveo/push-api-client.java
The newest version!
package com.coveo.pushapiclient;
import com.google.gson.JsonObject;
/**
* See [BatchIdentityBody](https://docs.coveo.com/en/139#batchidentitybody)
*/
public class BatchIdentityRecord {
private JsonObject[] members;
private JsonObject[] mappings;
private JsonObject[] deleted;
public BatchIdentityRecord(JsonObject[] members, JsonObject[] mappings, JsonObject[] deleted) {
this.members = members;
this.mappings = mappings;
this.deleted = deleted;
}
public JsonObject[] getMembers() {
return members;
}
public JsonObject[] getMappings() {
return mappings;
}
public JsonObject[] getDeleted() {
return deleted;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy