类com.alipay.api.response.AlipayMobilePublicGisGetResponse源码实例Demo

下面列出了怎么用com.alipay.api.response.AlipayMobilePublicGisGetResponse的API类实例代码及写法,或者点击链接到github查看源代码。


public Class<AlipayMobilePublicGisGetResponse> getResponseClass() {
	return AlipayMobilePublicGisGetResponse.class;
}
 

public Class<AlipayMobilePublicGisGetResponse> getResponseClass() {
	return AlipayMobilePublicGisGetResponse.class;
}
 

public Class<AlipayMobilePublicGisGetResponse> getResponseClass() {
	return AlipayMobilePublicGisGetResponse.class;
}
 

/**
 * 获取用户地理位置
 * 
 * @param appAuthToken
 * @param model
 * @return
 * @throws AlipayApiException
 */
public static AlipayMobilePublicGisGetResponse gisget(String appAuthToken, GetAddress model,AlipayConfig config) throws AlipayApiException {
	AlipayMobilePublicGisGetRequest request = new AlipayMobilePublicGisGetRequest();
	request.putOtherTextParam("app_auth_token", appAuthToken);
	String json = JSONObject.toJSONString(model);
	request.setBizContent(json);
	return AlipayClientFactory.getAlipayClientInstance(config).execute(request);
}
 
 类所在包
 类方法
 同包方法