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

com.aliyun.dingtalkworkflow_1_0.models.PremiumGetAttachmentSpaceResponseBody 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.dingtalkworkflow_1_0.models;

import com.aliyun.tea.*;

public class PremiumGetAttachmentSpaceResponseBody extends TeaModel {
    @NameInMap("result")
    public PremiumGetAttachmentSpaceResponseBodyResult result;

    /**
     * example:
     * 

true

*/ @NameInMap("success") public Boolean success; public static PremiumGetAttachmentSpaceResponseBody build(java.util.Map map) throws Exception { PremiumGetAttachmentSpaceResponseBody self = new PremiumGetAttachmentSpaceResponseBody(); return TeaModel.build(map, self); } public PremiumGetAttachmentSpaceResponseBody setResult(PremiumGetAttachmentSpaceResponseBodyResult result) { this.result = result; return this; } public PremiumGetAttachmentSpaceResponseBodyResult getResult() { return this.result; } public PremiumGetAttachmentSpaceResponseBody setSuccess(Boolean success) { this.success = success; return this; } public Boolean getSuccess() { return this.success; } public static class PremiumGetAttachmentSpaceResponseBodyResult extends TeaModel { /** * example: *

3996960664

*/ @NameInMap("spaceId") public Long spaceId; public static PremiumGetAttachmentSpaceResponseBodyResult build(java.util.Map map) throws Exception { PremiumGetAttachmentSpaceResponseBodyResult self = new PremiumGetAttachmentSpaceResponseBodyResult(); return TeaModel.build(map, self); } public PremiumGetAttachmentSpaceResponseBodyResult setSpaceId(Long spaceId) { this.spaceId = spaceId; return this; } public Long getSpaceId() { return this.spaceId; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy