com.alipay.api.response.AlipayOpenAittestOpenapiQueryResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.open.aittest.openapi.query response.
*
* @author auto create
* @since 1.0, 2023-10-09 20:06:46
*/
public class AlipayOpenAittestOpenapiQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 2697613581118215375L;
/**
* 测试 demo 响应内容
*/
@ApiField("demo_content")
private String demoContent;
/**
* 调用 demo 接口响应
*/
@ApiField("demo_msg")
private String demoMsg;
/**
* ID
*/
@ApiField("id")
private String id;
public void setDemoContent(String demoContent) {
this.demoContent = demoContent;
}
public String getDemoContent( ) {
return this.demoContent;
}
public void setDemoMsg(String demoMsg) {
this.demoMsg = demoMsg;
}
public String getDemoMsg( ) {
return this.demoMsg;
}
public void setId(String id) {
this.id = id;
}
public String getId( ) {
return this.id;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy