![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.ice20201109.models.ListMediaBasicInfosResponse Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ice20201109.models;
import com.aliyun.tea.*;
public class ListMediaBasicInfosResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListMediaBasicInfosResponseBody body;
public static ListMediaBasicInfosResponse build(java.util.Map map) throws Exception {
ListMediaBasicInfosResponse self = new ListMediaBasicInfosResponse();
return TeaModel.build(map, self);
}
public ListMediaBasicInfosResponse setHeaders(java.util.Map headers) {
this.headers = headers;
return this;
}
public java.util.Map getHeaders() {
return this.headers;
}
public ListMediaBasicInfosResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListMediaBasicInfosResponse setBody(ListMediaBasicInfosResponseBody body) {
this.body = body;
return this;
}
public ListMediaBasicInfosResponseBody getBody() {
return this.body;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy