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

com.kintone.client.api.app.GetDeployStatusRequest Maven / Gradle / Ivy

// Generated by delombok at Fri Jan 21 13:34:53 JST 2022
package com.kintone.client.api.app;

import com.kintone.client.api.KintoneRequest;
import java.util.List;

/**
 * A request object for Get Deploy Status API.
 */
public class GetDeployStatusRequest implements KintoneRequest {
    /**
     * The list of Apps to check the deploy statuses of (required).
     */
    private List apps;

    @java.lang.SuppressWarnings("all")
    public GetDeployStatusRequest() {
    }

    /**
     * The list of Apps to check the deploy statuses of (required).
     */
    @java.lang.SuppressWarnings("all")
    public List getApps() {
        return this.apps;
    }

    /**
     * The list of Apps to check the deploy statuses of (required).
     * @return {@code this}.
     */
    @java.lang.SuppressWarnings("all")
    public GetDeployStatusRequest setApps(final List apps) {
        this.apps = apps;
        return this;
    }

    @java.lang.Override
    @java.lang.SuppressWarnings("all")
    public boolean equals(final java.lang.Object o) {
        if (o == this) return true;
        if (!(o instanceof GetDeployStatusRequest)) return false;
        final GetDeployStatusRequest other = (GetDeployStatusRequest) o;
        if (!other.canEqual((java.lang.Object) this)) return false;
        final java.lang.Object this$apps = this.getApps();
        final java.lang.Object other$apps = other.getApps();
        if (this$apps == null ? other$apps != null : !this$apps.equals(other$apps)) return false;
        return true;
    }

    @java.lang.SuppressWarnings("all")
    protected boolean canEqual(final java.lang.Object other) {
        return other instanceof GetDeployStatusRequest;
    }

    @java.lang.Override
    @java.lang.SuppressWarnings("all")
    public int hashCode() {
        final int PRIME = 59;
        int result = 1;
        final java.lang.Object $apps = this.getApps();
        result = result * PRIME + ($apps == null ? 43 : $apps.hashCode());
        return result;
    }

    @java.lang.Override
    @java.lang.SuppressWarnings("all")
    public java.lang.String toString() {
        return "GetDeployStatusRequest(apps=" + this.getApps() + ")";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy