declare enum CredentialSituation {
    /**
     * Liberada
     */
    RELEASED = "RELEASED",
    /**
     * Bloqueada
     */
    BLOCKED = "BLOCKED"
}
export = CredentialSituation;
