Skip to content

Instantly share code, notes, and snippets.

@gblmarquez
Created February 11, 2016 21:14
Show Gist options
  • Save gblmarquez/f7917b0275cc1c033f3a to your computer and use it in GitHub Desktop.
Save gblmarquez/f7917b0275cc1c033f3a to your computer and use it in GitHub Desktop.
Documentação TaxationType
/// Tributação dentro do mesmo município
WithinCity = 1,
/// Tributação fora do município
OutsideCity = 2,
/// Exportação
Export = 4,
/// Isento
Free = 8,
/// Imune
Immune = 16,
/// Exigibilidade suspensa por decisão judicial
SuspendedCourtDecision = 32,
/// Exigibilidade suspensa por procedimento administrativo
SuspendedAdministrativeProcedure = 64,
/// Tributação fora do município porém isento
OutsideCityFree = OutsideCity | Free,
/// Tributação fora do município porém imune
OutsideCityImmune = OutsideCity | Immune,
/// Tributação fora do município porém suspensa
OutsideCitySuspended = SuspendedCourtDecision | Free,
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment