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

com.algolia.search.models.rules.SaveRuleResponse Maven / Gradle / Ivy

The newest version!
package com.algolia.search.models.rules;

import com.algolia.search.models.indexing.IndexingResponse;
import java.time.OffsetDateTime;

public class SaveRuleResponse extends IndexingResponse {
  public OffsetDateTime getUpdatedAt() {
    return updatedAt;
  }

  public SaveRuleResponse setUpdatedAt(OffsetDateTime updatedAt) {
    this.updatedAt = updatedAt;
    return this;
  }

  private OffsetDateTime updatedAt;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy