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

com.aliyun.dingtalkokr_1_0.models.DeleteKeyResultRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class DeleteKeyResultRequest extends TeaModel {
    // 当前 KR id。
    @NameInMap("krId")
    public String krId;

    // 当前用户的userId。
    @NameInMap("userId")
    public String userId;

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

    public DeleteKeyResultRequest setKrId(String krId) {
        this.krId = krId;
        return this;
    }
    public String getKrId() {
        return this.krId;
    }

    public DeleteKeyResultRequest setUserId(String userId) {
        this.userId = userId;
        return this;
    }
    public String getUserId() {
        return this.userId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy