package com.seewo.sdk.internal.response.device;

import com.seewo.sdk.internal.model.SDKParsable;
import com.seewo.sdk.model.SDKHDMIOutFormat;

/* JADX INFO: loaded from: classes.dex */
public class RespGetHDMIOutFormat implements SDKParsable {
    public SDKHDMIOutFormat format;

    private RespGetHDMIOutFormat() {
    }

    public SDKHDMIOutFormat getFormat() {
        return this.format;
    }

    public void setFormat(SDKHDMIOutFormat sDKHDMIOutFormat) {
        this.format = sDKHDMIOutFormat;
    }

    public RespGetHDMIOutFormat(SDKHDMIOutFormat sDKHDMIOutFormat) {
        this();
        this.format = sDKHDMIOutFormat;
    }
}
