001package org.hl7.fhir.r4.model;
002
003import java.util.List;
004
005public interface Request {
006
007  public List<Identifier> getRequestIdentifier();
008  public boolean hasRequestIdentifier();
009  public int getRequestIdentifierMin();
010  public int getRequestIdentifierMax(); // 0 means that it is not implemented on this resource (or not able to be generated
011  
012  public List<Reference> getRequestDefinition();
013  public boolean hasRequestDefinition();
014  public int getRequestDefinitionMin();
015  public int getRequestDefinitionMax(); // 0 means that it is not implemented on this resource (or not able to be generated
016  
017}