package hr.com.port.ips.eracun.provider.mer.dto.document;

import hr.com.port.ips.eracun.provider.mer.dto.common.MerBaseRequest;

public class DocumentActionRequest extends MerBaseRequest {
    public Long ElectronicId;
    public String Apply; // "resend" | "cancel", mandatory

    public DocumentActionRequest(long username, String password, String companyId, String companyBu, String softwareId, Long electronicId, String apply) {
        super(username, password, companyId, companyBu, softwareId);
        this.ElectronicId = electronicId;
        this.Apply = apply;
    }
}