
com.tencentcloudapi.cr.v20180321.models.ApplyCreditAuditRequest Maven / Gradle / Ivy
/*
* 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;
}
/**
* 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 - 2025 Weber Informatics LLC | Privacy Policy