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

io.kubernetes.client.models.V1beta1ExternalDocumentationFluentImpl Maven / Gradle / Ivy

package io.kubernetes.client.models;

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

public class V1beta1ExternalDocumentationFluentImpl> extends io.kubernetes.client.fluent.BaseFluent implements V1beta1ExternalDocumentationFluent{

    private String description;
    private String url;

    public V1beta1ExternalDocumentationFluentImpl(){
    }
    public V1beta1ExternalDocumentationFluentImpl(V1beta1ExternalDocumentation instance){
            this.withDescription(instance.getDescription());

            this.withUrl(instance.getUrl());

    }

    public String getDescription(){
            return this.description;
    }

    public A withDescription(String description){
            this.description=description; return (A) this;
    }

    public Boolean hasDescription(){
            return this.description != null;
    }

    public String getUrl(){
            return this.url;
    }

    public A withUrl(String url){
            this.url=url; return (A) this;
    }

    public Boolean hasUrl(){
            return this.url != null;
    }

    public boolean equals(Object o){
            if (this == o) return true;
            if (o == null || getClass() != o.getClass()) return false;
            if (!super.equals(o)) return false;
            V1beta1ExternalDocumentationFluentImpl that = (V1beta1ExternalDocumentationFluentImpl) o;
            if (description != null ? !description.equals(that.description) :that.description != null) return false;
            if (url != null ? !url.equals(that.url) :that.url != null) return false;
            return true;
    }




}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy