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

com.aliyun.dingtalkimpaas_1_0.models.GetSpaceFileUrlResponseBody 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.dingtalkimpaas_1_0.models;

import com.aliyun.tea.*;

public class GetSpaceFileUrlResponseBody extends TeaModel {
    /**
     * 

This parameter is required.

*/ @NameInMap("headers") public java.util.Map headers; /** *

This parameter is required.

*/ @NameInMap("internalResourceUrl") public String internalResourceUrl; /** *

This parameter is required.

*/ @NameInMap("resourceUrl") public String resourceUrl; public static GetSpaceFileUrlResponseBody build(java.util.Map map) throws Exception { GetSpaceFileUrlResponseBody self = new GetSpaceFileUrlResponseBody(); return TeaModel.build(map, self); } public GetSpaceFileUrlResponseBody setHeaders(java.util.Map headers) { this.headers = headers; return this; } public java.util.Map getHeaders() { return this.headers; } public GetSpaceFileUrlResponseBody setInternalResourceUrl(String internalResourceUrl) { this.internalResourceUrl = internalResourceUrl; return this; } public String getInternalResourceUrl() { return this.internalResourceUrl; } public GetSpaceFileUrlResponseBody setResourceUrl(String resourceUrl) { this.resourceUrl = resourceUrl; return this; } public String getResourceUrl() { return this.resourceUrl; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy