Created
February 11, 2016 21:14
-
-
Save gblmarquez/f7917b0275cc1c033f3a to your computer and use it in GitHub Desktop.
Documentação TaxationType
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// 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