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

com.aliyun.dingtalkdoc_1_0.models.AttachmentsMapValue 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.dingtalkdoc_1_0.models;

import com.aliyun.tea.*;

public class AttachmentsMapValue extends TeaModel {
    /**
     * example:
     * 

upload_key

*/ @NameInMap("uploadKey") public String uploadKey; /** * example: *

name

*/ @NameInMap("name") public String name; /** * example: *

media_type

*/ @NameInMap("mediaType") public String mediaType; @NameInMap("resourceId") public String resourceId; public static AttachmentsMapValue build(java.util.Map map) throws Exception { AttachmentsMapValue self = new AttachmentsMapValue(); return TeaModel.build(map, self); } public AttachmentsMapValue setUploadKey(String uploadKey) { this.uploadKey = uploadKey; return this; } public String getUploadKey() { return this.uploadKey; } public AttachmentsMapValue setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public AttachmentsMapValue setMediaType(String mediaType) { this.mediaType = mediaType; return this; } public String getMediaType() { return this.mediaType; } public AttachmentsMapValue setResourceId(String resourceId) { this.resourceId = resourceId; return this; } public String getResourceId() { return this.resourceId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy