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

com.algolia.search.models.indexing.UpdateObjectResponse Maven / Gradle / Ivy

There is a newer version: 3.16.9
Show newest version
package com.algolia.search.models.indexing;

import java.time.ZonedDateTime;

public class UpdateObjectResponse extends IndexingResponse {

  public String getObjectID() {
    return objectID;
  }

  public UpdateObjectResponse setObjectID(String objectID) {
    this.objectID = objectID;
    return this;
  }

  public ZonedDateTime getUpdatedAt() {
    return updatedAt;
  }

  public UpdateObjectResponse setUpdatedAt(ZonedDateTime updatedAt) {
    this.updatedAt = updatedAt;
    return this;
  }

  private String objectID;
  private ZonedDateTime updatedAt;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy