com.alipay.api.response.AlipayMobilePublicMenuGetResponse Java Examples

The following examples show how to use com.alipay.api.response.AlipayMobilePublicMenuGetResponse. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: AlipayMobilePublicMenuGetRequest.java    From alipay-sdk-java-all with Apache License 2.0 4 votes vote down vote up
public Class<AlipayMobilePublicMenuGetResponse> getResponseClass() {
	return AlipayMobilePublicMenuGetResponse.class;
}
 
Example #2
Source File: AlipayMobilePublicMenuGetRequest.java    From alipay-sdk with Apache License 2.0 4 votes vote down vote up
public Class<AlipayMobilePublicMenuGetResponse> getResponseClass() {
	return AlipayMobilePublicMenuGetResponse.class;
}
 
Example #3
Source File: AlipayMobilePublicMenuGetRequest.java    From pay with Apache License 2.0 4 votes vote down vote up
public Class<AlipayMobilePublicMenuGetResponse> getResponseClass() {
	return AlipayMobilePublicMenuGetResponse.class;
}
 
Example #4
Source File: JwMenuAPI.java    From jeewx-api with Apache License 2.0 2 votes vote down vote up
/**
 * 查询菜单方法
 * 
 * @param appAuthToken
 * @return
 * @throws AlipayApiException
 */
public static AlipayMobilePublicMenuGetResponse menuGet(String appAuthToken,AlipayConfig config) throws AlipayApiException {
	AlipayMobilePublicMenuGetRequest request = new AlipayMobilePublicMenuGetRequest();
	request.putOtherTextParam("app_auth_token", appAuthToken);
	return AlipayClientFactory.getAlipayClientInstance(config).execute(request);
}