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

io.kubernetes.client.openapi.models.CoreV1EventSeriesFluentImpl Maven / Gradle / Ivy

There is a newer version: 22.0.0
Show newest version
package io.kubernetes.client.openapi.models;

import java.lang.Integer;
import java.time.OffsetDateTime;
import com.google.gson.annotations.SerializedName;
import io.kubernetes.client.fluent.BaseFluent;
import java.lang.Object;
import java.lang.Boolean;

public class CoreV1EventSeriesFluentImpl> extends io.kubernetes.client.fluent.BaseFluent implements CoreV1EventSeriesFluent {

    private Integer count;
    private OffsetDateTime lastObservedTime;

    public CoreV1EventSeriesFluentImpl() { 
    }


    public CoreV1EventSeriesFluentImpl(CoreV1EventSeries instance) { 
        this.withCount(instance.getCount());

        this.withLastObservedTime(instance.getLastObservedTime());

    }


    public Integer getCount() {
        return this.count;
    }

    public A withCount(Integer count) {
        this.count=count; return (A) this;
    }

    public Boolean hasCount() {
        return this.count != null;
    }

    public OffsetDateTime getLastObservedTime() {
        return this.lastObservedTime;
    }

    public A withLastObservedTime(OffsetDateTime lastObservedTime) {
        this.lastObservedTime=lastObservedTime; return (A) this;
    }

    public Boolean hasLastObservedTime() {
        return this.lastObservedTime != null;
    }

    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        CoreV1EventSeriesFluentImpl that = (CoreV1EventSeriesFluentImpl) o;
        if (count != null ? !count.equals(that.count) :that.count != null) return false;
        if (lastObservedTime != null ? !lastObservedTime.equals(that.lastObservedTime) :that.lastObservedTime != null) return false;
        return true;
    }

    public int hashCode() {
        return java.util.Objects.hash(count,  lastObservedTime,  super.hashCode());
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy