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

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

/* JADX INFO: loaded from: classes.dex */
public class RespByteArrayResult implements SDKParsable {
    private byte[] result;

    private RespByteArrayResult() {
    }

    public byte[] getResult() {
        return this.result;
    }

    public void setResult(byte[] bArr) {
        this.result = bArr;
    }

    public RespByteArrayResult(byte[] bArr) {
        this();
        this.result = bArr;
    }
}
