-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconstants.go
24 lines (20 loc) · 936 Bytes
/
constants.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package amiando
const DateFormat = "2006-01-02T15:04:05"
const (
PaymentNew PaymentStatus = "new"
PaymentAuthorized PaymentStatus = "authorized"
PaymentPaid PaymentStatus = "paid"
PaymentDisbursed PaymentStatus = "disbursed"
PaymentCancelled PaymentStatus = "cancelled"
)
const (
BadgeTicket TicketType = "com.amiando.ticket.type.Badge" // Means that the ticket is a badge.
ETicketTicket TicketType = "com.amiando.ticket.type.ETicket" // Means that the ticket will be sent via email.
PaperTicket TicketType = "com.amiando.ticket.type.Paper" // Means that the ticket is a confirmation.
ConfirmationTicket TicketType = "com.amiando.ticket.type.Confirmation" // Means that the payment was bought using prepayment.
OnSiteTicket TicketType = "com.amiando.ticket.type.OnSite" // Means that the ticket was bought via EasyEntry.
)
const (
Male = 1
Female = 2
)