com.antgroup.antchain.openapi.riskplus.models.PushQmpBackflowJsondataRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-riskplus Show documentation
Show all versions of openapi-riskplus Show documentation
Ant Chain RISKPLUS SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.riskplus.models;
import com.aliyun.tea.*;
public class PushQmpBackflowJsondataRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
@NameInMap("product_instance_id")
public String productInstanceId;
// 回流事件id,对应租户回流事件id
@NameInMap("event_id")
@Validation(required = true)
public Long eventId;
// 回流事件记录列表
@NameInMap("event_records")
@Validation(required = true)
public String eventRecords;
public static PushQmpBackflowJsondataRequest build(java.util.Map map) throws Exception {
PushQmpBackflowJsondataRequest self = new PushQmpBackflowJsondataRequest();
return TeaModel.build(map, self);
}
public PushQmpBackflowJsondataRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public PushQmpBackflowJsondataRequest setProductInstanceId(String productInstanceId) {
this.productInstanceId = productInstanceId;
return this;
}
public String getProductInstanceId() {
return this.productInstanceId;
}
public PushQmpBackflowJsondataRequest setEventId(Long eventId) {
this.eventId = eventId;
return this;
}
public Long getEventId() {
return this.eventId;
}
public PushQmpBackflowJsondataRequest setEventRecords(String eventRecords) {
this.eventRecords = eventRecords;
return this;
}
public String getEventRecords() {
return this.eventRecords;
}
}