com.alipay.api.response.AlipayCloudCloudbaseFunctionApplyResponse 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.cloud.cloudbase.function.apply response.
*
* @author auto create
* @since 1.0, 2024-11-22 14:41:29
*/
public class AlipayCloudCloudbaseFunctionApplyResponse extends AlipayResponse {
private static final long serialVersionUID = 2332873168285416568L;
/**
* Trace ID
*/
@ApiField("biz_trace_id")
private String bizTraceId;
/**
* 执行耗时,单位为毫秒
*/
@ApiField("cost")
private Long cost;
/**
* 执行云函数后返回对应函数执行结果
*/
@ApiField("data")
private String data;
public void setBizTraceId(String bizTraceId) {
this.bizTraceId = bizTraceId;
}
public String getBizTraceId( ) {
return this.bizTraceId;
}
public void setCost(Long cost) {
this.cost = cost;
}
public Long getCost( ) {
return this.cost;
}
public void setData(String data) {
this.data = data;
}
public String getData( ) {
return this.data;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy