package com.seewo.libmyousdk.model;

/* JADX INFO: loaded from: classes.dex */
public class AppUpdateInfo extends IUpdateInfo {
    private boolean delta;
    private String fileMd5;
    private String fileName;
    private int fileSize;
    private String fullFileMd5;
    private boolean isForceUpdate;
    private boolean isSilentDown;
    private boolean isTest;
    private String name;
    private String updateDependency;
    private String updateDesc;
    private String updateType;
    private int versionCode;
    private String versionName;

    public AppUpdateInfo(String str, boolean z, int i2, boolean z2, String str2, String str3, int i3, String str4, boolean z3, String str5, String str6, String str7, String str8, boolean z4, boolean z5, String str9) {
        this.updateDependency = str;
        this.delta = z;
        this.versionCode = i2;
        this.isTest = z2;
        this.downloadUrl = str2;
        this.versionName = str3;
        this.fileSize = i3;
        this.updateDesc = str4;
        this.isForceUpdate = z3;
        this.fileMd5 = str5;
        this.name = str7;
        this.fileName = str8;
        this.isSilentDown = z4;
        this.hasUpdate = z5;
        this.fullFileMd5 = str9;
    }

    public boolean equals(Object obj) {
        if (!(obj instanceof AppUpdateInfo)) {
            return false;
        }
        AppUpdateInfo appUpdateInfo = (AppUpdateInfo) obj;
        return appUpdateInfo.getName().equals(getName()) && appUpdateInfo.getFileMd5().equals(getFileMd5());
    }

    public String getFileMd5() {
        return this.fileMd5;
    }

    public String getFileName() {
        return this.fileName;
    }

    public int getFileSize() {
        return this.fileSize;
    }

    public String getFullFileMd5() {
        return this.fullFileMd5;
    }

    public String getName() {
        return this.name;
    }

    public String getUpdateDependency() {
        return this.updateDependency;
    }

    public String getUpdateDesc() {
        return this.updateDesc;
    }

    public int getVersionCode() {
        return this.versionCode;
    }

    public String getVersionName() {
        return this.versionName;
    }

    public boolean isDelta() {
        return this.delta;
    }

    public boolean isForceUpdate() {
        return this.isForceUpdate;
    }

    public boolean isSilentDown() {
        return this.isSilentDown;
    }

    public boolean isTest() {
        return this.isTest;
    }
}
