All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tencentcloudapi.scf.v20180416.models.Result Maven / Gradle / Ivy

There is a newer version: 3.1.1093
Show newest version
/*
 * Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.tencentcloudapi.scf.v20180416.models;

import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;

public class Result extends AbstractModel{

    /**
    * 表示执行过程中的日志输出,异步调用返回为空
    */
    @SerializedName("Log")
    @Expose
    private String Log;

    /**
    * 表示执行函数的返回,异步调用返回为空
    */
    @SerializedName("RetMsg")
    @Expose
    private String RetMsg;

    /**
    * 表示执行函数的错误返回信息,异步调用返回为空
    */
    @SerializedName("ErrMsg")
    @Expose
    private String ErrMsg;

    /**
    * 执行函数时的内存大小,单位为Byte,异步调用返回为空
    */
    @SerializedName("MemUsage")
    @Expose
    private Long MemUsage;

    /**
    * 表示执行函数的耗时,单位是毫秒,异步调用返回为空
    */
    @SerializedName("Duration")
    @Expose
    private Float Duration;

    /**
    * 表示函数的计费耗时,单位是毫秒,异步调用返回为空
    */
    @SerializedName("BillDuration")
    @Expose
    private Long BillDuration;

    /**
    * 此次函数执行的Id
    */
    @SerializedName("FunctionRequestId")
    @Expose
    private String FunctionRequestId;

    /**
    * 请求 Invoke 接口,该参数已弃用。请求 InvokeFunction 接口,该参数值为请求执行[状态码](https://cloud.tencent.com/document/product/583/42611)。
    */
    @SerializedName("InvokeResult")
    @Expose
    private Long InvokeResult;

    /**
     * Get 表示执行过程中的日志输出,异步调用返回为空 
     * @return Log 表示执行过程中的日志输出,异步调用返回为空
     */
    public String getLog() {
        return this.Log;
    }

    /**
     * Set 表示执行过程中的日志输出,异步调用返回为空
     * @param Log 表示执行过程中的日志输出,异步调用返回为空
     */
    public void setLog(String Log) {
        this.Log = Log;
    }

    /**
     * Get 表示执行函数的返回,异步调用返回为空 
     * @return RetMsg 表示执行函数的返回,异步调用返回为空
     */
    public String getRetMsg() {
        return this.RetMsg;
    }

    /**
     * Set 表示执行函数的返回,异步调用返回为空
     * @param RetMsg 表示执行函数的返回,异步调用返回为空
     */
    public void setRetMsg(String RetMsg) {
        this.RetMsg = RetMsg;
    }

    /**
     * Get 表示执行函数的错误返回信息,异步调用返回为空 
     * @return ErrMsg 表示执行函数的错误返回信息,异步调用返回为空
     */
    public String getErrMsg() {
        return this.ErrMsg;
    }

    /**
     * Set 表示执行函数的错误返回信息,异步调用返回为空
     * @param ErrMsg 表示执行函数的错误返回信息,异步调用返回为空
     */
    public void setErrMsg(String ErrMsg) {
        this.ErrMsg = ErrMsg;
    }

    /**
     * Get 执行函数时的内存大小,单位为Byte,异步调用返回为空 
     * @return MemUsage 执行函数时的内存大小,单位为Byte,异步调用返回为空
     */
    public Long getMemUsage() {
        return this.MemUsage;
    }

    /**
     * Set 执行函数时的内存大小,单位为Byte,异步调用返回为空
     * @param MemUsage 执行函数时的内存大小,单位为Byte,异步调用返回为空
     */
    public void setMemUsage(Long MemUsage) {
        this.MemUsage = MemUsage;
    }

    /**
     * Get 表示执行函数的耗时,单位是毫秒,异步调用返回为空 
     * @return Duration 表示执行函数的耗时,单位是毫秒,异步调用返回为空
     */
    public Float getDuration() {
        return this.Duration;
    }

    /**
     * Set 表示执行函数的耗时,单位是毫秒,异步调用返回为空
     * @param Duration 表示执行函数的耗时,单位是毫秒,异步调用返回为空
     */
    public void setDuration(Float Duration) {
        this.Duration = Duration;
    }

    /**
     * Get 表示函数的计费耗时,单位是毫秒,异步调用返回为空 
     * @return BillDuration 表示函数的计费耗时,单位是毫秒,异步调用返回为空
     */
    public Long getBillDuration() {
        return this.BillDuration;
    }

    /**
     * Set 表示函数的计费耗时,单位是毫秒,异步调用返回为空
     * @param BillDuration 表示函数的计费耗时,单位是毫秒,异步调用返回为空
     */
    public void setBillDuration(Long BillDuration) {
        this.BillDuration = BillDuration;
    }

    /**
     * Get 此次函数执行的Id 
     * @return FunctionRequestId 此次函数执行的Id
     */
    public String getFunctionRequestId() {
        return this.FunctionRequestId;
    }

    /**
     * Set 此次函数执行的Id
     * @param FunctionRequestId 此次函数执行的Id
     */
    public void setFunctionRequestId(String FunctionRequestId) {
        this.FunctionRequestId = FunctionRequestId;
    }

    /**
     * Get 请求 Invoke 接口,该参数已弃用。请求 InvokeFunction 接口,该参数值为请求执行[状态码](https://cloud.tencent.com/document/product/583/42611)。 
     * @return InvokeResult 请求 Invoke 接口,该参数已弃用。请求 InvokeFunction 接口,该参数值为请求执行[状态码](https://cloud.tencent.com/document/product/583/42611)。
     */
    public Long getInvokeResult() {
        return this.InvokeResult;
    }

    /**
     * Set 请求 Invoke 接口,该参数已弃用。请求 InvokeFunction 接口,该参数值为请求执行[状态码](https://cloud.tencent.com/document/product/583/42611)。
     * @param InvokeResult 请求 Invoke 接口,该参数已弃用。请求 InvokeFunction 接口,该参数值为请求执行[状态码](https://cloud.tencent.com/document/product/583/42611)。
     */
    public void setInvokeResult(Long InvokeResult) {
        this.InvokeResult = InvokeResult;
    }

    public Result() {
    }

    /**
     * NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
     *       and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
     */
    public Result(Result source) {
        if (source.Log != null) {
            this.Log = new String(source.Log);
        }
        if (source.RetMsg != null) {
            this.RetMsg = new String(source.RetMsg);
        }
        if (source.ErrMsg != null) {
            this.ErrMsg = new String(source.ErrMsg);
        }
        if (source.MemUsage != null) {
            this.MemUsage = new Long(source.MemUsage);
        }
        if (source.Duration != null) {
            this.Duration = new Float(source.Duration);
        }
        if (source.BillDuration != null) {
            this.BillDuration = new Long(source.BillDuration);
        }
        if (source.FunctionRequestId != null) {
            this.FunctionRequestId = new String(source.FunctionRequestId);
        }
        if (source.InvokeResult != null) {
            this.InvokeResult = new Long(source.InvokeResult);
        }
    }


    /**
     * Internal implementation, normal users should not use it.
     */
    public void toMap(HashMap map, String prefix) {
        this.setParamSimple(map, prefix + "Log", this.Log);
        this.setParamSimple(map, prefix + "RetMsg", this.RetMsg);
        this.setParamSimple(map, prefix + "ErrMsg", this.ErrMsg);
        this.setParamSimple(map, prefix + "MemUsage", this.MemUsage);
        this.setParamSimple(map, prefix + "Duration", this.Duration);
        this.setParamSimple(map, prefix + "BillDuration", this.BillDuration);
        this.setParamSimple(map, prefix + "FunctionRequestId", this.FunctionRequestId);
        this.setParamSimple(map, prefix + "InvokeResult", this.InvokeResult);

    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy