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

com.antgroup.antchain.openapi.riskplus.models.EventInfo Maven / Gradle / Ivy

There is a newer version: 1.20.2
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.riskplus.models;

import com.aliyun.tea.*;

public class EventInfo extends TeaModel {
    // 事件编码
    @NameInMap("event_code")
    @Validation(required = true)
    public String eventCode;

    // 事件产生时间
    @NameInMap("gmt_occur")
    @Validation(required = true)
    public String gmtOccur;

    public static EventInfo build(java.util.Map map) throws Exception {
        EventInfo self = new EventInfo();
        return TeaModel.build(map, self);
    }

    public EventInfo setEventCode(String eventCode) {
        this.eventCode = eventCode;
        return this;
    }
    public String getEventCode() {
        return this.eventCode;
    }

    public EventInfo setGmtOccur(String gmtOccur) {
        this.gmtOccur = gmtOccur;
        return this;
    }
    public String getGmtOccur() {
        return this.gmtOccur;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy