-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconst.go
40 lines (32 loc) · 1.09 KB
/
const.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package iyzigo
const (
timeFormat = "20060102150405.0000"
authorization = "Authorization"
random_header_name = "X-Iyzi-Rnd"
iyziws_header_name = "IYZWS "
colon = ":"
LocaleTr = "tr"
LocaleEn = "en"
PaymentChannelMobile = "MOBILE"
PaymentChannelWeb = "WEB"
PaymentChannelMobileWeb = "MOBILE_WEB"
PaymentChannelMobileIos = "MOBILE_IOS"
PaymentChannelMobileAndroid = "MOBILE_ANDROID"
PaymentChannelMobileWindows = "MOBILE_WINDOWS"
PaymentChannelMobileTablet = "MOBILE_TABLET"
PaymentChannelMobilePhone = "MOBILE_PHONE"
PaymentGroupProduct = "PRODUCT"
PaymentGroupListing = "LISTING"
PaymentGroupSubscription = "SUBSCRIPTION"
BasketItemTypePhysical = "PHYSICAL"
BasketItemTypeVirtual = "VIRTUAL"
CurrencyTry = "TRY"
CurrencyEur = "EUR"
CurrencyUsd = "USD"
CurrencyGbp = "GBP"
CurrencyIrr = "IRR"
SubMerchantTypePersonal = "PERSONAL"
SubMerchantTypePrivateCompany = "PRIVATE_COMPANY"
SubMerchantTypeLimitedOrJointStockCompany = "LIMITED_OR_JOINT_STOCK_COMPANY"
F_StatusSuccess = "success"
)