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

com.aliyun.dingtalkdoc_2_0.models.GetUuidByDentryIdResponseBody 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_2_0.models;

import com.aliyun.tea.*;

public class GetUuidByDentryIdResponseBody extends TeaModel {
    @NameInMap("dentryId")
    public String dentryId;

    @NameInMap("dentryUuid")
    public String dentryUuid;

    @NameInMap("spaceId")
    public String spaceId;

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

    public GetUuidByDentryIdResponseBody setDentryId(String dentryId) {
        this.dentryId = dentryId;
        return this;
    }
    public String getDentryId() {
        return this.dentryId;
    }

    public GetUuidByDentryIdResponseBody setDentryUuid(String dentryUuid) {
        this.dentryUuid = dentryUuid;
        return this;
    }
    public String getDentryUuid() {
        return this.dentryUuid;
    }

    public GetUuidByDentryIdResponseBody setSpaceId(String spaceId) {
        this.spaceId = spaceId;
        return this;
    }
    public String getSpaceId() {
        return this.spaceId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy