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.
wechatpayopen/get.go

30 lines
509 B

package wechatpayopen
func (c *Client) GetSpAppid() string {
return c.config.spAppid
}
func (c *Client) GetSpMchId() string {
return c.config.spMchId
}
func (c *Client) GetSubAppid() string {
return c.config.subAppid
}
func (c *Client) GetSubMchId() string {
return c.config.subMchId
}
func (c *Client) GetMchSslKey() string {
return c.config.mchSslKey
}
func (c *Client) GetMchSslSerialNo() string {
return c.config.mchSslSerialNo
}
func (c *Client) GetApiV3() string {
return c.config.apiV3
}