View Javadoc
1   package com.srv4pos.server.api.posplus;
2   
3   /**
4    * The type of receipt print.
5    * @author sebastian
6    *
7    */
8   public enum PrintType {
9       /**
10       * Normal receipt.
11       */
12      Normal,
13      /**
14       * Receipt copy.
15       */
16      Copy,
17      /**
18       * Pro forma.
19       */
20      Proforma
21  }