com.algolia.search.models.synonyms.ClearSynonymsResponse Maven / Gradle / Ivy
The newest version!
package com.algolia.search.models.synonyms;
import com.algolia.search.models.indexing.IndexingResponse;
import java.time.OffsetDateTime;
public class ClearSynonymsResponse extends IndexingResponse {
public OffsetDateTime getUpdatedAt() {
return updatedAt;
}
public ClearSynonymsResponse setUpdatedAt(OffsetDateTime updatedAt) {
this.updatedAt = updatedAt;
return this;
}
private OffsetDateTime updatedAt;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy