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

com.aliyun.dingtalkhrm_1_0.models.HrmMokaEventRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkhrm_1_0.models;

import com.aliyun.tea.*;

public class HrmMokaEventRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

/user/role/get

*/ @NameInMap("bizId") public String bizId; /** *

This parameter is required.

* * example: *

{"a":"b"}

*/ @NameInMap("content") public String content; public static HrmMokaEventRequest build(java.util.Map map) throws Exception { HrmMokaEventRequest self = new HrmMokaEventRequest(); return TeaModel.build(map, self); } public HrmMokaEventRequest setBizId(String bizId) { this.bizId = bizId; return this; } public String getBizId() { return this.bizId; } public HrmMokaEventRequest setContent(String content) { this.content = content; return this; } public String getContent() { return this.content; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy