/** PeriodoEmissao */
export interface PeriodoEmissao {
    /** xs:date */
    DataInicial: string;
    /** xs:date */
    DataFinal: string;
}
