com.antgroup.antchain.openapi.riskplus.models.PushUmktBackflowJsondataRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.riskplus.models;
import com.aliyun.tea.*;
public class PushUmktBackflowJsondataRequest 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 PushUmktBackflowJsondataRequest build(java.util.Map map) throws Exception {
PushUmktBackflowJsondataRequest self = new PushUmktBackflowJsondataRequest();
return TeaModel.build(map, self);
}
public PushUmktBackflowJsondataRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public PushUmktBackflowJsondataRequest setProductInstanceId(String productInstanceId) {
this.productInstanceId = productInstanceId;
return this;
}
public String getProductInstanceId() {
return this.productInstanceId;
}
public PushUmktBackflowJsondataRequest setEventId(Long eventId) {
this.eventId = eventId;
return this;
}
public Long getEventId() {
return this.eventId;
}
public PushUmktBackflowJsondataRequest setEventRecords(String eventRecords) {
this.eventRecords = eventRecords;
return this;
}
public String getEventRecords() {
return this.eventRecords;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy