package hr.com.port.ips.eracun.provider.mer.dto.common;

import java.util.List;

public class GetSubjectsReceivingInformationResponse {
    public String ResponseType;
    public ResponseContent ResponseContent;

    public static class ResponseContent {
        public List<SubjectReceivingInformation> SubjectReceivingInformation;
    }

    public static class SubjectReceivingInformation {
        public String VatNumber;
        public boolean IsReceiver;
        public String Email;
        public boolean IsPublicEntity;
    }
}