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

com.tencentcloudapi.cr.v20180321.models.ApplyCreditAuditRequest Maven / Gradle / Ivy

There is a newer version: 3.1.894
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.cr.v20180321.models;

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

public class ApplyCreditAuditRequest extends AbstractModel{

    /**
    * 模块名,本接口取值:Credit
    */
    @SerializedName("Module")
    @Expose
    private String Module;

    /**
    * 操作名,本接口取值:Apply
    */
    @SerializedName("Operation")
    @Expose
    private String Operation;

    /**
    * 实例ID
    */
    @SerializedName("InstId")
    @Expose
    private String InstId;

    /**
    * 产品ID,形如P******。
    */
    @SerializedName("ProductId")
    @Expose
    private String ProductId;

    /**
    * 信审任务ID,同一天内,同一InstId下,同一CaseId只能调用一次。
    */
    @SerializedName("CaseId")
    @Expose
    private String CaseId;

    /**
    * 回调地址
    */
    @SerializedName("CallbackUrl")
    @Expose
    private String CallbackUrl;

    /**
    * JSON格式的业务字段。
    */
    @SerializedName("Data")
    @Expose
    private String Data;

    /**
     * Get 模块名,本接口取值:Credit 
     * @return Module 模块名,本接口取值:Credit
     */
    public String getModule() {
        return this.Module;
    }

    /**
     * Set 模块名,本接口取值:Credit
     * @param Module 模块名,本接口取值:Credit
     */
    public void setModule(String Module) {
        this.Module = Module;
    }

    /**
     * Get 操作名,本接口取值:Apply 
     * @return Operation 操作名,本接口取值:Apply
     */
    public String getOperation() {
        return this.Operation;
    }

    /**
     * Set 操作名,本接口取值:Apply
     * @param Operation 操作名,本接口取值:Apply
     */
    public void setOperation(String Operation) {
        this.Operation = Operation;
    }

    /**
     * Get 实例ID 
     * @return InstId 实例ID
     */
    public String getInstId() {
        return this.InstId;
    }

    /**
     * Set 实例ID
     * @param InstId 实例ID
     */
    public void setInstId(String InstId) {
        this.InstId = InstId;
    }

    /**
     * Get 产品ID,形如P******。 
     * @return ProductId 产品ID,形如P******。
     */
    public String getProductId() {
        return this.ProductId;
    }

    /**
     * Set 产品ID,形如P******。
     * @param ProductId 产品ID,形如P******。
     */
    public void setProductId(String ProductId) {
        this.ProductId = ProductId;
    }

    /**
     * Get 信审任务ID,同一天内,同一InstId下,同一CaseId只能调用一次。 
     * @return CaseId 信审任务ID,同一天内,同一InstId下,同一CaseId只能调用一次。
     */
    public String getCaseId() {
        return this.CaseId;
    }

    /**
     * Set 信审任务ID,同一天内,同一InstId下,同一CaseId只能调用一次。
     * @param CaseId 信审任务ID,同一天内,同一InstId下,同一CaseId只能调用一次。
     */
    public void setCaseId(String CaseId) {
        this.CaseId = CaseId;
    }

    /**
     * Get 回调地址 
     * @return CallbackUrl 回调地址
     */
    public String getCallbackUrl() {
        return this.CallbackUrl;
    }

    /**
     * Set 回调地址
     * @param CallbackUrl 回调地址
     */
    public void setCallbackUrl(String CallbackUrl) {
        this.CallbackUrl = CallbackUrl;
    }

    /**
     * Get JSON格式的业务字段。 
     * @return Data JSON格式的业务字段。
     */
    public String getData() {
        return this.Data;
    }

    /**
     * Set JSON格式的业务字段。
     * @param Data JSON格式的业务字段。
     */
    public void setData(String Data) {
        this.Data = Data;
    }

    public ApplyCreditAuditRequest() {
    }

    /**
     * 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 ApplyCreditAuditRequest(ApplyCreditAuditRequest source) {
        if (source.Module != null) {
            this.Module = new String(source.Module);
        }
        if (source.Operation != null) {
            this.Operation = new String(source.Operation);
        }
        if (source.InstId != null) {
            this.InstId = new String(source.InstId);
        }
        if (source.ProductId != null) {
            this.ProductId = new String(source.ProductId);
        }
        if (source.CaseId != null) {
            this.CaseId = new String(source.CaseId);
        }
        if (source.CallbackUrl != null) {
            this.CallbackUrl = new String(source.CallbackUrl);
        }
        if (source.Data != null) {
            this.Data = new String(source.Data);
        }
    }


    /**
     * Internal implementation, normal users should not use it.
     */
    public void toMap(HashMap map, String prefix) {
        this.setParamSimple(map, prefix + "Module", this.Module);
        this.setParamSimple(map, prefix + "Operation", this.Operation);
        this.setParamSimple(map, prefix + "InstId", this.InstId);
        this.setParamSimple(map, prefix + "ProductId", this.ProductId);
        this.setParamSimple(map, prefix + "CaseId", this.CaseId);
        this.setParamSimple(map, prefix + "CallbackUrl", this.CallbackUrl);
        this.setParamSimple(map, prefix + "Data", this.Data);

    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy