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

com.algolia.search.models.mcm.RemoveUserIdResponse Maven / Gradle / Ivy

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

import java.io.Serializable;
import java.time.ZonedDateTime;

public class RemoveUserIdResponse implements Serializable {

  public String getUserId() {
    return userId;
  }

  public RemoveUserIdResponse setUserId(String userId) {
    this.userId = userId;
    return this;
  }

  public ZonedDateTime getDeletedAt() {
    return deletedAt;
  }

  public RemoveUserIdResponse setDeletedAt(ZonedDateTime deletedAt) {
    this.deletedAt = deletedAt;
    return this;
  }

  private String userId;
  private ZonedDateTime deletedAt;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy