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

import kotlin.Metadata;
import kotlin.jvm.internal.Intrinsics;

/* JADX INFO: compiled from: DocRenderer.kt */
/* JADX INFO: loaded from: classes.dex */
@Metadata(d1 = {"\u0000\"\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u000e\n\u0002\b\t\n\u0002\u0010\u000b\n\u0002\b\u0002\n\u0002\u0010\b\n\u0002\b\u0002\b\u0086\b\u0018\u00002\u00020\u0001B\u0015\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0003¢\u0006\u0002\u0010\u0005J\t\u0010\t\u001a\u00020\u0003HÆ\u0003J\t\u0010\n\u001a\u00020\u0003HÆ\u0003J\u001d\u0010\u000b\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u0003HÆ\u0001J\u0013\u0010\f\u001a\u00020\r2\b\u0010\u000e\u001a\u0004\u0018\u00010\u0001HÖ\u0003J\t\u0010\u000f\u001a\u00020\u0010HÖ\u0001J\t\u0010\u0011\u001a\u00020\u0003HÖ\u0001R\u0011\u0010\u0004\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\u0006\u0010\u0007R\u0011\u0010\u0002\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\b\u0010\u0007¨\u0006\u0012"}, d2 = {"Lcom/ifpdos/udi/sdk/service/doc/mkdocs/OpenSdkInfo;", "", "method", "", "api", "(Ljava/lang/String;Ljava/lang/String;)V", "getApi", "()Ljava/lang/String;", "getMethod", "component1", "component2", "copy", "equals", "", "other", "hashCode", "", "toString", "doc-mkdocs"}, k = 1, mv = {1, 6, 0}, xi = 48)
public final /* data */ class OpenSdkInfo {
    private final String api;
    private final String method;

    public static /* synthetic */ OpenSdkInfo copy$default(OpenSdkInfo openSdkInfo, String str, String str2, int i, Object obj) {
        if ((i & 1) != 0) {
            str = openSdkInfo.method;
        }
        if ((i & 2) != 0) {
            str2 = openSdkInfo.api;
        }
        return openSdkInfo.copy(str, str2);
    }

    /* JADX INFO: renamed from: component1, reason: from getter */
    public final String getMethod() {
        return this.method;
    }

    /* JADX INFO: renamed from: component2, reason: from getter */
    public final String getApi() {
        return this.api;
    }

    public final OpenSdkInfo copy(String method, String api) {
        Intrinsics.checkNotNullParameter(method, "method");
        Intrinsics.checkNotNullParameter(api, "api");
        return new OpenSdkInfo(method, api);
    }

    public boolean equals(Object other) {
        if (this == other) {
            return true;
        }
        if (!(other instanceof OpenSdkInfo)) {
            return false;
        }
        OpenSdkInfo openSdkInfo = (OpenSdkInfo) other;
        return Intrinsics.areEqual(this.method, openSdkInfo.method) && Intrinsics.areEqual(this.api, openSdkInfo.api);
    }

    public int hashCode() {
        return (this.method.hashCode() * 31) + this.api.hashCode();
    }

    public String toString() {
        return "OpenSdkInfo(method=" + this.method + ", api=" + this.api + ')';
    }

    public OpenSdkInfo(String method, String api) {
        Intrinsics.checkNotNullParameter(method, "method");
        Intrinsics.checkNotNullParameter(api, "api");
        this.method = method;
        this.api = api;
    }

    public final String getMethod() {
        return this.method;
    }

    public final String getApi() {
        return this.api;
    }
}
