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

com.aliyun.dingtalkconv_file_1_0.models.SendByAppRequest Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkconv_file_1_0.models;

import com.aliyun.tea.*;

public class SendByAppRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

file_id

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

This parameter is required.

* * example: *

space_id

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

This parameter is required.

* * example: *

union_id

*/ @NameInMap("unionId") public String unionId; public static SendByAppRequest build(java.util.Map map) throws Exception { SendByAppRequest self = new SendByAppRequest(); return TeaModel.build(map, self); } public SendByAppRequest setDentryId(String dentryId) { this.dentryId = dentryId; return this; } public String getDentryId() { return this.dentryId; } public SendByAppRequest setSpaceId(String spaceId) { this.spaceId = spaceId; return this; } public String getSpaceId() { return this.spaceId; } public SendByAppRequest setUnionId(String unionId) { this.unionId = unionId; return this; } public String getUnionId() { return this.unionId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy