com.kintone.client.model.app.ActionId Maven / Gradle / Ivy
// Generated by delombok at Fri Jan 21 13:34:53 JST 2022
package com.kintone.client.model.app;
/**
* Created or updated Action ID returned by Update App Action Settings API.
*/
public final class ActionId {
/**
* The ID of the Action.
*/
private final long id;
@java.beans.ConstructorProperties({"id"})
@java.lang.SuppressWarnings("all")
public ActionId(final long id) {
this.id = id;
}
/**
* The ID of the Action.
*/
@java.lang.SuppressWarnings("all")
public long getId() {
return this.id;
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
public boolean equals(final java.lang.Object o) {
if (o == this) return true;
if (!(o instanceof ActionId)) return false;
final ActionId other = (ActionId) o;
if (this.getId() != other.getId()) return false;
return true;
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
public int hashCode() {
final int PRIME = 59;
int result = 1;
final long $id = this.getId();
result = result * PRIME + (int) ($id >>> 32 ^ $id);
return result;
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
public java.lang.String toString() {
return "ActionId(id=" + this.getId() + ")";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy