com.alipay.api.response.AlipayBossProdTestAproveQueryResponse Maven / Gradle / Ivy
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.boss.prod.test.aprove.query response.
*
* @author auto create
* @since 1.0, 2024-07-01 15:43:12
*/
public class AlipayBossProdTestAproveQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 7193965991383331347L;
/**
* test
*/
@ApiField("out_open_id")
private String outOpenId;
/**
* test
*/
@ApiField("out_uid")
private String outUid;
public void setOutOpenId(String outOpenId) {
this.outOpenId = outOpenId;
}
public String getOutOpenId( ) {
return this.outOpenId;
}
public void setOutUid(String outUid) {
this.outUid = outUid;
}
public String getOutUid( ) {
return this.outUid;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy