cn.com.antcloud.api.riskplus.v1_0.model.EventResultSyncDetail Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of antcloud-api-riskplus Show documentation
Show all versions of antcloud-api-riskplus Show documentation
Ant Chain API SDK For Java
Copyright (c) 2020-present antgroup.com, https://www.antgroup.com
//
// Copyright (c) 2020-present antgroup.com, https://www.antgroup.com
//
// 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 cn.com.antcloud.api.riskplus.v1_0.model;
import java.lang.Long;
import java.lang.String;
import javax.validation.constraints.NotNull;
/**
* 营销盾事件信息同步详情 */
public class EventResultSyncDetail {
@NotNull
private String eventId;
@NotNull
private String planId;
@NotNull
private String msgId;
@NotNull
private String eventTime;
@NotNull
private Long eventType;
@NotNull
private Long state;
@NotNull
private String keyType;
@NotNull
private String customerKey;
@NotNull
private String extData;
/**
* 事件唯一id(单个租户全局唯一) */
public String getEventId() {
return this.eventId;
}
/**
* 事件唯一id(单个租户全局唯一) */
public void setEventId(String eventId) {
this.eventId = eventId;
}
/**
* 营销计划id */
public String getPlanId() {
return this.planId;
}
/**
* 营销计划id */
public void setPlanId(String planId) {
this.planId = planId;
}
/**
* 消息id */
public String getMsgId() {
return this.msgId;
}
/**
* 消息id */
public void setMsgId(String msgId) {
this.msgId = msgId;
}
/**
* 事件时间 */
public String getEventTime() {
return this.eventTime;
}
/**
* 事件时间 */
public void setEventTime(String eventTime) {
this.eventTime = eventTime;
}
/**
* 事件类型:1为富信贴尾 */
public Long getEventType() {
return this.eventType;
}
/**
* 事件类型:1为富信贴尾 */
public void setEventType(Long eventType) {
this.eventType = eventType;
}
/**
* 1为成功 2为失败 */
public Long getState() {
return this.state;
}
/**
* 1为成功 2为失败 */
public void setState(Long state) {
this.state = state;
}
/**
* 用户key类型 */
public String getKeyType() {
return this.keyType;
}
/**
* 用户key类型 */
public void setKeyType(String keyType) {
this.keyType = keyType;
}
/**
* 手机号 */
public String getCustomerKey() {
return this.customerKey;
}
/**
* 手机号 */
public void setCustomerKey(String customerKey) {
this.customerKey = customerKey;
}
/**
* 扩展字段 */
public String getExtData() {
return this.extData;
}
/**
* 扩展字段 */
public void setExtData(String extData) {
this.extData = extData;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy