You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wechatpayapiv3/get.go

36 lines
598 B

2 years ago
package wechatpayapiv3
2 years ago
import "go.dtapp.net/golog"
2 years ago
func (c *Client) GetAppId() string {
2 years ago
return c.config.appId
}
func (c *Client) GetAppSecret() string {
return c.config.appSecret
2 years ago
}
func (c *Client) GetMchId() string {
2 years ago
return c.config.mchId
}
func (c *Client) GetAesKey() string {
return c.config.aesKey
}
func (c *Client) GetApiV3() string {
return c.config.apiV3
2 years ago
}
func (c *Client) GetMchSslKey() string {
2 years ago
return c.config.mchSslKey
2 years ago
}
func (c *Client) GetMchSslSerialNo() string {
2 years ago
return c.config.mchSslSerialNo
2 years ago
}
2 years ago
2 years ago
func (c *Client) GetLog() *golog.ApiClient {
return c.log.client
2 years ago
}