States of a voucher?

if I have a voucher, what are the two "states" of the voucher. Like is it "free" or "unused" when I haven't used it yet and "used" or "redeemed" when I used it?

Example sentence:

"Susi doesn't have her tickets yet, but she has an unused (?) voucher."

"Susi got her tickets with the voucher, the voucher is now redeemed (?)."

It's actually hard to put it in an example sentence, as I need a voucher object in software development. Maybe it's more clear this way:

Voucher.State = Used;  
Voucher.State = Free;

Thanks for your help.


Solution 1:

To describe a voucher that has been used, "redeemed" is the perfect word for the job. "Used" would also work but that is a little less precise and a more everyday word.

To describe a voucher that has not been used, I don't believe there is one single word that fits perfectly. "Unused" works, but like "used" above it is not the most elegant or precise term. "Valid" could also work - and this would certainly describe that it was possible to use the voucher - but again it is not perfectly precise. The third possibility I'd suggest is "unredeemed"; this is slightly clumsy but it does perfectly reflect the status of the voucher.

Definitely avoid the use of "free". This indicates more that the voucher is available for no cost.

Solution 2:

How about valid paired with used or redeemed? This would allow ready expansion to things like invalid (for an erroneous code) and expired (if you use time-limited vouchers).

Your free is problematic in that it could mean free-of-charge (AKA gratis) or available, and it's more likely to suggest the former in the context of vouchers.

Your unused works as well.