package hr.com.port.ips.eracun.provider.mer.dto.common;

import hr.com.port.ips.eracun.provider.mer.dto.common.MerBaseRequest;
import hr.com.port.ips.eracun.provider.mer.enums.MerIdentifierType;

public class CheckIdentifierRequest extends MerBaseRequest {
    private final MerIdentifierType identifierType;
    private final String identifierValue;

    public CheckIdentifierRequest(
            long username,
            String password,
            String companyId,
            String companyBu,
            String softwareId,
            MerIdentifierType identifierType,
            String identifierValue
    ) {
        super(username, password, companyId, companyBu, softwareId);
        this.identifierType = identifierType;
        this.identifierValue = identifierValue;
    }

    public MerIdentifierType getIdentifierType() { return identifierType; }
    public String getIdentifierValue() { return identifierValue; }
}