package com.ifpdos.udi.sdk.service.doc.mkdocs;

import com.ifpdos.udi.sdk.kotlin.comment.parser.CommentDetails;
import com.ifpdos.udi.sdk.service.doc.base.Uri;
import d.b.a.a.a;
import g.h0.c.l;
import g.i;

/* JADX INFO: compiled from: MkDocsGenerator.kt */
/* JADX INFO: loaded from: classes.dex */
@i
public final class ApiDefine {
    private final Uri alias;
    private final CommentDetails comment;
    private final RequestDefine get;
    private final NotifyDefine notify;
    private final RequestDefine post;
    private final String summary;
    private final Uri uri;

    public ApiDefine(String str, Uri uri, Uri uri2, RequestDefine requestDefine, RequestDefine requestDefine2, NotifyDefine notifyDefine, CommentDetails commentDetails) {
        l.f(str, "summary");
        l.f(uri, "uri");
        l.f(commentDetails, "comment");
        this.summary = str;
        this.uri = uri;
        this.alias = uri2;
        this.get = requestDefine;
        this.post = requestDefine2;
        this.notify = notifyDefine;
        this.comment = commentDetails;
    }

    public static /* synthetic */ ApiDefine copy$default(ApiDefine apiDefine, String str, Uri uri, Uri uri2, RequestDefine requestDefine, RequestDefine requestDefine2, NotifyDefine notifyDefine, CommentDetails commentDetails, int i2, Object obj) {
        if ((i2 & 1) != 0) {
            str = apiDefine.summary;
        }
        if ((i2 & 2) != 0) {
            uri = apiDefine.uri;
        }
        Uri uri3 = uri;
        if ((i2 & 4) != 0) {
            uri2 = apiDefine.alias;
        }
        Uri uri4 = uri2;
        if ((i2 & 8) != 0) {
            requestDefine = apiDefine.get;
        }
        RequestDefine requestDefine3 = requestDefine;
        if ((i2 & 16) != 0) {
            requestDefine2 = apiDefine.post;
        }
        RequestDefine requestDefine4 = requestDefine2;
        if ((i2 & 32) != 0) {
            notifyDefine = apiDefine.notify;
        }
        NotifyDefine notifyDefine2 = notifyDefine;
        if ((i2 & 64) != 0) {
            commentDetails = apiDefine.comment;
        }
        return apiDefine.copy(str, uri3, uri4, requestDefine3, requestDefine4, notifyDefine2, commentDetails);
    }

    public final String component1() {
        return this.summary;
    }

    public final Uri component2() {
        return this.uri;
    }

    public final Uri component3() {
        return this.alias;
    }

    public final RequestDefine component4() {
        return this.get;
    }

    public final RequestDefine component5() {
        return this.post;
    }

    public final NotifyDefine component6() {
        return this.notify;
    }

    public final CommentDetails component7() {
        return this.comment;
    }

    public final ApiDefine copy(String str, Uri uri, Uri uri2, RequestDefine requestDefine, RequestDefine requestDefine2, NotifyDefine notifyDefine, CommentDetails commentDetails) {
        l.f(str, "summary");
        l.f(uri, "uri");
        l.f(commentDetails, "comment");
        return new ApiDefine(str, uri, uri2, requestDefine, requestDefine2, notifyDefine, commentDetails);
    }

    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof ApiDefine)) {
            return false;
        }
        ApiDefine apiDefine = (ApiDefine) obj;
        return l.a(this.summary, apiDefine.summary) && l.a(this.uri, apiDefine.uri) && l.a(this.alias, apiDefine.alias) && l.a(this.get, apiDefine.get) && l.a(this.post, apiDefine.post) && l.a(this.notify, apiDefine.notify) && l.a(this.comment, apiDefine.comment);
    }

    public final Uri getAlias() {
        return this.alias;
    }

    public final CommentDetails getComment() {
        return this.comment;
    }

    public final RequestDefine getGet() {
        return this.get;
    }

    public final NotifyDefine getNotify() {
        return this.notify;
    }

    public final RequestDefine getPost() {
        return this.post;
    }

    public final String getSummary() {
        return this.summary;
    }

    public final Uri getUri() {
        return this.uri;
    }

    public int hashCode() {
        int iHashCode = (this.uri.hashCode() + (this.summary.hashCode() * 31)) * 31;
        Uri uri = this.alias;
        int iHashCode2 = (iHashCode + (uri == null ? 0 : uri.hashCode())) * 31;
        RequestDefine requestDefine = this.get;
        int iHashCode3 = (iHashCode2 + (requestDefine == null ? 0 : requestDefine.hashCode())) * 31;
        RequestDefine requestDefine2 = this.post;
        int iHashCode4 = (iHashCode3 + (requestDefine2 == null ? 0 : requestDefine2.hashCode())) * 31;
        NotifyDefine notifyDefine = this.notify;
        return this.comment.hashCode() + ((iHashCode4 + (notifyDefine != null ? notifyDefine.hashCode() : 0)) * 31);
    }

    public String toString() {
        StringBuilder sbB = a.B("ApiDefine(summary=");
        sbB.append(this.summary);
        sbB.append(", uri=");
        sbB.append(this.uri);
        sbB.append(", alias=");
        sbB.append(this.alias);
        sbB.append(", get=");
        sbB.append(this.get);
        sbB.append(", post=");
        sbB.append(this.post);
        sbB.append(", notify=");
        sbB.append(this.notify);
        sbB.append(", comment=");
        sbB.append(this.comment);
        sbB.append(')');
        return sbB.toString();
    }
}
