puzhibing
2022-09-29 e28d33c09405e246a2d75fcb1f69a9e8e9d911b8
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
package com.stylefeng.guns.modular.system.util.Tingg;
 
public enum TinggConfigEnum {
    /**
     * 获取token凭证的链接
     */
    TOKEN_URL("https://developer.tingg.africa/checkout/v2/custom/oauth/token"),
    /**
     * 客户端ID
     */
    CLIENT_ID("aca13421-32bd-4e11-b080-9cfe216bed15"),
    /**
     * 客户端密钥
     */
    CLIENT_SECRET("Ty1VjIWy1xwScv9GY3Vw7N0TIKhDTqrarEPlatGj"),
    /**
     * 发起支付请求url
     */
    CHECKOUT_URL("https://developer.tingg.africa/checkout/v2/custom/requests/initiate"),
    ;
 
 
    private String value;
 
    TinggConfigEnum(String value) {
        this.value = value;
    }
 
    public String getValue() {
        return value;
    }
}