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

com.aliyun.dingtalkyida_1_0.models.RenderBatchCallbackRequest 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.dingtalkyida_1_0.models;

import com.aliyun.tea.*;

public class RenderBatchCallbackRequest extends TeaModel {
    @NameInMap("appType")
    public String appType;

    /**
     * example:
     * 

ding123

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

123789

*/ @NameInMap("fileSize") public Long fileSize; @NameInMap("language") public String language; /** * example: *

dingtalk

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

https://oss/com/a/b.pdf

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

seq-xxx

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

宜搭

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

running

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

GMT

*/ @NameInMap("timeZone") public String timeZone; @NameInMap("userId") public String userId; public static RenderBatchCallbackRequest build(java.util.Map map) throws Exception { RenderBatchCallbackRequest self = new RenderBatchCallbackRequest(); return TeaModel.build(map, self); } public RenderBatchCallbackRequest setAppType(String appType) { this.appType = appType; return this; } public String getAppType() { return this.appType; } public RenderBatchCallbackRequest setCorpId(String corpId) { this.corpId = corpId; return this; } public String getCorpId() { return this.corpId; } public RenderBatchCallbackRequest setFileSize(Long fileSize) { this.fileSize = fileSize; return this; } public Long getFileSize() { return this.fileSize; } public RenderBatchCallbackRequest setLanguage(String language) { this.language = language; return this; } public String getLanguage() { return this.language; } public RenderBatchCallbackRequest setNamespace(String namespace) { this.namespace = namespace; return this; } public String getNamespace() { return this.namespace; } public RenderBatchCallbackRequest setOssUrl(String ossUrl) { this.ossUrl = ossUrl; return this; } public String getOssUrl() { return this.ossUrl; } public RenderBatchCallbackRequest setSequenceId(String sequenceId) { this.sequenceId = sequenceId; return this; } public String getSequenceId() { return this.sequenceId; } public RenderBatchCallbackRequest setSource(String source) { this.source = source; return this; } public String getSource() { return this.source; } public RenderBatchCallbackRequest setStatus(String status) { this.status = status; return this; } public String getStatus() { return this.status; } public RenderBatchCallbackRequest setSystemToken(String systemToken) { this.systemToken = systemToken; return this; } public String getSystemToken() { return this.systemToken; } public RenderBatchCallbackRequest setTimeZone(String timeZone) { this.timeZone = timeZone; return this; } public String getTimeZone() { return this.timeZone; } public RenderBatchCallbackRequest setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy