com.alipay.api.domain.AlipayCloudCloudbaseFunctionExecutionQueryModel Maven / Gradle / Ivy
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 查询云函数执行记录列表
*
* @author auto create
* @since 1.0, 2023-08-21 20:49:19
*/
public class AlipayCloudCloudbaseFunctionExecutionQueryModel extends AlipayObject {
private static final long serialVersionUID = 3761626229749181229L;
/**
* 小程序id
*/
@ApiField("biz_app_id")
private String bizAppId;
/**
* 环境id
*/
@ApiField("biz_env_id")
private String bizEnvId;
/**
* 结束时间
*/
@ApiField("end")
private String end;
/**
* 云函数名称
*/
@ApiField("function_name")
private String functionName;
/**
* 页码
*/
@ApiField("page_index")
private Long pageIndex;
/**
* 每页数量
*/
@ApiField("page_size")
private Long pageSize;
/**
* 开始时间
*/
@ApiField("start")
private String start;
/**
* 执行状态
- SUCCESS
- FAIL
- DOING
*/
@ApiField("status")
private String status;
/**
* 是否为测试记录
*/
@ApiField("test")
private Boolean test;
/**
* trace ID
*/
@ApiField("trace_id")
private String traceId;
public String getBizAppId() {
return this.bizAppId;
}
public void setBizAppId(String bizAppId) {
this.bizAppId = bizAppId;
}
public String getBizEnvId() {
return this.bizEnvId;
}
public void setBizEnvId(String bizEnvId) {
this.bizEnvId = bizEnvId;
}
public String getEnd() {
return this.end;
}
public void setEnd(String end) {
this.end = end;
}
public String getFunctionName() {
return this.functionName;
}
public void setFunctionName(String functionName) {
this.functionName = functionName;
}
public Long getPageIndex() {
return this.pageIndex;
}
public void setPageIndex(Long pageIndex) {
this.pageIndex = pageIndex;
}
public Long getPageSize() {
return this.pageSize;
}
public void setPageSize(Long pageSize) {
this.pageSize = pageSize;
}
public String getStart() {
return this.start;
}
public void setStart(String start) {
this.start = start;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public Boolean getTest() {
return this.test;
}
public void setTest(Boolean test) {
this.test = test;
}
public String getTraceId() {
return this.traceId;
}
public void setTraceId(String traceId) {
this.traceId = traceId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy