com.alipay.api.response.AlipayPlatformUseridGetResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
alipay-sdk project for Spring Project
The newest version!
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.platform.userid.get response.
*
* @author auto create
* @since 1.0, 2016-07-29 19:56:03
*/
public class AlipayPlatformUseridGetResponse extends AlipayResponse {
private static final long serialVersionUID = 2485881157486376829L;
/**
* id字典,key为openId,value为userId
*/
@ApiField("dict")
private String dict;
public void setDict(String dict) {
this.dict = dict;
}
public String getDict( ) {
return this.dict;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy