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

22 lines
346 B

package alipayopen
func (c *Client) GetAppId() string {
return c.config.appId
}
func (c *Client) GetAppKey() string {
return c.config.appKey
}
func (c *Client) GetAppRSA2() string {
return c.config.appRSA2
}
func (c *Client) GetAlipayRSA2() string {
return c.config.alipayRSA2
}
func (c *Client) GetAes() string {
return c.config.aes
}