com.kintone.client.model.app.report.ReportId Maven / Gradle / Ivy
// Generated by delombok at Fri Jan 21 13:34:53 JST 2022
package com.kintone.client.model.app.report;
/**
* Created or updated graph ID returned by Update Graphs API.
*/
public final class ReportId {
/**
* The ID of the graph.
*/
private final long id;
@java.beans.ConstructorProperties({"id"})
@java.lang.SuppressWarnings("all")
public ReportId(final long id) {
this.id = id;
}
/**
* The ID of the graph.
*/
@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 ReportId)) return false;
final ReportId other = (ReportId) 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 "ReportId(id=" + this.getId() + ")";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy