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

com.aliyun.dingtalkdrive_1_0.models.GetPreviewInfoResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.30
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkdrive_1_0.models;

import com.aliyun.tea.*;

public class GetPreviewInfoResponseBody extends TeaModel {
    // 预览信息
    @NameInMap("info")
    public GetPreviewInfoResponseBodyInfo info;

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

    public GetPreviewInfoResponseBody setInfo(GetPreviewInfoResponseBodyInfo info) {
        this.info = info;
        return this;
    }
    public GetPreviewInfoResponseBodyInfo getInfo() {
        return this.info;
    }

    public static class GetPreviewInfoResponseBodyInfo extends TeaModel {
        // 预览url
        @NameInMap("url")
        public String url;

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

        public GetPreviewInfoResponseBodyInfo setUrl(String url) {
            this.url = url;
            return this;
        }
        public String getUrl() {
            return this.url;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy