index
int64 | repo_id
string | file_path
string | content
string |
|---|---|---|---|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListAlbumDetailResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListAlbumDetailResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("Code")
public Integer code;
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
/**
* <p>Id of the request</p>
*
* <strong>example:</strong>
* <p>F12B6147-5925-19E5-A3AD-E1EE1360F34E</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public ListAlbumDetailResponseBodyResult result;
public static ListAlbumDetailResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListAlbumDetailResponseBody self = new ListAlbumDetailResponseBody();
return TeaModel.build(map, self);
}
public ListAlbumDetailResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public ListAlbumDetailResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListAlbumDetailResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListAlbumDetailResponseBody setResult(ListAlbumDetailResponseBodyResult result) {
this.result = result;
return this;
}
public ListAlbumDetailResponseBodyResult getResult() {
return this.result;
}
public static class ListAlbumDetailResponseBodyResultOpenDataItemListAuthors extends TeaModel {
@NameInMap("AuthorTypes")
public java.util.List<String> authorTypes;
/**
* <strong>example:</strong>
* <p>MALE</p>
*/
@NameInMap("Gender")
public String gender;
/**
* <strong>example:</strong>
* <p>12314</p>
*/
@NameInMap("Id")
public Long id;
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("Online")
public Boolean online;
/**
* <strong>example:</strong>
* <p>qingting</p>
*/
@NameInMap("Source")
public String source;
@NameInMap("Title")
public String title;
public static ListAlbumDetailResponseBodyResultOpenDataItemListAuthors build(java.util.Map<String, ?> map) throws Exception {
ListAlbumDetailResponseBodyResultOpenDataItemListAuthors self = new ListAlbumDetailResponseBodyResultOpenDataItemListAuthors();
return TeaModel.build(map, self);
}
public ListAlbumDetailResponseBodyResultOpenDataItemListAuthors setAuthorTypes(java.util.List<String> authorTypes) {
this.authorTypes = authorTypes;
return this;
}
public java.util.List<String> getAuthorTypes() {
return this.authorTypes;
}
public ListAlbumDetailResponseBodyResultOpenDataItemListAuthors setGender(String gender) {
this.gender = gender;
return this;
}
public String getGender() {
return this.gender;
}
public ListAlbumDetailResponseBodyResultOpenDataItemListAuthors setId(Long id) {
this.id = id;
return this;
}
public Long getId() {
return this.id;
}
public ListAlbumDetailResponseBodyResultOpenDataItemListAuthors setOnline(Boolean online) {
this.online = online;
return this;
}
public Boolean getOnline() {
return this.online;
}
public ListAlbumDetailResponseBodyResultOpenDataItemListAuthors setSource(String source) {
this.source = source;
return this;
}
public String getSource() {
return this.source;
}
public ListAlbumDetailResponseBodyResultOpenDataItemListAuthors setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
}
public static class ListAlbumDetailResponseBodyResultOpenDataItemListCover extends TeaModel {
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("CanResize")
public Boolean canResize;
/**
* <strong>example:</strong>
* <p><a href="http://pic.qtfm.cn/2017/0207/2017020718285.jpg">http://pic.qtfm.cn/2017/0207/2017020718285.jpg</a></p>
*/
@NameInMap("Img")
public String img;
/**
* <strong>example:</strong>
* <p><a href="http://pic.qtfm.cn/2017/0207/2017020718285.jpg">http://pic.qtfm.cn/2017/0207/2017020718285.jpg</a></p>
*/
@NameInMap("Large")
public String large;
/**
* <strong>example:</strong>
* <p><a href="http://pic.qtfm.cn/2017/0207/2017020718285.jpg">http://pic.qtfm.cn/2017/0207/2017020718285.jpg</a></p>
*/
@NameInMap("Medium")
public String medium;
/**
* <strong>example:</strong>
* <p><a href="http://pic.qtfm.cn/2017/0207/2017020718285.jpg">http://pic.qtfm.cn/2017/0207/2017020718285.jpg</a></p>
*/
@NameInMap("Small")
public String small;
public static ListAlbumDetailResponseBodyResultOpenDataItemListCover build(java.util.Map<String, ?> map) throws Exception {
ListAlbumDetailResponseBodyResultOpenDataItemListCover self = new ListAlbumDetailResponseBodyResultOpenDataItemListCover();
return TeaModel.build(map, self);
}
public ListAlbumDetailResponseBodyResultOpenDataItemListCover setCanResize(Boolean canResize) {
this.canResize = canResize;
return this;
}
public Boolean getCanResize() {
return this.canResize;
}
public ListAlbumDetailResponseBodyResultOpenDataItemListCover setImg(String img) {
this.img = img;
return this;
}
public String getImg() {
return this.img;
}
public ListAlbumDetailResponseBodyResultOpenDataItemListCover setLarge(String large) {
this.large = large;
return this;
}
public String getLarge() {
return this.large;
}
public ListAlbumDetailResponseBodyResultOpenDataItemListCover setMedium(String medium) {
this.medium = medium;
return this;
}
public String getMedium() {
return this.medium;
}
public ListAlbumDetailResponseBodyResultOpenDataItemListCover setSmall(String small) {
this.small = small;
return this;
}
public String getSmall() {
return this.small;
}
}
public static class ListAlbumDetailResponseBodyResultOpenDataItemList extends TeaModel {
@NameInMap("Alias")
public java.util.List<String> alias;
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("Audition")
public Boolean audition;
@NameInMap("Authors")
public java.util.List<ListAlbumDetailResponseBodyResultOpenDataItemListAuthors> authors;
/**
* <strong>example:</strong>
* <p>audio</p>
*/
@NameInMap("Category")
public String category;
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("Charge")
public Boolean charge;
/**
* <strong>example:</strong>
* <p>80012017</p>
*/
@NameInMap("CommCateId")
public Long commCateId;
@NameInMap("Cover")
public ListAlbumDetailResponseBodyResultOpenDataItemListCover cover;
@NameInMap("Description")
public String description;
/**
* <strong>example:</strong>
* <p>180</p>
*/
@NameInMap("Duration")
public Long duration;
/**
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("HotScore")
public Double hotScore;
/**
* <strong>example:</strong>
* <p>1231231</p>
*/
@NameInMap("Id")
public Long id;
/**
* <strong>example:</strong>
* <p>ALBUM</p>
*/
@NameInMap("ItemType")
public String itemType;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("OrderIndex")
public Long orderIndex;
/**
* <strong>example:</strong>
* <p>12323423</p>
*/
@NameInMap("RawId")
public String rawId;
/**
* <strong>example:</strong>
* <p>qingting</p>
*/
@NameInMap("Source")
public String source;
@NameInMap("Styles")
public java.util.List<String> styles;
@NameInMap("Title")
public String title;
/**
* <strong>example:</strong>
* <p>program</p>
*/
@NameInMap("Type")
public String type;
/**
* <strong>example:</strong>
* <p>VALID</p>
*/
@NameInMap("Valid")
public String valid;
public static ListAlbumDetailResponseBodyResultOpenDataItemList build(java.util.Map<String, ?> map) throws Exception {
ListAlbumDetailResponseBodyResultOpenDataItemList self = new ListAlbumDetailResponseBodyResultOpenDataItemList();
return TeaModel.build(map, self);
}
public ListAlbumDetailResponseBodyResultOpenDataItemList setAlias(java.util.List<String> alias) {
this.alias = alias;
return this;
}
public java.util.List<String> getAlias() {
return this.alias;
}
public ListAlbumDetailResponseBodyResultOpenDataItemList setAudition(Boolean audition) {
this.audition = audition;
return this;
}
public Boolean getAudition() {
return this.audition;
}
public ListAlbumDetailResponseBodyResultOpenDataItemList setAuthors(java.util.List<ListAlbumDetailResponseBodyResultOpenDataItemListAuthors> authors) {
this.authors = authors;
return this;
}
public java.util.List<ListAlbumDetailResponseBodyResultOpenDataItemListAuthors> getAuthors() {
return this.authors;
}
public ListAlbumDetailResponseBodyResultOpenDataItemList setCategory(String category) {
this.category = category;
return this;
}
public String getCategory() {
return this.category;
}
public ListAlbumDetailResponseBodyResultOpenDataItemList setCharge(Boolean charge) {
this.charge = charge;
return this;
}
public Boolean getCharge() {
return this.charge;
}
public ListAlbumDetailResponseBodyResultOpenDataItemList setCommCateId(Long commCateId) {
this.commCateId = commCateId;
return this;
}
public Long getCommCateId() {
return this.commCateId;
}
public ListAlbumDetailResponseBodyResultOpenDataItemList setCover(ListAlbumDetailResponseBodyResultOpenDataItemListCover cover) {
this.cover = cover;
return this;
}
public ListAlbumDetailResponseBodyResultOpenDataItemListCover getCover() {
return this.cover;
}
public ListAlbumDetailResponseBodyResultOpenDataItemList setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public ListAlbumDetailResponseBodyResultOpenDataItemList setDuration(Long duration) {
this.duration = duration;
return this;
}
public Long getDuration() {
return this.duration;
}
public ListAlbumDetailResponseBodyResultOpenDataItemList setHotScore(Double hotScore) {
this.hotScore = hotScore;
return this;
}
public Double getHotScore() {
return this.hotScore;
}
public ListAlbumDetailResponseBodyResultOpenDataItemList setId(Long id) {
this.id = id;
return this;
}
public Long getId() {
return this.id;
}
public ListAlbumDetailResponseBodyResultOpenDataItemList setItemType(String itemType) {
this.itemType = itemType;
return this;
}
public String getItemType() {
return this.itemType;
}
public ListAlbumDetailResponseBodyResultOpenDataItemList setOrderIndex(Long orderIndex) {
this.orderIndex = orderIndex;
return this;
}
public Long getOrderIndex() {
return this.orderIndex;
}
public ListAlbumDetailResponseBodyResultOpenDataItemList setRawId(String rawId) {
this.rawId = rawId;
return this;
}
public String getRawId() {
return this.rawId;
}
public ListAlbumDetailResponseBodyResultOpenDataItemList setSource(String source) {
this.source = source;
return this;
}
public String getSource() {
return this.source;
}
public ListAlbumDetailResponseBodyResultOpenDataItemList setStyles(java.util.List<String> styles) {
this.styles = styles;
return this;
}
public java.util.List<String> getStyles() {
return this.styles;
}
public ListAlbumDetailResponseBodyResultOpenDataItemList setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
public ListAlbumDetailResponseBodyResultOpenDataItemList setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
public ListAlbumDetailResponseBodyResultOpenDataItemList setValid(String valid) {
this.valid = valid;
return this;
}
public String getValid() {
return this.valid;
}
}
public static class ListAlbumDetailResponseBodyResult extends TeaModel {
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("CurrentPageNum")
public Long currentPageNum;
@NameInMap("OpenDataItemList")
public java.util.List<ListAlbumDetailResponseBodyResultOpenDataItemList> openDataItemList;
/**
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("PageSize")
public Long pageSize;
/**
* <strong>example:</strong>
* <p>21421</p>
*/
@NameInMap("TotalSize")
public Long totalSize;
public static ListAlbumDetailResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
ListAlbumDetailResponseBodyResult self = new ListAlbumDetailResponseBodyResult();
return TeaModel.build(map, self);
}
public ListAlbumDetailResponseBodyResult setCurrentPageNum(Long currentPageNum) {
this.currentPageNum = currentPageNum;
return this;
}
public Long getCurrentPageNum() {
return this.currentPageNum;
}
public ListAlbumDetailResponseBodyResult setOpenDataItemList(java.util.List<ListAlbumDetailResponseBodyResultOpenDataItemList> openDataItemList) {
this.openDataItemList = openDataItemList;
return this;
}
public java.util.List<ListAlbumDetailResponseBodyResultOpenDataItemList> getOpenDataItemList() {
return this.openDataItemList;
}
public ListAlbumDetailResponseBodyResult setPageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
public Long getPageSize() {
return this.pageSize;
}
public ListAlbumDetailResponseBodyResult setTotalSize(Long totalSize) {
this.totalSize = totalSize;
return this;
}
public Long getTotalSize() {
return this.totalSize;
}
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListAlbumIsAddedHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListAlbumIsAddedHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static ListAlbumIsAddedHeaders build(java.util.Map<String, ?> map) throws Exception {
ListAlbumIsAddedHeaders self = new ListAlbumIsAddedHeaders();
return TeaModel.build(map, self);
}
public ListAlbumIsAddedHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListAlbumIsAddedHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ListAlbumIsAddedHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListAlbumIsAddedRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListAlbumIsAddedRequest extends TeaModel {
@NameInMap("AlbumIdList")
public java.util.List<String> albumIdList;
@NameInMap("DeviceInfo")
public ListAlbumIsAddedRequestDeviceInfo deviceInfo;
@NameInMap("UserInfo")
public ListAlbumIsAddedRequestUserInfo userInfo;
public static ListAlbumIsAddedRequest build(java.util.Map<String, ?> map) throws Exception {
ListAlbumIsAddedRequest self = new ListAlbumIsAddedRequest();
return TeaModel.build(map, self);
}
public ListAlbumIsAddedRequest setAlbumIdList(java.util.List<String> albumIdList) {
this.albumIdList = albumIdList;
return this;
}
public java.util.List<String> getAlbumIdList() {
return this.albumIdList;
}
public ListAlbumIsAddedRequest setDeviceInfo(ListAlbumIsAddedRequestDeviceInfo deviceInfo) {
this.deviceInfo = deviceInfo;
return this;
}
public ListAlbumIsAddedRequestDeviceInfo getDeviceInfo() {
return this.deviceInfo;
}
public ListAlbumIsAddedRequest setUserInfo(ListAlbumIsAddedRequestUserInfo userInfo) {
this.userInfo = userInfo;
return this;
}
public ListAlbumIsAddedRequestUserInfo getUserInfo() {
return this.userInfo;
}
public static class ListAlbumIsAddedRequestDeviceInfo extends TeaModel {
@NameInMap("EncodeKey")
public String encodeKey;
@NameInMap("EncodeType")
public String encodeType;
@NameInMap("Id")
public String id;
@NameInMap("IdType")
public String idType;
@NameInMap("OrganizationId")
public String organizationId;
public static ListAlbumIsAddedRequestDeviceInfo build(java.util.Map<String, ?> map) throws Exception {
ListAlbumIsAddedRequestDeviceInfo self = new ListAlbumIsAddedRequestDeviceInfo();
return TeaModel.build(map, self);
}
public ListAlbumIsAddedRequestDeviceInfo setEncodeKey(String encodeKey) {
this.encodeKey = encodeKey;
return this;
}
public String getEncodeKey() {
return this.encodeKey;
}
public ListAlbumIsAddedRequestDeviceInfo setEncodeType(String encodeType) {
this.encodeType = encodeType;
return this;
}
public String getEncodeType() {
return this.encodeType;
}
public ListAlbumIsAddedRequestDeviceInfo setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public ListAlbumIsAddedRequestDeviceInfo setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
public ListAlbumIsAddedRequestDeviceInfo setOrganizationId(String organizationId) {
this.organizationId = organizationId;
return this;
}
public String getOrganizationId() {
return this.organizationId;
}
}
public static class ListAlbumIsAddedRequestUserInfo extends TeaModel {
@NameInMap("EncodeKey")
public String encodeKey;
@NameInMap("EncodeType")
public String encodeType;
@NameInMap("Id")
public String id;
@NameInMap("IdType")
public String idType;
@NameInMap("OrganizationId")
public String organizationId;
public static ListAlbumIsAddedRequestUserInfo build(java.util.Map<String, ?> map) throws Exception {
ListAlbumIsAddedRequestUserInfo self = new ListAlbumIsAddedRequestUserInfo();
return TeaModel.build(map, self);
}
public ListAlbumIsAddedRequestUserInfo setEncodeKey(String encodeKey) {
this.encodeKey = encodeKey;
return this;
}
public String getEncodeKey() {
return this.encodeKey;
}
public ListAlbumIsAddedRequestUserInfo setEncodeType(String encodeType) {
this.encodeType = encodeType;
return this;
}
public String getEncodeType() {
return this.encodeType;
}
public ListAlbumIsAddedRequestUserInfo setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public ListAlbumIsAddedRequestUserInfo setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
public ListAlbumIsAddedRequestUserInfo setOrganizationId(String organizationId) {
this.organizationId = organizationId;
return this;
}
public String getOrganizationId() {
return this.organizationId;
}
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListAlbumIsAddedResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListAlbumIsAddedResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListAlbumIsAddedResponseBody body;
public static ListAlbumIsAddedResponse build(java.util.Map<String, ?> map) throws Exception {
ListAlbumIsAddedResponse self = new ListAlbumIsAddedResponse();
return TeaModel.build(map, self);
}
public ListAlbumIsAddedResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListAlbumIsAddedResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListAlbumIsAddedResponse setBody(ListAlbumIsAddedResponseBody body) {
this.body = body;
return this;
}
public ListAlbumIsAddedResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListAlbumIsAddedResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListAlbumIsAddedResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("Code")
public Integer code;
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
/**
* <strong>example:</strong>
* <p>BCC85E69-5DA6-197E-A8C1-8A1B19CF781B</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public java.util.List<ListAlbumIsAddedResponseBodyResult> result;
public static ListAlbumIsAddedResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListAlbumIsAddedResponseBody self = new ListAlbumIsAddedResponseBody();
return TeaModel.build(map, self);
}
public ListAlbumIsAddedResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public ListAlbumIsAddedResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListAlbumIsAddedResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListAlbumIsAddedResponseBody setResult(java.util.List<ListAlbumIsAddedResponseBodyResult> result) {
this.result = result;
return this;
}
public java.util.List<ListAlbumIsAddedResponseBodyResult> getResult() {
return this.result;
}
public static class ListAlbumIsAddedResponseBodyResult extends TeaModel {
/**
* <strong>example:</strong>
* <p>51999575</p>
*/
@NameInMap("AlbumId")
public String albumId;
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("IsAdded")
public String isAdded;
public static ListAlbumIsAddedResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
ListAlbumIsAddedResponseBodyResult self = new ListAlbumIsAddedResponseBodyResult();
return TeaModel.build(map, self);
}
public ListAlbumIsAddedResponseBodyResult setAlbumId(String albumId) {
this.albumId = albumId;
return this;
}
public String getAlbumId() {
return this.albumId;
}
public ListAlbumIsAddedResponseBodyResult setIsAdded(String isAdded) {
this.isAdded = isAdded;
return this;
}
public String getIsAdded() {
return this.isAdded;
}
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListAlbumIsAddedShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListAlbumIsAddedShrinkRequest extends TeaModel {
@NameInMap("AlbumIdList")
public String albumIdListShrink;
@NameInMap("DeviceInfo")
public String deviceInfoShrink;
@NameInMap("UserInfo")
public String userInfoShrink;
public static ListAlbumIsAddedShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
ListAlbumIsAddedShrinkRequest self = new ListAlbumIsAddedShrinkRequest();
return TeaModel.build(map, self);
}
public ListAlbumIsAddedShrinkRequest setAlbumIdListShrink(String albumIdListShrink) {
this.albumIdListShrink = albumIdListShrink;
return this;
}
public String getAlbumIdListShrink() {
return this.albumIdListShrink;
}
public ListAlbumIsAddedShrinkRequest setDeviceInfoShrink(String deviceInfoShrink) {
this.deviceInfoShrink = deviceInfoShrink;
return this;
}
public String getDeviceInfoShrink() {
return this.deviceInfoShrink;
}
public ListAlbumIsAddedShrinkRequest setUserInfoShrink(String userInfoShrink) {
this.userInfoShrink = userInfoShrink;
return this;
}
public String getUserInfoShrink() {
return this.userInfoShrink;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListCateContentHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListCateContentHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static ListCateContentHeaders build(java.util.Map<String, ?> map) throws Exception {
ListCateContentHeaders self = new ListCateContentHeaders();
return TeaModel.build(map, self);
}
public ListCateContentHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListCateContentHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ListCateContentHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListCateContentRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListCateContentRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("DeviceInfo")
public ListCateContentRequestDeviceInfo deviceInfo;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Request")
public ListCateContentRequestRequest request;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("UserInfo")
public ListCateContentRequestUserInfo userInfo;
public static ListCateContentRequest build(java.util.Map<String, ?> map) throws Exception {
ListCateContentRequest self = new ListCateContentRequest();
return TeaModel.build(map, self);
}
public ListCateContentRequest setDeviceInfo(ListCateContentRequestDeviceInfo deviceInfo) {
this.deviceInfo = deviceInfo;
return this;
}
public ListCateContentRequestDeviceInfo getDeviceInfo() {
return this.deviceInfo;
}
public ListCateContentRequest setRequest(ListCateContentRequestRequest request) {
this.request = request;
return this;
}
public ListCateContentRequestRequest getRequest() {
return this.request;
}
public ListCateContentRequest setUserInfo(ListCateContentRequestUserInfo userInfo) {
this.userInfo = userInfo;
return this;
}
public ListCateContentRequestUserInfo getUserInfo() {
return this.userInfo;
}
public static class ListCateContentRequestDeviceInfo extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>12**45</p>
*/
@NameInMap("EncodeKey")
public String encodeKey;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>PACKAGE_NAME</p>
*/
@NameInMap("EncodeType")
public String encodeType;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>DAFE****ce3ej=</p>
*/
@NameInMap("Id")
public String id;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>OPEN_ID</p>
*/
@NameInMap("IdType")
public String idType;
/**
* <strong>example:</strong>
* <p>1**2</p>
*/
@NameInMap("OrganizationId")
public String organizationId;
public static ListCateContentRequestDeviceInfo build(java.util.Map<String, ?> map) throws Exception {
ListCateContentRequestDeviceInfo self = new ListCateContentRequestDeviceInfo();
return TeaModel.build(map, self);
}
public ListCateContentRequestDeviceInfo setEncodeKey(String encodeKey) {
this.encodeKey = encodeKey;
return this;
}
public String getEncodeKey() {
return this.encodeKey;
}
public ListCateContentRequestDeviceInfo setEncodeType(String encodeType) {
this.encodeType = encodeType;
return this;
}
public String getEncodeType() {
return this.encodeType;
}
public ListCateContentRequestDeviceInfo setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public ListCateContentRequestDeviceInfo setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
public ListCateContentRequestDeviceInfo setOrganizationId(String organizationId) {
this.organizationId = organizationId;
return this;
}
public String getOrganizationId() {
return this.organizationId;
}
}
public static class ListCateContentRequestRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>80010</p>
*/
@NameInMap("CateId")
public Long cateId;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("IsAlbum")
public Boolean isAlbum;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("PageNum")
public Integer pageNum;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("PageSize")
public Integer pageSize;
/**
* <strong>example:</strong>
* <p>hot_score</p>
*/
@NameInMap("SortBy")
public String sortBy;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>DESC</p>
*/
@NameInMap("SortOrder")
public String sortOrder;
public static ListCateContentRequestRequest build(java.util.Map<String, ?> map) throws Exception {
ListCateContentRequestRequest self = new ListCateContentRequestRequest();
return TeaModel.build(map, self);
}
public ListCateContentRequestRequest setCateId(Long cateId) {
this.cateId = cateId;
return this;
}
public Long getCateId() {
return this.cateId;
}
public ListCateContentRequestRequest setIsAlbum(Boolean isAlbum) {
this.isAlbum = isAlbum;
return this;
}
public Boolean getIsAlbum() {
return this.isAlbum;
}
public ListCateContentRequestRequest setPageNum(Integer pageNum) {
this.pageNum = pageNum;
return this;
}
public Integer getPageNum() {
return this.pageNum;
}
public ListCateContentRequestRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public ListCateContentRequestRequest setSortBy(String sortBy) {
this.sortBy = sortBy;
return this;
}
public String getSortBy() {
return this.sortBy;
}
public ListCateContentRequestRequest setSortOrder(String sortOrder) {
this.sortOrder = sortOrder;
return this;
}
public String getSortOrder() {
return this.sortOrder;
}
}
public static class ListCateContentRequestUserInfo extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>12**45</p>
*/
@NameInMap("EncodeKey")
public String encodeKey;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>PACKAGE_NAME</p>
*/
@NameInMap("EncodeType")
public String encodeType;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>HOFF****my7Iw=</p>
*/
@NameInMap("Id")
public String id;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>OPEN_ID</p>
*/
@NameInMap("IdType")
public String idType;
/**
* <strong>example:</strong>
* <p>1**2</p>
*/
@NameInMap("OrganizationId")
public String organizationId;
public static ListCateContentRequestUserInfo build(java.util.Map<String, ?> map) throws Exception {
ListCateContentRequestUserInfo self = new ListCateContentRequestUserInfo();
return TeaModel.build(map, self);
}
public ListCateContentRequestUserInfo setEncodeKey(String encodeKey) {
this.encodeKey = encodeKey;
return this;
}
public String getEncodeKey() {
return this.encodeKey;
}
public ListCateContentRequestUserInfo setEncodeType(String encodeType) {
this.encodeType = encodeType;
return this;
}
public String getEncodeType() {
return this.encodeType;
}
public ListCateContentRequestUserInfo setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public ListCateContentRequestUserInfo setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
public ListCateContentRequestUserInfo setOrganizationId(String organizationId) {
this.organizationId = organizationId;
return this;
}
public String getOrganizationId() {
return this.organizationId;
}
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListCateContentResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListCateContentResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListCateContentResponseBody body;
public static ListCateContentResponse build(java.util.Map<String, ?> map) throws Exception {
ListCateContentResponse self = new ListCateContentResponse();
return TeaModel.build(map, self);
}
public ListCateContentResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListCateContentResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListCateContentResponse setBody(ListCateContentResponseBody body) {
this.body = body;
return this;
}
public ListCateContentResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListCateContentResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListCateContentResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("Code")
public Integer code;
/**
* <strong>example:</strong>
* <p>sucess</p>
*/
@NameInMap("Message")
public String message;
/**
* <p>Id of the request</p>
*
* <strong>example:</strong>
* <p>F12B6147-5925-19E5-A3AD-E1EE1360F34E</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public ListCateContentResponseBodyResult result;
public static ListCateContentResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListCateContentResponseBody self = new ListCateContentResponseBody();
return TeaModel.build(map, self);
}
public ListCateContentResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public ListCateContentResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListCateContentResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListCateContentResponseBody setResult(ListCateContentResponseBodyResult result) {
this.result = result;
return this;
}
public ListCateContentResponseBodyResult getResult() {
return this.result;
}
public static class ListCateContentResponseBodyResultOpenDataItemListAuthorsCover extends TeaModel {
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("CanResize")
public Boolean canResize;
/**
* <strong>example:</strong>
* <p><a href="https://a.jpg">https://a.jpg</a></p>
*/
@NameInMap("Img")
public String img;
/**
* <strong>example:</strong>
* <p><a href="https://a.jpg">https://a.jpg</a></p>
*/
@NameInMap("Large")
public String large;
/**
* <strong>example:</strong>
* <p><a href="https://a.jpg">https://a.jpg</a></p>
*/
@NameInMap("Mediam")
public String mediam;
/**
* <strong>example:</strong>
* <p><a href="https://a.jpg">https://a.jpg</a></p>
*/
@NameInMap("Medium")
public String medium;
/**
* <strong>example:</strong>
* <p><a href="https://a.jpg">https://a.jpg</a></p>
*/
@NameInMap("Small")
public String small;
public static ListCateContentResponseBodyResultOpenDataItemListAuthorsCover build(java.util.Map<String, ?> map) throws Exception {
ListCateContentResponseBodyResultOpenDataItemListAuthorsCover self = new ListCateContentResponseBodyResultOpenDataItemListAuthorsCover();
return TeaModel.build(map, self);
}
public ListCateContentResponseBodyResultOpenDataItemListAuthorsCover setCanResize(Boolean canResize) {
this.canResize = canResize;
return this;
}
public Boolean getCanResize() {
return this.canResize;
}
public ListCateContentResponseBodyResultOpenDataItemListAuthorsCover setImg(String img) {
this.img = img;
return this;
}
public String getImg() {
return this.img;
}
public ListCateContentResponseBodyResultOpenDataItemListAuthorsCover setLarge(String large) {
this.large = large;
return this;
}
public String getLarge() {
return this.large;
}
public ListCateContentResponseBodyResultOpenDataItemListAuthorsCover setMediam(String mediam) {
this.mediam = mediam;
return this;
}
public String getMediam() {
return this.mediam;
}
public ListCateContentResponseBodyResultOpenDataItemListAuthorsCover setMedium(String medium) {
this.medium = medium;
return this;
}
public String getMedium() {
return this.medium;
}
public ListCateContentResponseBodyResultOpenDataItemListAuthorsCover setSmall(String small) {
this.small = small;
return this;
}
public String getSmall() {
return this.small;
}
}
public static class ListCateContentResponseBodyResultOpenDataItemListAuthors extends TeaModel {
@NameInMap("AuthorTypes")
public java.util.List<String> authorTypes;
@NameInMap("Cover")
public ListCateContentResponseBodyResultOpenDataItemListAuthorsCover cover;
@NameInMap("Description")
public String description;
/**
* <strong>example:</strong>
* <p>MALE</p>
*/
@NameInMap("Gender")
public String gender;
/**
* <strong>example:</strong>
* <p>13597709</p>
*/
@NameInMap("Id")
public Long id;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("Online")
public Boolean online;
/**
* <strong>example:</strong>
* <p>123123</p>
*/
@NameInMap("RawId")
public String rawId;
/**
* <strong>example:</strong>
* <p>qingting</p>
*/
@NameInMap("Source")
public String source;
@NameInMap("Title")
public String title;
public static ListCateContentResponseBodyResultOpenDataItemListAuthors build(java.util.Map<String, ?> map) throws Exception {
ListCateContentResponseBodyResultOpenDataItemListAuthors self = new ListCateContentResponseBodyResultOpenDataItemListAuthors();
return TeaModel.build(map, self);
}
public ListCateContentResponseBodyResultOpenDataItemListAuthors setAuthorTypes(java.util.List<String> authorTypes) {
this.authorTypes = authorTypes;
return this;
}
public java.util.List<String> getAuthorTypes() {
return this.authorTypes;
}
public ListCateContentResponseBodyResultOpenDataItemListAuthors setCover(ListCateContentResponseBodyResultOpenDataItemListAuthorsCover cover) {
this.cover = cover;
return this;
}
public ListCateContentResponseBodyResultOpenDataItemListAuthorsCover getCover() {
return this.cover;
}
public ListCateContentResponseBodyResultOpenDataItemListAuthors setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public ListCateContentResponseBodyResultOpenDataItemListAuthors setGender(String gender) {
this.gender = gender;
return this;
}
public String getGender() {
return this.gender;
}
public ListCateContentResponseBodyResultOpenDataItemListAuthors setId(Long id) {
this.id = id;
return this;
}
public Long getId() {
return this.id;
}
public ListCateContentResponseBodyResultOpenDataItemListAuthors setOnline(Boolean online) {
this.online = online;
return this;
}
public Boolean getOnline() {
return this.online;
}
public ListCateContentResponseBodyResultOpenDataItemListAuthors setRawId(String rawId) {
this.rawId = rawId;
return this;
}
public String getRawId() {
return this.rawId;
}
public ListCateContentResponseBodyResultOpenDataItemListAuthors setSource(String source) {
this.source = source;
return this;
}
public String getSource() {
return this.source;
}
public ListCateContentResponseBodyResultOpenDataItemListAuthors setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
}
public static class ListCateContentResponseBodyResultOpenDataItemListCover extends TeaModel {
/**
* <strong>example:</strong>
* <p><a href="http://pic.qtfm.cn/2017/0207/2017020718285.jpg">http://pic.qtfm.cn/2017/0207/2017020718285.jpg</a></p>
*/
@NameInMap("Img")
public String img;
/**
* <strong>example:</strong>
* <p><a href="http://pic.qtfm.cn/2017/0207/2017020718275.jpg">http://pic.qtfm.cn/2017/0207/2017020718275.jpg</a></p>
*/
@NameInMap("Large")
public String large;
/**
* <strong>example:</strong>
* <p><a href="http://pic.qtfm.cn/2017/0207/2017020718275.jpg">http://pic.qtfm.cn/2017/0207/2017020718275.jpg</a></p>
*/
@NameInMap("Mediam")
public String mediam;
/**
* <strong>example:</strong>
* <p><a href="http://pic.qtfm.cn/2017/0207/20170207175.jpg">http://pic.qtfm.cn/2017/0207/20170207175.jpg</a></p>
*/
@NameInMap("Medium")
public String medium;
/**
* <strong>example:</strong>
* <p><a href="http://pic.qtfm.cn/2017/0207/2017020675.jpg">http://pic.qtfm.cn/2017/0207/2017020675.jpg</a></p>
*/
@NameInMap("Small")
public String small;
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("canResize")
public Boolean canResize;
public static ListCateContentResponseBodyResultOpenDataItemListCover build(java.util.Map<String, ?> map) throws Exception {
ListCateContentResponseBodyResultOpenDataItemListCover self = new ListCateContentResponseBodyResultOpenDataItemListCover();
return TeaModel.build(map, self);
}
public ListCateContentResponseBodyResultOpenDataItemListCover setImg(String img) {
this.img = img;
return this;
}
public String getImg() {
return this.img;
}
public ListCateContentResponseBodyResultOpenDataItemListCover setLarge(String large) {
this.large = large;
return this;
}
public String getLarge() {
return this.large;
}
public ListCateContentResponseBodyResultOpenDataItemListCover setMediam(String mediam) {
this.mediam = mediam;
return this;
}
public String getMediam() {
return this.mediam;
}
public ListCateContentResponseBodyResultOpenDataItemListCover setMedium(String medium) {
this.medium = medium;
return this;
}
public String getMedium() {
return this.medium;
}
public ListCateContentResponseBodyResultOpenDataItemListCover setSmall(String small) {
this.small = small;
return this;
}
public String getSmall() {
return this.small;
}
public ListCateContentResponseBodyResultOpenDataItemListCover setCanResize(Boolean canResize) {
this.canResize = canResize;
return this;
}
public Boolean getCanResize() {
return this.canResize;
}
}
public static class ListCateContentResponseBodyResultOpenDataItemList extends TeaModel {
@NameInMap("Alias")
public java.util.List<String> alias;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("Audition")
public Boolean audition;
@NameInMap("Authors")
public java.util.List<ListCateContentResponseBodyResultOpenDataItemListAuthors> authors;
/**
* <strong>example:</strong>
* <p>audio</p>
*/
@NameInMap("Category")
public String category;
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("Charge")
public Boolean charge;
/**
* <strong>example:</strong>
* <p>80012017</p>
*/
@NameInMap("CommCateId")
public String commCateId;
@NameInMap("Cover")
public ListCateContentResponseBodyResultOpenDataItemListCover cover;
@NameInMap("Description")
public String description;
/**
* <strong>example:</strong>
* <p>0</p>
*/
@NameInMap("HotScore")
public Double hotScore;
/**
* <strong>example:</strong>
* <p>ALBUM</p>
*/
@NameInMap("ItemType")
public String itemType;
/**
* <strong>example:</strong>
* <p>206775</p>
*/
@NameInMap("RawId")
public String rawId;
/**
* <strong>example:</strong>
* <p>qingting</p>
*/
@NameInMap("Source")
public String source;
@NameInMap("Title")
public String title;
/**
* <strong>example:</strong>
* <p>program</p>
*/
@NameInMap("Type")
public String type;
/**
* <strong>example:</strong>
* <p>VALID</p>
*/
@NameInMap("Valid")
public String valid;
/**
* <strong>example:</strong>
* <p>26152778</p>
*/
@NameInMap("id")
public Long id;
public static ListCateContentResponseBodyResultOpenDataItemList build(java.util.Map<String, ?> map) throws Exception {
ListCateContentResponseBodyResultOpenDataItemList self = new ListCateContentResponseBodyResultOpenDataItemList();
return TeaModel.build(map, self);
}
public ListCateContentResponseBodyResultOpenDataItemList setAlias(java.util.List<String> alias) {
this.alias = alias;
return this;
}
public java.util.List<String> getAlias() {
return this.alias;
}
public ListCateContentResponseBodyResultOpenDataItemList setAudition(Boolean audition) {
this.audition = audition;
return this;
}
public Boolean getAudition() {
return this.audition;
}
public ListCateContentResponseBodyResultOpenDataItemList setAuthors(java.util.List<ListCateContentResponseBodyResultOpenDataItemListAuthors> authors) {
this.authors = authors;
return this;
}
public java.util.List<ListCateContentResponseBodyResultOpenDataItemListAuthors> getAuthors() {
return this.authors;
}
public ListCateContentResponseBodyResultOpenDataItemList setCategory(String category) {
this.category = category;
return this;
}
public String getCategory() {
return this.category;
}
public ListCateContentResponseBodyResultOpenDataItemList setCharge(Boolean charge) {
this.charge = charge;
return this;
}
public Boolean getCharge() {
return this.charge;
}
public ListCateContentResponseBodyResultOpenDataItemList setCommCateId(String commCateId) {
this.commCateId = commCateId;
return this;
}
public String getCommCateId() {
return this.commCateId;
}
public ListCateContentResponseBodyResultOpenDataItemList setCover(ListCateContentResponseBodyResultOpenDataItemListCover cover) {
this.cover = cover;
return this;
}
public ListCateContentResponseBodyResultOpenDataItemListCover getCover() {
return this.cover;
}
public ListCateContentResponseBodyResultOpenDataItemList setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public ListCateContentResponseBodyResultOpenDataItemList setHotScore(Double hotScore) {
this.hotScore = hotScore;
return this;
}
public Double getHotScore() {
return this.hotScore;
}
public ListCateContentResponseBodyResultOpenDataItemList setItemType(String itemType) {
this.itemType = itemType;
return this;
}
public String getItemType() {
return this.itemType;
}
public ListCateContentResponseBodyResultOpenDataItemList setRawId(String rawId) {
this.rawId = rawId;
return this;
}
public String getRawId() {
return this.rawId;
}
public ListCateContentResponseBodyResultOpenDataItemList setSource(String source) {
this.source = source;
return this;
}
public String getSource() {
return this.source;
}
public ListCateContentResponseBodyResultOpenDataItemList setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
public ListCateContentResponseBodyResultOpenDataItemList setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
public ListCateContentResponseBodyResultOpenDataItemList setValid(String valid) {
this.valid = valid;
return this;
}
public String getValid() {
return this.valid;
}
public ListCateContentResponseBodyResultOpenDataItemList setId(Long id) {
this.id = id;
return this;
}
public Long getId() {
return this.id;
}
}
public static class ListCateContentResponseBodyResult extends TeaModel {
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("CurrentPageNum")
public Integer currentPageNum;
@NameInMap("OpenDataItemList")
public java.util.List<ListCateContentResponseBodyResultOpenDataItemList> openDataItemList;
/**
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("PageSize")
public Integer pageSize;
/**
* <strong>example:</strong>
* <p>12002</p>
*/
@NameInMap("TotalSize")
public Long totalSize;
public static ListCateContentResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
ListCateContentResponseBodyResult self = new ListCateContentResponseBodyResult();
return TeaModel.build(map, self);
}
public ListCateContentResponseBodyResult setCurrentPageNum(Integer currentPageNum) {
this.currentPageNum = currentPageNum;
return this;
}
public Integer getCurrentPageNum() {
return this.currentPageNum;
}
public ListCateContentResponseBodyResult setOpenDataItemList(java.util.List<ListCateContentResponseBodyResultOpenDataItemList> openDataItemList) {
this.openDataItemList = openDataItemList;
return this;
}
public java.util.List<ListCateContentResponseBodyResultOpenDataItemList> getOpenDataItemList() {
return this.openDataItemList;
}
public ListCateContentResponseBodyResult setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public ListCateContentResponseBodyResult setTotalSize(Long totalSize) {
this.totalSize = totalSize;
return this;
}
public Long getTotalSize() {
return this.totalSize;
}
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListCateContentShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListCateContentShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("DeviceInfo")
public String deviceInfoShrink;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Request")
public String requestShrink;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("UserInfo")
public String userInfoShrink;
public static ListCateContentShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
ListCateContentShrinkRequest self = new ListCateContentShrinkRequest();
return TeaModel.build(map, self);
}
public ListCateContentShrinkRequest setDeviceInfoShrink(String deviceInfoShrink) {
this.deviceInfoShrink = deviceInfoShrink;
return this;
}
public String getDeviceInfoShrink() {
return this.deviceInfoShrink;
}
public ListCateContentShrinkRequest setRequestShrink(String requestShrink) {
this.requestShrink = requestShrink;
return this;
}
public String getRequestShrink() {
return this.requestShrink;
}
public ListCateContentShrinkRequest setUserInfoShrink(String userInfoShrink) {
this.userInfoShrink = userInfoShrink;
return this;
}
public String getUserInfoShrink() {
return this.userInfoShrink;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListCateInfoHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListCateInfoHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static ListCateInfoHeaders build(java.util.Map<String, ?> map) throws Exception {
ListCateInfoHeaders self = new ListCateInfoHeaders();
return TeaModel.build(map, self);
}
public ListCateInfoHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListCateInfoHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ListCateInfoHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListCateInfoRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListCateInfoRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>song</p>
*/
@NameInMap("Type")
public String type;
public static ListCateInfoRequest build(java.util.Map<String, ?> map) throws Exception {
ListCateInfoRequest self = new ListCateInfoRequest();
return TeaModel.build(map, self);
}
public ListCateInfoRequest setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListCateInfoResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListCateInfoResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListCateInfoResponseBody body;
public static ListCateInfoResponse build(java.util.Map<String, ?> map) throws Exception {
ListCateInfoResponse self = new ListCateInfoResponse();
return TeaModel.build(map, self);
}
public ListCateInfoResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListCateInfoResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListCateInfoResponse setBody(ListCateInfoResponseBody body) {
this.body = body;
return this;
}
public ListCateInfoResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListCateInfoResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListCateInfoResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("Code")
public Integer code;
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
/**
* <strong>example:</strong>
* <p>F12B6147-5925-19E5-A3AD-E1EE1360F34E</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public java.util.List<ListCateInfoResponseBodyResult> result;
public static ListCateInfoResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListCateInfoResponseBody self = new ListCateInfoResponseBody();
return TeaModel.build(map, self);
}
public ListCateInfoResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public ListCateInfoResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListCateInfoResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListCateInfoResponseBody setResult(java.util.List<ListCateInfoResponseBodyResult> result) {
this.result = result;
return this;
}
public java.util.List<ListCateInfoResponseBodyResult> getResult() {
return this.result;
}
public static class ListCateInfoResponseBodyResult extends TeaModel {
/**
* <strong>example:</strong>
* <p>80064</p>
*/
@NameInMap("CateId")
public Long cateId;
@NameInMap("CateName")
public String cateName;
/**
* <strong>example:</strong>
* <p>0</p>
*/
@NameInMap("ParentCateId")
public Long parentCateId;
public static ListCateInfoResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
ListCateInfoResponseBodyResult self = new ListCateInfoResponseBodyResult();
return TeaModel.build(map, self);
}
public ListCateInfoResponseBodyResult setCateId(Long cateId) {
this.cateId = cateId;
return this;
}
public Long getCateId() {
return this.cateId;
}
public ListCateInfoResponseBodyResult setCateName(String cateName) {
this.cateName = cateName;
return this;
}
public String getCateName() {
return this.cateName;
}
public ListCateInfoResponseBodyResult setParentCateId(Long parentCateId) {
this.parentCateId = parentCateId;
return this;
}
public Long getParentCateId() {
return this.parentCateId;
}
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListCommonCateFirstFloorHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListCommonCateFirstFloorHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static ListCommonCateFirstFloorHeaders build(java.util.Map<String, ?> map) throws Exception {
ListCommonCateFirstFloorHeaders self = new ListCommonCateFirstFloorHeaders();
return TeaModel.build(map, self);
}
public ListCommonCateFirstFloorHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListCommonCateFirstFloorHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ListCommonCateFirstFloorHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListCommonCateFirstFloorRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListCommonCateFirstFloorRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>song</p>
*/
@NameInMap("Type")
public String type;
public static ListCommonCateFirstFloorRequest build(java.util.Map<String, ?> map) throws Exception {
ListCommonCateFirstFloorRequest self = new ListCommonCateFirstFloorRequest();
return TeaModel.build(map, self);
}
public ListCommonCateFirstFloorRequest setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListCommonCateFirstFloorResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListCommonCateFirstFloorResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListCommonCateFirstFloorResponseBody body;
public static ListCommonCateFirstFloorResponse build(java.util.Map<String, ?> map) throws Exception {
ListCommonCateFirstFloorResponse self = new ListCommonCateFirstFloorResponse();
return TeaModel.build(map, self);
}
public ListCommonCateFirstFloorResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListCommonCateFirstFloorResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListCommonCateFirstFloorResponse setBody(ListCommonCateFirstFloorResponseBody body) {
this.body = body;
return this;
}
public ListCommonCateFirstFloorResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListCommonCateFirstFloorResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListCommonCateFirstFloorResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("Code")
public Integer code;
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
/**
* <strong>example:</strong>
* <p>F12B6147-5925-19E5-A3AD-E1EE1360F34E</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public java.util.List<ListCommonCateFirstFloorResponseBodyResult> result;
public static ListCommonCateFirstFloorResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListCommonCateFirstFloorResponseBody self = new ListCommonCateFirstFloorResponseBody();
return TeaModel.build(map, self);
}
public ListCommonCateFirstFloorResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public ListCommonCateFirstFloorResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListCommonCateFirstFloorResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListCommonCateFirstFloorResponseBody setResult(java.util.List<ListCommonCateFirstFloorResponseBodyResult> result) {
this.result = result;
return this;
}
public java.util.List<ListCommonCateFirstFloorResponseBodyResult> getResult() {
return this.result;
}
public static class ListCommonCateFirstFloorResponseBodyResult extends TeaModel {
/**
* <strong>example:</strong>
* <p>80012</p>
*/
@NameInMap("CateId")
public Long cateId;
@NameInMap("CateName")
public String cateName;
/**
* <strong>example:</strong>
* <p>0</p>
*/
@NameInMap("ParentCateId")
public Long parentCateId;
public static ListCommonCateFirstFloorResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
ListCommonCateFirstFloorResponseBodyResult self = new ListCommonCateFirstFloorResponseBodyResult();
return TeaModel.build(map, self);
}
public ListCommonCateFirstFloorResponseBodyResult setCateId(Long cateId) {
this.cateId = cateId;
return this;
}
public Long getCateId() {
return this.cateId;
}
public ListCommonCateFirstFloorResponseBodyResult setCateName(String cateName) {
this.cateName = cateName;
return this;
}
public String getCateName() {
return this.cateName;
}
public ListCommonCateFirstFloorResponseBodyResult setParentCateId(Long parentCateId) {
this.parentCateId = parentCateId;
return this;
}
public Long getParentCateId() {
return this.parentCateId;
}
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListCommonCateSecondFloorHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListCommonCateSecondFloorHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static ListCommonCateSecondFloorHeaders build(java.util.Map<String, ?> map) throws Exception {
ListCommonCateSecondFloorHeaders self = new ListCommonCateSecondFloorHeaders();
return TeaModel.build(map, self);
}
public ListCommonCateSecondFloorHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListCommonCateSecondFloorHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ListCommonCateSecondFloorHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListCommonCateSecondFloorRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListCommonCateSecondFloorRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>80010</p>
*/
@NameInMap("ParentCateId")
public Long parentCateId;
public static ListCommonCateSecondFloorRequest build(java.util.Map<String, ?> map) throws Exception {
ListCommonCateSecondFloorRequest self = new ListCommonCateSecondFloorRequest();
return TeaModel.build(map, self);
}
public ListCommonCateSecondFloorRequest setParentCateId(Long parentCateId) {
this.parentCateId = parentCateId;
return this;
}
public Long getParentCateId() {
return this.parentCateId;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListCommonCateSecondFloorResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListCommonCateSecondFloorResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListCommonCateSecondFloorResponseBody body;
public static ListCommonCateSecondFloorResponse build(java.util.Map<String, ?> map) throws Exception {
ListCommonCateSecondFloorResponse self = new ListCommonCateSecondFloorResponse();
return TeaModel.build(map, self);
}
public ListCommonCateSecondFloorResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListCommonCateSecondFloorResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListCommonCateSecondFloorResponse setBody(ListCommonCateSecondFloorResponseBody body) {
this.body = body;
return this;
}
public ListCommonCateSecondFloorResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListCommonCateSecondFloorResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListCommonCateSecondFloorResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("Code")
public Integer code;
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
/**
* <strong>example:</strong>
* <p>F12B6147-5925-19E5-A3AD-E1EE1360F34E</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public java.util.List<ListCommonCateSecondFloorResponseBodyResult> result;
public static ListCommonCateSecondFloorResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListCommonCateSecondFloorResponseBody self = new ListCommonCateSecondFloorResponseBody();
return TeaModel.build(map, self);
}
public ListCommonCateSecondFloorResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public ListCommonCateSecondFloorResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListCommonCateSecondFloorResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListCommonCateSecondFloorResponseBody setResult(java.util.List<ListCommonCateSecondFloorResponseBodyResult> result) {
this.result = result;
return this;
}
public java.util.List<ListCommonCateSecondFloorResponseBodyResult> getResult() {
return this.result;
}
public static class ListCommonCateSecondFloorResponseBodyResult extends TeaModel {
/**
* <strong>example:</strong>
* <p>80018009</p>
*/
@NameInMap("CateId")
public Long cateId;
@NameInMap("CateName")
public String cateName;
/**
* <strong>example:</strong>
* <p>80018</p>
*/
@NameInMap("ParentCateId")
public Long parentCateId;
public static ListCommonCateSecondFloorResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
ListCommonCateSecondFloorResponseBodyResult self = new ListCommonCateSecondFloorResponseBodyResult();
return TeaModel.build(map, self);
}
public ListCommonCateSecondFloorResponseBodyResult setCateId(Long cateId) {
this.cateId = cateId;
return this;
}
public Long getCateId() {
return this.cateId;
}
public ListCommonCateSecondFloorResponseBodyResult setCateName(String cateName) {
this.cateName = cateName;
return this;
}
public String getCateName() {
return this.cateName;
}
public ListCommonCateSecondFloorResponseBodyResult setParentCateId(Long parentCateId) {
this.parentCateId = parentCateId;
return this;
}
public Long getParentCateId() {
return this.parentCateId;
}
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListDeviceBasicInfoHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListDeviceBasicInfoHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static ListDeviceBasicInfoHeaders build(java.util.Map<String, ?> map) throws Exception {
ListDeviceBasicInfoHeaders self = new ListDeviceBasicInfoHeaders();
return TeaModel.build(map, self);
}
public ListDeviceBasicInfoHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListDeviceBasicInfoHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ListDeviceBasicInfoHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListDeviceBasicInfoRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListDeviceBasicInfoRequest extends TeaModel {
@NameInMap("DeviceInfos")
public ListDeviceBasicInfoRequestDeviceInfos deviceInfos;
public static ListDeviceBasicInfoRequest build(java.util.Map<String, ?> map) throws Exception {
ListDeviceBasicInfoRequest self = new ListDeviceBasicInfoRequest();
return TeaModel.build(map, self);
}
public ListDeviceBasicInfoRequest setDeviceInfos(ListDeviceBasicInfoRequestDeviceInfos deviceInfos) {
this.deviceInfos = deviceInfos;
return this;
}
public ListDeviceBasicInfoRequestDeviceInfos getDeviceInfos() {
return this.deviceInfos;
}
public static class ListDeviceBasicInfoRequestDeviceInfos extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>12**45</p>
*/
@NameInMap("EncodeKey")
public String encodeKey;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>PROJECT_ID</p>
*/
@NameInMap("EncodeType")
public String encodeType;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>OPEN_ID</p>
*/
@NameInMap("IdType")
public String idType;
@NameInMap("Ids")
public java.util.List<String> ids;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("OrganizationId")
public String organizationId;
public static ListDeviceBasicInfoRequestDeviceInfos build(java.util.Map<String, ?> map) throws Exception {
ListDeviceBasicInfoRequestDeviceInfos self = new ListDeviceBasicInfoRequestDeviceInfos();
return TeaModel.build(map, self);
}
public ListDeviceBasicInfoRequestDeviceInfos setEncodeKey(String encodeKey) {
this.encodeKey = encodeKey;
return this;
}
public String getEncodeKey() {
return this.encodeKey;
}
public ListDeviceBasicInfoRequestDeviceInfos setEncodeType(String encodeType) {
this.encodeType = encodeType;
return this;
}
public String getEncodeType() {
return this.encodeType;
}
public ListDeviceBasicInfoRequestDeviceInfos setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
public ListDeviceBasicInfoRequestDeviceInfos setIds(java.util.List<String> ids) {
this.ids = ids;
return this;
}
public java.util.List<String> getIds() {
return this.ids;
}
public ListDeviceBasicInfoRequestDeviceInfos setOrganizationId(String organizationId) {
this.organizationId = organizationId;
return this;
}
public String getOrganizationId() {
return this.organizationId;
}
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListDeviceBasicInfoResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListDeviceBasicInfoResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListDeviceBasicInfoResponseBody body;
public static ListDeviceBasicInfoResponse build(java.util.Map<String, ?> map) throws Exception {
ListDeviceBasicInfoResponse self = new ListDeviceBasicInfoResponse();
return TeaModel.build(map, self);
}
public ListDeviceBasicInfoResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListDeviceBasicInfoResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListDeviceBasicInfoResponse setBody(ListDeviceBasicInfoResponseBody body) {
this.body = body;
return this;
}
public ListDeviceBasicInfoResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListDeviceBasicInfoResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListDeviceBasicInfoResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("Code")
public Integer code;
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
/**
* <strong>example:</strong>
* <p>0EC7*726E</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public java.util.Map<String, ResultValue> result;
public static ListDeviceBasicInfoResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListDeviceBasicInfoResponseBody self = new ListDeviceBasicInfoResponseBody();
return TeaModel.build(map, self);
}
public ListDeviceBasicInfoResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public ListDeviceBasicInfoResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListDeviceBasicInfoResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListDeviceBasicInfoResponseBody setResult(java.util.Map<String, ResultValue> result) {
this.result = result;
return this;
}
public java.util.Map<String, ResultValue> getResult() {
return this.result;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListDeviceBasicInfoShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListDeviceBasicInfoShrinkRequest extends TeaModel {
@NameInMap("DeviceInfos")
public String deviceInfosShrink;
public static ListDeviceBasicInfoShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
ListDeviceBasicInfoShrinkRequest self = new ListDeviceBasicInfoShrinkRequest();
return TeaModel.build(map, self);
}
public ListDeviceBasicInfoShrinkRequest setDeviceInfosShrink(String deviceInfosShrink) {
this.deviceInfosShrink = deviceInfosShrink;
return this;
}
public String getDeviceInfosShrink() {
return this.deviceInfosShrink;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListDeviceByUserIdAndChanelHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListDeviceByUserIdAndChanelHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static ListDeviceByUserIdAndChanelHeaders build(java.util.Map<String, ?> map) throws Exception {
ListDeviceByUserIdAndChanelHeaders self = new ListDeviceByUserIdAndChanelHeaders();
return TeaModel.build(map, self);
}
public ListDeviceByUserIdAndChanelHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListDeviceByUserIdAndChanelHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ListDeviceByUserIdAndChanelHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListDeviceByUserIdAndChanelRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListDeviceByUserIdAndChanelRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("ChannelInfo")
public ListDeviceByUserIdAndChanelRequestChannelInfo channelInfo;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("UserInfo")
public ListDeviceByUserIdAndChanelRequestUserInfo userInfo;
public static ListDeviceByUserIdAndChanelRequest build(java.util.Map<String, ?> map) throws Exception {
ListDeviceByUserIdAndChanelRequest self = new ListDeviceByUserIdAndChanelRequest();
return TeaModel.build(map, self);
}
public ListDeviceByUserIdAndChanelRequest setChannelInfo(ListDeviceByUserIdAndChanelRequestChannelInfo channelInfo) {
this.channelInfo = channelInfo;
return this;
}
public ListDeviceByUserIdAndChanelRequestChannelInfo getChannelInfo() {
return this.channelInfo;
}
public ListDeviceByUserIdAndChanelRequest setUserInfo(ListDeviceByUserIdAndChanelRequestUserInfo userInfo) {
this.userInfo = userInfo;
return this;
}
public ListDeviceByUserIdAndChanelRequestUserInfo getUserInfo() {
return this.userInfo;
}
public static class ListDeviceByUserIdAndChanelRequestChannelInfo extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>WeChat、ThirdApp</p>
*/
@NameInMap("Channel")
public String channel;
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("ExtInfo")
public String extInfo;
public static ListDeviceByUserIdAndChanelRequestChannelInfo build(java.util.Map<String, ?> map) throws Exception {
ListDeviceByUserIdAndChanelRequestChannelInfo self = new ListDeviceByUserIdAndChanelRequestChannelInfo();
return TeaModel.build(map, self);
}
public ListDeviceByUserIdAndChanelRequestChannelInfo setChannel(String channel) {
this.channel = channel;
return this;
}
public String getChannel() {
return this.channel;
}
public ListDeviceByUserIdAndChanelRequestChannelInfo setExtInfo(String extInfo) {
this.extInfo = extInfo;
return this;
}
public String getExtInfo() {
return this.extInfo;
}
}
public static class ListDeviceByUserIdAndChanelRequestUserInfo extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("EncodeKey")
public String encodeKey;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>PROJECT_ID</p>
*/
@NameInMap("EncodeType")
public String encodeType;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("Id")
public String id;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>OPEN_ID</p>
*/
@NameInMap("IdType")
public String idType;
/**
* <strong>example:</strong>
* <p>1***2</p>
*/
@NameInMap("OrganizationId")
public String organizationId;
public static ListDeviceByUserIdAndChanelRequestUserInfo build(java.util.Map<String, ?> map) throws Exception {
ListDeviceByUserIdAndChanelRequestUserInfo self = new ListDeviceByUserIdAndChanelRequestUserInfo();
return TeaModel.build(map, self);
}
public ListDeviceByUserIdAndChanelRequestUserInfo setEncodeKey(String encodeKey) {
this.encodeKey = encodeKey;
return this;
}
public String getEncodeKey() {
return this.encodeKey;
}
public ListDeviceByUserIdAndChanelRequestUserInfo setEncodeType(String encodeType) {
this.encodeType = encodeType;
return this;
}
public String getEncodeType() {
return this.encodeType;
}
public ListDeviceByUserIdAndChanelRequestUserInfo setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public ListDeviceByUserIdAndChanelRequestUserInfo setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
public ListDeviceByUserIdAndChanelRequestUserInfo setOrganizationId(String organizationId) {
this.organizationId = organizationId;
return this;
}
public String getOrganizationId() {
return this.organizationId;
}
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListDeviceByUserIdAndChanelResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListDeviceByUserIdAndChanelResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListDeviceByUserIdAndChanelResponseBody body;
public static ListDeviceByUserIdAndChanelResponse build(java.util.Map<String, ?> map) throws Exception {
ListDeviceByUserIdAndChanelResponse self = new ListDeviceByUserIdAndChanelResponse();
return TeaModel.build(map, self);
}
public ListDeviceByUserIdAndChanelResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListDeviceByUserIdAndChanelResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListDeviceByUserIdAndChanelResponse setBody(ListDeviceByUserIdAndChanelResponseBody body) {
this.body = body;
return this;
}
public ListDeviceByUserIdAndChanelResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListDeviceByUserIdAndChanelResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListDeviceByUserIdAndChanelResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("Code")
public Integer code;
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
/**
* <strong>example:</strong>
* <p>RE***D</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public java.util.List<ListDeviceByUserIdAndChanelResponseBodyResult> result;
public static ListDeviceByUserIdAndChanelResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListDeviceByUserIdAndChanelResponseBody self = new ListDeviceByUserIdAndChanelResponseBody();
return TeaModel.build(map, self);
}
public ListDeviceByUserIdAndChanelResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public ListDeviceByUserIdAndChanelResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListDeviceByUserIdAndChanelResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListDeviceByUserIdAndChanelResponseBody setResult(java.util.List<ListDeviceByUserIdAndChanelResponseBodyResult> result) {
this.result = result;
return this;
}
public java.util.List<ListDeviceByUserIdAndChanelResponseBodyResult> getResult() {
return this.result;
}
public static class ListDeviceByUserIdAndChanelResponseBodyResultDeviceUnionIds extends TeaModel {
/**
* <strong>example:</strong>
* <p>1553*B0C3</p>
*/
@NameInMap("DeviceUnionId")
public String deviceUnionId;
/**
* <strong>example:</strong>
* <p>1***2</p>
*/
@NameInMap("OrganizationId")
public String organizationId;
public static ListDeviceByUserIdAndChanelResponseBodyResultDeviceUnionIds build(java.util.Map<String, ?> map) throws Exception {
ListDeviceByUserIdAndChanelResponseBodyResultDeviceUnionIds self = new ListDeviceByUserIdAndChanelResponseBodyResultDeviceUnionIds();
return TeaModel.build(map, self);
}
public ListDeviceByUserIdAndChanelResponseBodyResultDeviceUnionIds setDeviceUnionId(String deviceUnionId) {
this.deviceUnionId = deviceUnionId;
return this;
}
public String getDeviceUnionId() {
return this.deviceUnionId;
}
public ListDeviceByUserIdAndChanelResponseBodyResultDeviceUnionIds setOrganizationId(String organizationId) {
this.organizationId = organizationId;
return this;
}
public String getOrganizationId() {
return this.organizationId;
}
}
public static class ListDeviceByUserIdAndChanelResponseBodyResult extends TeaModel {
/**
* <strong>example:</strong>
* <p>A963*0158</p>
*/
@NameInMap("DeviceOpenId")
public String deviceOpenId;
@NameInMap("DeviceUnionIds")
public java.util.List<ListDeviceByUserIdAndChanelResponseBodyResultDeviceUnionIds> deviceUnionIds;
public static ListDeviceByUserIdAndChanelResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
ListDeviceByUserIdAndChanelResponseBodyResult self = new ListDeviceByUserIdAndChanelResponseBodyResult();
return TeaModel.build(map, self);
}
public ListDeviceByUserIdAndChanelResponseBodyResult setDeviceOpenId(String deviceOpenId) {
this.deviceOpenId = deviceOpenId;
return this;
}
public String getDeviceOpenId() {
return this.deviceOpenId;
}
public ListDeviceByUserIdAndChanelResponseBodyResult setDeviceUnionIds(java.util.List<ListDeviceByUserIdAndChanelResponseBodyResultDeviceUnionIds> deviceUnionIds) {
this.deviceUnionIds = deviceUnionIds;
return this;
}
public java.util.List<ListDeviceByUserIdAndChanelResponseBodyResultDeviceUnionIds> getDeviceUnionIds() {
return this.deviceUnionIds;
}
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListDeviceByUserIdAndChanelShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListDeviceByUserIdAndChanelShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("ChannelInfo")
public String channelInfoShrink;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("UserInfo")
public String userInfoShrink;
public static ListDeviceByUserIdAndChanelShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
ListDeviceByUserIdAndChanelShrinkRequest self = new ListDeviceByUserIdAndChanelShrinkRequest();
return TeaModel.build(map, self);
}
public ListDeviceByUserIdAndChanelShrinkRequest setChannelInfoShrink(String channelInfoShrink) {
this.channelInfoShrink = channelInfoShrink;
return this;
}
public String getChannelInfoShrink() {
return this.channelInfoShrink;
}
public ListDeviceByUserIdAndChanelShrinkRequest setUserInfoShrink(String userInfoShrink) {
this.userInfoShrink = userInfoShrink;
return this;
}
public String getUserInfoShrink() {
return this.userInfoShrink;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListDeviceByUserIdHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListDeviceByUserIdHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static ListDeviceByUserIdHeaders build(java.util.Map<String, ?> map) throws Exception {
ListDeviceByUserIdHeaders self = new ListDeviceByUserIdHeaders();
return TeaModel.build(map, self);
}
public ListDeviceByUserIdHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListDeviceByUserIdHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ListDeviceByUserIdHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListDeviceByUserIdRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListDeviceByUserIdRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("UserInfo")
public ListDeviceByUserIdRequestUserInfo userInfo;
public static ListDeviceByUserIdRequest build(java.util.Map<String, ?> map) throws Exception {
ListDeviceByUserIdRequest self = new ListDeviceByUserIdRequest();
return TeaModel.build(map, self);
}
public ListDeviceByUserIdRequest setUserInfo(ListDeviceByUserIdRequestUserInfo userInfo) {
this.userInfo = userInfo;
return this;
}
public ListDeviceByUserIdRequestUserInfo getUserInfo() {
return this.userInfo;
}
public static class ListDeviceByUserIdRequestUserInfo extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>12**45</p>
*/
@NameInMap("EncodeKey")
public String encodeKey;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>PROJECT_ID</p>
*/
@NameInMap("EncodeType")
public String encodeType;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>HOFF****my7Iw=</p>
*/
@NameInMap("Id")
public String id;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>OPEN_ID</p>
*/
@NameInMap("IdType")
public String idType;
/**
* <strong>example:</strong>
* <p>1**2</p>
*/
@NameInMap("OrganizationId")
public String organizationId;
public static ListDeviceByUserIdRequestUserInfo build(java.util.Map<String, ?> map) throws Exception {
ListDeviceByUserIdRequestUserInfo self = new ListDeviceByUserIdRequestUserInfo();
return TeaModel.build(map, self);
}
public ListDeviceByUserIdRequestUserInfo setEncodeKey(String encodeKey) {
this.encodeKey = encodeKey;
return this;
}
public String getEncodeKey() {
return this.encodeKey;
}
public ListDeviceByUserIdRequestUserInfo setEncodeType(String encodeType) {
this.encodeType = encodeType;
return this;
}
public String getEncodeType() {
return this.encodeType;
}
public ListDeviceByUserIdRequestUserInfo setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public ListDeviceByUserIdRequestUserInfo setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
public ListDeviceByUserIdRequestUserInfo setOrganizationId(String organizationId) {
this.organizationId = organizationId;
return this;
}
public String getOrganizationId() {
return this.organizationId;
}
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListDeviceByUserIdResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListDeviceByUserIdResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListDeviceByUserIdResponseBody body;
public static ListDeviceByUserIdResponse build(java.util.Map<String, ?> map) throws Exception {
ListDeviceByUserIdResponse self = new ListDeviceByUserIdResponse();
return TeaModel.build(map, self);
}
public ListDeviceByUserIdResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListDeviceByUserIdResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListDeviceByUserIdResponse setBody(ListDeviceByUserIdResponseBody body) {
this.body = body;
return this;
}
public ListDeviceByUserIdResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListDeviceByUserIdResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListDeviceByUserIdResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("Code")
public Integer code;
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
/**
* <strong>example:</strong>
* <p>0EC7*726E</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public java.util.List<ListDeviceByUserIdResponseBodyResult> result;
public static ListDeviceByUserIdResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListDeviceByUserIdResponseBody self = new ListDeviceByUserIdResponseBody();
return TeaModel.build(map, self);
}
public ListDeviceByUserIdResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public ListDeviceByUserIdResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListDeviceByUserIdResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListDeviceByUserIdResponseBody setResult(java.util.List<ListDeviceByUserIdResponseBodyResult> result) {
this.result = result;
return this;
}
public java.util.List<ListDeviceByUserIdResponseBodyResult> getResult() {
return this.result;
}
public static class ListDeviceByUserIdResponseBodyResultDeviceUnionIds extends TeaModel {
/**
* <strong>example:</strong>
* <p>1553*B0C3</p>
*/
@NameInMap("DeviceUnionId")
public String deviceUnionId;
/**
* <strong>example:</strong>
* <p>1**2</p>
*/
@NameInMap("OrganizationId")
public String organizationId;
public static ListDeviceByUserIdResponseBodyResultDeviceUnionIds build(java.util.Map<String, ?> map) throws Exception {
ListDeviceByUserIdResponseBodyResultDeviceUnionIds self = new ListDeviceByUserIdResponseBodyResultDeviceUnionIds();
return TeaModel.build(map, self);
}
public ListDeviceByUserIdResponseBodyResultDeviceUnionIds setDeviceUnionId(String deviceUnionId) {
this.deviceUnionId = deviceUnionId;
return this;
}
public String getDeviceUnionId() {
return this.deviceUnionId;
}
public ListDeviceByUserIdResponseBodyResultDeviceUnionIds setOrganizationId(String organizationId) {
this.organizationId = organizationId;
return this;
}
public String getOrganizationId() {
return this.organizationId;
}
}
public static class ListDeviceByUserIdResponseBodyResult extends TeaModel {
/**
* <strong>example:</strong>
* <p>A963*0158</p>
*/
@NameInMap("DeviceOpenId")
public String deviceOpenId;
@NameInMap("DeviceUnionIds")
public java.util.List<ListDeviceByUserIdResponseBodyResultDeviceUnionIds> deviceUnionIds;
public static ListDeviceByUserIdResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
ListDeviceByUserIdResponseBodyResult self = new ListDeviceByUserIdResponseBodyResult();
return TeaModel.build(map, self);
}
public ListDeviceByUserIdResponseBodyResult setDeviceOpenId(String deviceOpenId) {
this.deviceOpenId = deviceOpenId;
return this;
}
public String getDeviceOpenId() {
return this.deviceOpenId;
}
public ListDeviceByUserIdResponseBodyResult setDeviceUnionIds(java.util.List<ListDeviceByUserIdResponseBodyResultDeviceUnionIds> deviceUnionIds) {
this.deviceUnionIds = deviceUnionIds;
return this;
}
public java.util.List<ListDeviceByUserIdResponseBodyResultDeviceUnionIds> getDeviceUnionIds() {
return this.deviceUnionIds;
}
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListDeviceByUserIdShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListDeviceByUserIdShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("UserInfo")
public String userInfoShrink;
public static ListDeviceByUserIdShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
ListDeviceByUserIdShrinkRequest self = new ListDeviceByUserIdShrinkRequest();
return TeaModel.build(map, self);
}
public ListDeviceByUserIdShrinkRequest setUserInfoShrink(String userInfoShrink) {
this.userInfoShrink = userInfoShrink;
return this;
}
public String getUserInfoShrink() {
return this.userInfoShrink;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListDeviceIdByIdentitiesHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListDeviceIdByIdentitiesHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static ListDeviceIdByIdentitiesHeaders build(java.util.Map<String, ?> map) throws Exception {
ListDeviceIdByIdentitiesHeaders self = new ListDeviceIdByIdentitiesHeaders();
return TeaModel.build(map, self);
}
public ListDeviceIdByIdentitiesHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListDeviceIdByIdentitiesHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ListDeviceIdByIdentitiesHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListDeviceIdByIdentitiesRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListDeviceIdByIdentitiesRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>125****0946</p>
*/
@NameInMap("EncodeKey")
public String encodeKey;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>PROJECT_ID</p>
*/
@NameInMap("EncodeType")
public String encodeType;
@NameInMap("IdentityIds")
public java.util.List<String> identityIds;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>MAC</p>
*/
@NameInMap("IdentityType")
public String identityType;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>Mm*****XnZ8</p>
*/
@NameInMap("ProductKey")
public String productKey;
public static ListDeviceIdByIdentitiesRequest build(java.util.Map<String, ?> map) throws Exception {
ListDeviceIdByIdentitiesRequest self = new ListDeviceIdByIdentitiesRequest();
return TeaModel.build(map, self);
}
public ListDeviceIdByIdentitiesRequest setEncodeKey(String encodeKey) {
this.encodeKey = encodeKey;
return this;
}
public String getEncodeKey() {
return this.encodeKey;
}
public ListDeviceIdByIdentitiesRequest setEncodeType(String encodeType) {
this.encodeType = encodeType;
return this;
}
public String getEncodeType() {
return this.encodeType;
}
public ListDeviceIdByIdentitiesRequest setIdentityIds(java.util.List<String> identityIds) {
this.identityIds = identityIds;
return this;
}
public java.util.List<String> getIdentityIds() {
return this.identityIds;
}
public ListDeviceIdByIdentitiesRequest setIdentityType(String identityType) {
this.identityType = identityType;
return this;
}
public String getIdentityType() {
return this.identityType;
}
public ListDeviceIdByIdentitiesRequest setProductKey(String productKey) {
this.productKey = productKey;
return this;
}
public String getProductKey() {
return this.productKey;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListDeviceIdByIdentitiesResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListDeviceIdByIdentitiesResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListDeviceIdByIdentitiesResponseBody body;
public static ListDeviceIdByIdentitiesResponse build(java.util.Map<String, ?> map) throws Exception {
ListDeviceIdByIdentitiesResponse self = new ListDeviceIdByIdentitiesResponse();
return TeaModel.build(map, self);
}
public ListDeviceIdByIdentitiesResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListDeviceIdByIdentitiesResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListDeviceIdByIdentitiesResponse setBody(ListDeviceIdByIdentitiesResponseBody body) {
this.body = body;
return this;
}
public ListDeviceIdByIdentitiesResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListDeviceIdByIdentitiesResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListDeviceIdByIdentitiesResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("Code")
public Integer code;
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
/**
* <strong>example:</strong>
* <p>0EC7*726E</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public java.util.Map<String, ResultValue> result;
public static ListDeviceIdByIdentitiesResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListDeviceIdByIdentitiesResponseBody self = new ListDeviceIdByIdentitiesResponseBody();
return TeaModel.build(map, self);
}
public ListDeviceIdByIdentitiesResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public ListDeviceIdByIdentitiesResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListDeviceIdByIdentitiesResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListDeviceIdByIdentitiesResponseBody setResult(java.util.Map<String, ResultValue> result) {
this.result = result;
return this;
}
public java.util.Map<String, ResultValue> getResult() {
return this.result;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListDeviceIdByIdentitiesShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListDeviceIdByIdentitiesShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>125****0946</p>
*/
@NameInMap("EncodeKey")
public String encodeKey;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>PROJECT_ID</p>
*/
@NameInMap("EncodeType")
public String encodeType;
@NameInMap("IdentityIds")
public String identityIdsShrink;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>MAC</p>
*/
@NameInMap("IdentityType")
public String identityType;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>Mm*****XnZ8</p>
*/
@NameInMap("ProductKey")
public String productKey;
public static ListDeviceIdByIdentitiesShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
ListDeviceIdByIdentitiesShrinkRequest self = new ListDeviceIdByIdentitiesShrinkRequest();
return TeaModel.build(map, self);
}
public ListDeviceIdByIdentitiesShrinkRequest setEncodeKey(String encodeKey) {
this.encodeKey = encodeKey;
return this;
}
public String getEncodeKey() {
return this.encodeKey;
}
public ListDeviceIdByIdentitiesShrinkRequest setEncodeType(String encodeType) {
this.encodeType = encodeType;
return this;
}
public String getEncodeType() {
return this.encodeType;
}
public ListDeviceIdByIdentitiesShrinkRequest setIdentityIdsShrink(String identityIdsShrink) {
this.identityIdsShrink = identityIdsShrink;
return this;
}
public String getIdentityIdsShrink() {
return this.identityIdsShrink;
}
public ListDeviceIdByIdentitiesShrinkRequest setIdentityType(String identityType) {
this.identityType = identityType;
return this;
}
public String getIdentityType() {
return this.identityType;
}
public ListDeviceIdByIdentitiesShrinkRequest setProductKey(String productKey) {
this.productKey = productKey;
return this;
}
public String getProductKey() {
return this.productKey;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListMusicHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListMusicHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static ListMusicHeaders build(java.util.Map<String, ?> map) throws Exception {
ListMusicHeaders self = new ListMusicHeaders();
return TeaModel.build(map, self);
}
public ListMusicHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListMusicHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ListMusicHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListMusicRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListMusicRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("DeviceInfo")
public ListMusicRequestDeviceInfo deviceInfo;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Payload")
public ListMusicRequestPayload payload;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("UserInfo")
public ListMusicRequestUserInfo userInfo;
public static ListMusicRequest build(java.util.Map<String, ?> map) throws Exception {
ListMusicRequest self = new ListMusicRequest();
return TeaModel.build(map, self);
}
public ListMusicRequest setDeviceInfo(ListMusicRequestDeviceInfo deviceInfo) {
this.deviceInfo = deviceInfo;
return this;
}
public ListMusicRequestDeviceInfo getDeviceInfo() {
return this.deviceInfo;
}
public ListMusicRequest setPayload(ListMusicRequestPayload payload) {
this.payload = payload;
return this;
}
public ListMusicRequestPayload getPayload() {
return this.payload;
}
public ListMusicRequest setUserInfo(ListMusicRequestUserInfo userInfo) {
this.userInfo = userInfo;
return this;
}
public ListMusicRequestUserInfo getUserInfo() {
return this.userInfo;
}
public static class ListMusicRequestDeviceInfo extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>12**45</p>
*/
@NameInMap("EncodeKey")
public String encodeKey;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>PACKAGE_NAME</p>
*/
@NameInMap("EncodeType")
public String encodeType;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>DAFE****ce3ej=</p>
*/
@NameInMap("Id")
public String id;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>OPEN_ID</p>
*/
@NameInMap("IdType")
public String idType;
/**
* <strong>example:</strong>
* <p>1**2</p>
*/
@NameInMap("OrganizationId")
public String organizationId;
public static ListMusicRequestDeviceInfo build(java.util.Map<String, ?> map) throws Exception {
ListMusicRequestDeviceInfo self = new ListMusicRequestDeviceInfo();
return TeaModel.build(map, self);
}
public ListMusicRequestDeviceInfo setEncodeKey(String encodeKey) {
this.encodeKey = encodeKey;
return this;
}
public String getEncodeKey() {
return this.encodeKey;
}
public ListMusicRequestDeviceInfo setEncodeType(String encodeType) {
this.encodeType = encodeType;
return this;
}
public String getEncodeType() {
return this.encodeType;
}
public ListMusicRequestDeviceInfo setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public ListMusicRequestDeviceInfo setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
public ListMusicRequestDeviceInfo setOrganizationId(String organizationId) {
this.organizationId = organizationId;
return this;
}
public String getOrganizationId() {
return this.organizationId;
}
}
public static class ListMusicRequestPayload extends TeaModel {
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("CurrentPage")
public Integer currentPage;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("MusicId")
public Long musicId;
@NameInMap("MusicName")
public String musicName;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("MusicType")
public Long musicType;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("MusicTypeName")
public String musicTypeName;
/**
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("PageSize")
public Integer pageSize;
public static ListMusicRequestPayload build(java.util.Map<String, ?> map) throws Exception {
ListMusicRequestPayload self = new ListMusicRequestPayload();
return TeaModel.build(map, self);
}
public ListMusicRequestPayload setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
return this;
}
public Integer getCurrentPage() {
return this.currentPage;
}
public ListMusicRequestPayload setMusicId(Long musicId) {
this.musicId = musicId;
return this;
}
public Long getMusicId() {
return this.musicId;
}
public ListMusicRequestPayload setMusicName(String musicName) {
this.musicName = musicName;
return this;
}
public String getMusicName() {
return this.musicName;
}
public ListMusicRequestPayload setMusicType(Long musicType) {
this.musicType = musicType;
return this;
}
public Long getMusicType() {
return this.musicType;
}
public ListMusicRequestPayload setMusicTypeName(String musicTypeName) {
this.musicTypeName = musicTypeName;
return this;
}
public String getMusicTypeName() {
return this.musicTypeName;
}
public ListMusicRequestPayload setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
}
public static class ListMusicRequestUserInfo extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>12**45</p>
*/
@NameInMap("EncodeKey")
public String encodeKey;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>PACKAGE_NAME</p>
*/
@NameInMap("EncodeType")
public String encodeType;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>HOFF****my7Iw=</p>
*/
@NameInMap("Id")
public String id;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>OPEN_ID</p>
*/
@NameInMap("IdType")
public String idType;
/**
* <strong>example:</strong>
* <p>1**2</p>
*/
@NameInMap("OrganizationId")
public String organizationId;
public static ListMusicRequestUserInfo build(java.util.Map<String, ?> map) throws Exception {
ListMusicRequestUserInfo self = new ListMusicRequestUserInfo();
return TeaModel.build(map, self);
}
public ListMusicRequestUserInfo setEncodeKey(String encodeKey) {
this.encodeKey = encodeKey;
return this;
}
public String getEncodeKey() {
return this.encodeKey;
}
public ListMusicRequestUserInfo setEncodeType(String encodeType) {
this.encodeType = encodeType;
return this;
}
public String getEncodeType() {
return this.encodeType;
}
public ListMusicRequestUserInfo setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public ListMusicRequestUserInfo setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
public ListMusicRequestUserInfo setOrganizationId(String organizationId) {
this.organizationId = organizationId;
return this;
}
public String getOrganizationId() {
return this.organizationId;
}
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListMusicResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListMusicResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListMusicResponseBody body;
public static ListMusicResponse build(java.util.Map<String, ?> map) throws Exception {
ListMusicResponse self = new ListMusicResponse();
return TeaModel.build(map, self);
}
public ListMusicResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListMusicResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListMusicResponse setBody(ListMusicResponseBody body) {
this.body = body;
return this;
}
public ListMusicResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListMusicResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListMusicResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("Code")
public Integer code;
@NameInMap("Message")
public String message;
/**
* <strong>example:</strong>
* <p>43<em><strong>28C-A810-5</strong></em>-8747-EC226A086881</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public ListMusicResponseBodyResult result;
public static ListMusicResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListMusicResponseBody self = new ListMusicResponseBody();
return TeaModel.build(map, self);
}
public ListMusicResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public ListMusicResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListMusicResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListMusicResponseBody setResult(ListMusicResponseBodyResult result) {
this.result = result;
return this;
}
public ListMusicResponseBodyResult getResult() {
return this.result;
}
public static class ListMusicResponseBodyResultModel extends TeaModel {
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("MusicId")
public Long musicId;
/**
* <strong>example:</strong>
* <p>xx</p>
*/
@NameInMap("MusicName")
public String musicName;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("MusicType")
public Long musicType;
/**
* <strong>example:</strong>
* <p>xx</p>
*/
@NameInMap("MusicTypeName")
public String musicTypeName;
/**
* <strong>example:</strong>
* <p><a href="http://xx">http://xx</a></p>
*/
@NameInMap("MusicUrl")
public String musicUrl;
public static ListMusicResponseBodyResultModel build(java.util.Map<String, ?> map) throws Exception {
ListMusicResponseBodyResultModel self = new ListMusicResponseBodyResultModel();
return TeaModel.build(map, self);
}
public ListMusicResponseBodyResultModel setMusicId(Long musicId) {
this.musicId = musicId;
return this;
}
public Long getMusicId() {
return this.musicId;
}
public ListMusicResponseBodyResultModel setMusicName(String musicName) {
this.musicName = musicName;
return this;
}
public String getMusicName() {
return this.musicName;
}
public ListMusicResponseBodyResultModel setMusicType(Long musicType) {
this.musicType = musicType;
return this;
}
public Long getMusicType() {
return this.musicType;
}
public ListMusicResponseBodyResultModel setMusicTypeName(String musicTypeName) {
this.musicTypeName = musicTypeName;
return this;
}
public String getMusicTypeName() {
return this.musicTypeName;
}
public ListMusicResponseBodyResultModel setMusicUrl(String musicUrl) {
this.musicUrl = musicUrl;
return this;
}
public String getMusicUrl() {
return this.musicUrl;
}
}
public static class ListMusicResponseBodyResult extends TeaModel {
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("CurrentPage")
public Integer currentPage;
@NameInMap("Model")
public java.util.List<ListMusicResponseBodyResultModel> model;
/**
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("PageCount")
public Integer pageCount;
/**
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("PageSize")
public Integer pageSize;
/**
* <strong>example:</strong>
* <p>100</p>
*/
@NameInMap("TotalCount")
public Integer totalCount;
public static ListMusicResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
ListMusicResponseBodyResult self = new ListMusicResponseBodyResult();
return TeaModel.build(map, self);
}
public ListMusicResponseBodyResult setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
return this;
}
public Integer getCurrentPage() {
return this.currentPage;
}
public ListMusicResponseBodyResult setModel(java.util.List<ListMusicResponseBodyResultModel> model) {
this.model = model;
return this;
}
public java.util.List<ListMusicResponseBodyResultModel> getModel() {
return this.model;
}
public ListMusicResponseBodyResult setPageCount(Integer pageCount) {
this.pageCount = pageCount;
return this;
}
public Integer getPageCount() {
return this.pageCount;
}
public ListMusicResponseBodyResult setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public ListMusicResponseBodyResult setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
return this;
}
public Integer getTotalCount() {
return this.totalCount;
}
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListMusicShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListMusicShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("DeviceInfo")
public String deviceInfoShrink;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Payload")
public String payloadShrink;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("UserInfo")
public String userInfoShrink;
public static ListMusicShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
ListMusicShrinkRequest self = new ListMusicShrinkRequest();
return TeaModel.build(map, self);
}
public ListMusicShrinkRequest setDeviceInfoShrink(String deviceInfoShrink) {
this.deviceInfoShrink = deviceInfoShrink;
return this;
}
public String getDeviceInfoShrink() {
return this.deviceInfoShrink;
}
public ListMusicShrinkRequest setPayloadShrink(String payloadShrink) {
this.payloadShrink = payloadShrink;
return this;
}
public String getPayloadShrink() {
return this.payloadShrink;
}
public ListMusicShrinkRequest setUserInfoShrink(String userInfoShrink) {
this.userInfoShrink = userInfoShrink;
return this;
}
public String getUserInfoShrink() {
return this.userInfoShrink;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListPlayHistoryHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListPlayHistoryHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static ListPlayHistoryHeaders build(java.util.Map<String, ?> map) throws Exception {
ListPlayHistoryHeaders self = new ListPlayHistoryHeaders();
return TeaModel.build(map, self);
}
public ListPlayHistoryHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListPlayHistoryHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ListPlayHistoryHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListPlayHistoryRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListPlayHistoryRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("DeviceInfo")
public ListPlayHistoryRequestDeviceInfo deviceInfo;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Request")
public ListPlayHistoryRequestRequest request;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("UserInfo")
public ListPlayHistoryRequestUserInfo userInfo;
public static ListPlayHistoryRequest build(java.util.Map<String, ?> map) throws Exception {
ListPlayHistoryRequest self = new ListPlayHistoryRequest();
return TeaModel.build(map, self);
}
public ListPlayHistoryRequest setDeviceInfo(ListPlayHistoryRequestDeviceInfo deviceInfo) {
this.deviceInfo = deviceInfo;
return this;
}
public ListPlayHistoryRequestDeviceInfo getDeviceInfo() {
return this.deviceInfo;
}
public ListPlayHistoryRequest setRequest(ListPlayHistoryRequestRequest request) {
this.request = request;
return this;
}
public ListPlayHistoryRequestRequest getRequest() {
return this.request;
}
public ListPlayHistoryRequest setUserInfo(ListPlayHistoryRequestUserInfo userInfo) {
this.userInfo = userInfo;
return this;
}
public ListPlayHistoryRequestUserInfo getUserInfo() {
return this.userInfo;
}
public static class ListPlayHistoryRequestDeviceInfo extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>12**45</p>
*/
@NameInMap("EncodeKey")
public String encodeKey;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>PACKAGE_NAME</p>
*/
@NameInMap("EncodeType")
public String encodeType;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>DAFE****ce3ej=</p>
*/
@NameInMap("Id")
public String id;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>OPEN_ID</p>
*/
@NameInMap("IdType")
public String idType;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1**2</p>
*/
@NameInMap("OrganizationId")
public String organizationId;
public static ListPlayHistoryRequestDeviceInfo build(java.util.Map<String, ?> map) throws Exception {
ListPlayHistoryRequestDeviceInfo self = new ListPlayHistoryRequestDeviceInfo();
return TeaModel.build(map, self);
}
public ListPlayHistoryRequestDeviceInfo setEncodeKey(String encodeKey) {
this.encodeKey = encodeKey;
return this;
}
public String getEncodeKey() {
return this.encodeKey;
}
public ListPlayHistoryRequestDeviceInfo setEncodeType(String encodeType) {
this.encodeType = encodeType;
return this;
}
public String getEncodeType() {
return this.encodeType;
}
public ListPlayHistoryRequestDeviceInfo setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public ListPlayHistoryRequestDeviceInfo setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
public ListPlayHistoryRequestDeviceInfo setOrganizationId(String organizationId) {
this.organizationId = organizationId;
return this;
}
public String getOrganizationId() {
return this.organizationId;
}
}
public static class ListPlayHistoryRequestRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("PageNum")
public Integer pageNum;
/**
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("PageSize")
public Integer pageSize;
/**
* <strong>example:</strong>
* <p>music</p>
*/
@NameInMap("Type")
public String type;
public static ListPlayHistoryRequestRequest build(java.util.Map<String, ?> map) throws Exception {
ListPlayHistoryRequestRequest self = new ListPlayHistoryRequestRequest();
return TeaModel.build(map, self);
}
public ListPlayHistoryRequestRequest setPageNum(Integer pageNum) {
this.pageNum = pageNum;
return this;
}
public Integer getPageNum() {
return this.pageNum;
}
public ListPlayHistoryRequestRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public ListPlayHistoryRequestRequest setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
public static class ListPlayHistoryRequestUserInfo extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>12**45</p>
*/
@NameInMap("EncodeKey")
public String encodeKey;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>PACKAGE_NAME</p>
*/
@NameInMap("EncodeType")
public String encodeType;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>HOFF****my7Iw=</p>
*/
@NameInMap("Id")
public String id;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>OPEN_ID</p>
*/
@NameInMap("IdType")
public String idType;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1**2</p>
*/
@NameInMap("OrganizationId")
public String organizationId;
public static ListPlayHistoryRequestUserInfo build(java.util.Map<String, ?> map) throws Exception {
ListPlayHistoryRequestUserInfo self = new ListPlayHistoryRequestUserInfo();
return TeaModel.build(map, self);
}
public ListPlayHistoryRequestUserInfo setEncodeKey(String encodeKey) {
this.encodeKey = encodeKey;
return this;
}
public String getEncodeKey() {
return this.encodeKey;
}
public ListPlayHistoryRequestUserInfo setEncodeType(String encodeType) {
this.encodeType = encodeType;
return this;
}
public String getEncodeType() {
return this.encodeType;
}
public ListPlayHistoryRequestUserInfo setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public ListPlayHistoryRequestUserInfo setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
public ListPlayHistoryRequestUserInfo setOrganizationId(String organizationId) {
this.organizationId = organizationId;
return this;
}
public String getOrganizationId() {
return this.organizationId;
}
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListPlayHistoryResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListPlayHistoryResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListPlayHistoryResponseBody body;
public static ListPlayHistoryResponse build(java.util.Map<String, ?> map) throws Exception {
ListPlayHistoryResponse self = new ListPlayHistoryResponse();
return TeaModel.build(map, self);
}
public ListPlayHistoryResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListPlayHistoryResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListPlayHistoryResponse setBody(ListPlayHistoryResponseBody body) {
this.body = body;
return this;
}
public ListPlayHistoryResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListPlayHistoryResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListPlayHistoryResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("Code")
public Integer code;
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
@NameInMap("Result")
public java.util.List<ListPlayHistoryResponseBodyResult> result;
/**
* <p>Id of the request</p>
*
* <strong>example:</strong>
* <p>F12B6147-5925-19E5-A3AD-E1EE1360F34E</p>
*/
@NameInMap("requestId")
public String requestId;
public static ListPlayHistoryResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListPlayHistoryResponseBody self = new ListPlayHistoryResponseBody();
return TeaModel.build(map, self);
}
public ListPlayHistoryResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public ListPlayHistoryResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListPlayHistoryResponseBody setResult(java.util.List<ListPlayHistoryResponseBodyResult> result) {
this.result = result;
return this;
}
public java.util.List<ListPlayHistoryResponseBodyResult> getResult() {
return this.result;
}
public ListPlayHistoryResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public static class ListPlayHistoryResponseBodyResultAuthorsCover extends TeaModel {
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("CanResize")
public Boolean canResize;
/**
* <strong>example:</strong>
* <p><a href="https://a.jpg">https://a.jpg</a></p>
*/
@NameInMap("Img")
public String img;
/**
* <strong>example:</strong>
* <p><a href="https://a.jpg">https://a.jpg</a></p>
*/
@NameInMap("Large")
public String large;
/**
* <strong>example:</strong>
* <p><a href="https://a.jpg">https://a.jpg</a></p>
*/
@NameInMap("Medium")
public String medium;
/**
* <strong>example:</strong>
* <p><a href="https://a.jpg">https://a.jpg</a></p>
*/
@NameInMap("Small")
public String small;
public static ListPlayHistoryResponseBodyResultAuthorsCover build(java.util.Map<String, ?> map) throws Exception {
ListPlayHistoryResponseBodyResultAuthorsCover self = new ListPlayHistoryResponseBodyResultAuthorsCover();
return TeaModel.build(map, self);
}
public ListPlayHistoryResponseBodyResultAuthorsCover setCanResize(Boolean canResize) {
this.canResize = canResize;
return this;
}
public Boolean getCanResize() {
return this.canResize;
}
public ListPlayHistoryResponseBodyResultAuthorsCover setImg(String img) {
this.img = img;
return this;
}
public String getImg() {
return this.img;
}
public ListPlayHistoryResponseBodyResultAuthorsCover setLarge(String large) {
this.large = large;
return this;
}
public String getLarge() {
return this.large;
}
public ListPlayHistoryResponseBodyResultAuthorsCover setMedium(String medium) {
this.medium = medium;
return this;
}
public String getMedium() {
return this.medium;
}
public ListPlayHistoryResponseBodyResultAuthorsCover setSmall(String small) {
this.small = small;
return this;
}
public String getSmall() {
return this.small;
}
}
public static class ListPlayHistoryResponseBodyResultAuthors extends TeaModel {
@NameInMap("AuthorTypes")
public java.util.List<String> authorTypes;
@NameInMap("Cover")
public ListPlayHistoryResponseBodyResultAuthorsCover cover;
@NameInMap("Description")
public String description;
/**
* <strong>example:</strong>
* <p>MALE</p>
*/
@NameInMap("Gender")
public String gender;
/**
* <strong>example:</strong>
* <p>13597709</p>
*/
@NameInMap("Id")
public Long id;
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("Online")
public Boolean online;
/**
* <strong>example:</strong>
* <p>123123</p>
*/
@NameInMap("RawId")
public String rawId;
/**
* <strong>example:</strong>
* <p>qingting</p>
*/
@NameInMap("Source")
public String source;
@NameInMap("Title")
public String title;
public static ListPlayHistoryResponseBodyResultAuthors build(java.util.Map<String, ?> map) throws Exception {
ListPlayHistoryResponseBodyResultAuthors self = new ListPlayHistoryResponseBodyResultAuthors();
return TeaModel.build(map, self);
}
public ListPlayHistoryResponseBodyResultAuthors setAuthorTypes(java.util.List<String> authorTypes) {
this.authorTypes = authorTypes;
return this;
}
public java.util.List<String> getAuthorTypes() {
return this.authorTypes;
}
public ListPlayHistoryResponseBodyResultAuthors setCover(ListPlayHistoryResponseBodyResultAuthorsCover cover) {
this.cover = cover;
return this;
}
public ListPlayHistoryResponseBodyResultAuthorsCover getCover() {
return this.cover;
}
public ListPlayHistoryResponseBodyResultAuthors setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public ListPlayHistoryResponseBodyResultAuthors setGender(String gender) {
this.gender = gender;
return this;
}
public String getGender() {
return this.gender;
}
public ListPlayHistoryResponseBodyResultAuthors setId(Long id) {
this.id = id;
return this;
}
public Long getId() {
return this.id;
}
public ListPlayHistoryResponseBodyResultAuthors setOnline(Boolean online) {
this.online = online;
return this;
}
public Boolean getOnline() {
return this.online;
}
public ListPlayHistoryResponseBodyResultAuthors setRawId(String rawId) {
this.rawId = rawId;
return this;
}
public String getRawId() {
return this.rawId;
}
public ListPlayHistoryResponseBodyResultAuthors setSource(String source) {
this.source = source;
return this;
}
public String getSource() {
return this.source;
}
public ListPlayHistoryResponseBodyResultAuthors setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
}
public static class ListPlayHistoryResponseBodyResultCover extends TeaModel {
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("CanResize")
public Boolean canResize;
/**
* <strong>example:</strong>
* <p><a href="http://pic.qtfm.cn/2017/0207/2017020718285.jpg">http://pic.qtfm.cn/2017/0207/2017020718285.jpg</a></p>
*/
@NameInMap("Img")
public String img;
/**
* <strong>example:</strong>
* <p><a href="http://pic.qtfm.cn/2017/0207/2017020718285.jpg">http://pic.qtfm.cn/2017/0207/2017020718285.jpg</a></p>
*/
@NameInMap("Large")
public String large;
/**
* <strong>example:</strong>
* <p><a href="http://pic.qtfm.cn/2017/0207/2017020718285.jpg">http://pic.qtfm.cn/2017/0207/2017020718285.jpg</a></p>
*/
@NameInMap("Mediam")
public String mediam;
/**
* <strong>example:</strong>
* <p><a href="http://pic.qtfm.cn/2017/0207/2017020718285.jpg">http://pic.qtfm.cn/2017/0207/2017020718285.jpg</a></p>
*/
@NameInMap("Medium")
public String medium;
/**
* <strong>example:</strong>
* <p><a href="http://pic.qtfm.cn/2017/0207/2017020718285.jpg">http://pic.qtfm.cn/2017/0207/2017020718285.jpg</a></p>
*/
@NameInMap("Small")
public String small;
public static ListPlayHistoryResponseBodyResultCover build(java.util.Map<String, ?> map) throws Exception {
ListPlayHistoryResponseBodyResultCover self = new ListPlayHistoryResponseBodyResultCover();
return TeaModel.build(map, self);
}
public ListPlayHistoryResponseBodyResultCover setCanResize(Boolean canResize) {
this.canResize = canResize;
return this;
}
public Boolean getCanResize() {
return this.canResize;
}
public ListPlayHistoryResponseBodyResultCover setImg(String img) {
this.img = img;
return this;
}
public String getImg() {
return this.img;
}
public ListPlayHistoryResponseBodyResultCover setLarge(String large) {
this.large = large;
return this;
}
public String getLarge() {
return this.large;
}
public ListPlayHistoryResponseBodyResultCover setMediam(String mediam) {
this.mediam = mediam;
return this;
}
public String getMediam() {
return this.mediam;
}
public ListPlayHistoryResponseBodyResultCover setMedium(String medium) {
this.medium = medium;
return this;
}
public String getMedium() {
return this.medium;
}
public ListPlayHistoryResponseBodyResultCover setSmall(String small) {
this.small = small;
return this;
}
public String getSmall() {
return this.small;
}
}
public static class ListPlayHistoryResponseBodyResult extends TeaModel {
@NameInMap("Alias")
public java.util.List<String> alias;
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("Audition")
public Boolean audition;
@NameInMap("Authors")
public java.util.List<ListPlayHistoryResponseBodyResultAuthors> authors;
/**
* <strong>example:</strong>
* <p>audio</p>
*/
@NameInMap("Category")
public String category;
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("Charge")
public Boolean charge;
/**
* <strong>example:</strong>
* <p>80012017</p>
*/
@NameInMap("CommCateId")
public Long commCateId;
@NameInMap("Cover")
public ListPlayHistoryResponseBodyResultCover cover;
@NameInMap("Description")
public String description;
/**
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("HotScore")
public Double hotScore;
/**
* <strong>example:</strong>
* <p>13597709</p>
*/
@NameInMap("Id")
public Long id;
/**
* <strong>example:</strong>
* <p>ALBUM</p>
*/
@NameInMap("ItemType")
public String itemType;
/**
* <strong>example:</strong>
* <p>qingting</p>
*/
@NameInMap("Source")
public String source;
@NameInMap("Title")
public String title;
/**
* <strong>example:</strong>
* <p>program</p>
*/
@NameInMap("Type")
public String type;
/**
* <strong>example:</strong>
* <p>VALID</p>
*/
@NameInMap("Valid")
public String valid;
public static ListPlayHistoryResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
ListPlayHistoryResponseBodyResult self = new ListPlayHistoryResponseBodyResult();
return TeaModel.build(map, self);
}
public ListPlayHistoryResponseBodyResult setAlias(java.util.List<String> alias) {
this.alias = alias;
return this;
}
public java.util.List<String> getAlias() {
return this.alias;
}
public ListPlayHistoryResponseBodyResult setAudition(Boolean audition) {
this.audition = audition;
return this;
}
public Boolean getAudition() {
return this.audition;
}
public ListPlayHistoryResponseBodyResult setAuthors(java.util.List<ListPlayHistoryResponseBodyResultAuthors> authors) {
this.authors = authors;
return this;
}
public java.util.List<ListPlayHistoryResponseBodyResultAuthors> getAuthors() {
return this.authors;
}
public ListPlayHistoryResponseBodyResult setCategory(String category) {
this.category = category;
return this;
}
public String getCategory() {
return this.category;
}
public ListPlayHistoryResponseBodyResult setCharge(Boolean charge) {
this.charge = charge;
return this;
}
public Boolean getCharge() {
return this.charge;
}
public ListPlayHistoryResponseBodyResult setCommCateId(Long commCateId) {
this.commCateId = commCateId;
return this;
}
public Long getCommCateId() {
return this.commCateId;
}
public ListPlayHistoryResponseBodyResult setCover(ListPlayHistoryResponseBodyResultCover cover) {
this.cover = cover;
return this;
}
public ListPlayHistoryResponseBodyResultCover getCover() {
return this.cover;
}
public ListPlayHistoryResponseBodyResult setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public ListPlayHistoryResponseBodyResult setHotScore(Double hotScore) {
this.hotScore = hotScore;
return this;
}
public Double getHotScore() {
return this.hotScore;
}
public ListPlayHistoryResponseBodyResult setId(Long id) {
this.id = id;
return this;
}
public Long getId() {
return this.id;
}
public ListPlayHistoryResponseBodyResult setItemType(String itemType) {
this.itemType = itemType;
return this;
}
public String getItemType() {
return this.itemType;
}
public ListPlayHistoryResponseBodyResult setSource(String source) {
this.source = source;
return this;
}
public String getSource() {
return this.source;
}
public ListPlayHistoryResponseBodyResult setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
public ListPlayHistoryResponseBodyResult setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
public ListPlayHistoryResponseBodyResult setValid(String valid) {
this.valid = valid;
return this;
}
public String getValid() {
return this.valid;
}
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListPlayHistoryShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListPlayHistoryShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("DeviceInfo")
public String deviceInfoShrink;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Request")
public String requestShrink;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("UserInfo")
public String userInfoShrink;
public static ListPlayHistoryShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
ListPlayHistoryShrinkRequest self = new ListPlayHistoryShrinkRequest();
return TeaModel.build(map, self);
}
public ListPlayHistoryShrinkRequest setDeviceInfoShrink(String deviceInfoShrink) {
this.deviceInfoShrink = deviceInfoShrink;
return this;
}
public String getDeviceInfoShrink() {
return this.deviceInfoShrink;
}
public ListPlayHistoryShrinkRequest setRequestShrink(String requestShrink) {
this.requestShrink = requestShrink;
return this;
}
public String getRequestShrink() {
return this.requestShrink;
}
public ListPlayHistoryShrinkRequest setUserInfoShrink(String userInfoShrink) {
this.userInfoShrink = userInfoShrink;
return this;
}
public String getUserInfoShrink() {
return this.userInfoShrink;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListRecommendContentHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListRecommendContentHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static ListRecommendContentHeaders build(java.util.Map<String, ?> map) throws Exception {
ListRecommendContentHeaders self = new ListRecommendContentHeaders();
return TeaModel.build(map, self);
}
public ListRecommendContentHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListRecommendContentHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ListRecommendContentHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListRecommendContentRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListRecommendContentRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("DeviceInfo")
public ListRecommendContentRequestDeviceInfo deviceInfo;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Request")
public ListRecommendContentRequestRequest request;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("UserInfo")
public ListRecommendContentRequestUserInfo userInfo;
public static ListRecommendContentRequest build(java.util.Map<String, ?> map) throws Exception {
ListRecommendContentRequest self = new ListRecommendContentRequest();
return TeaModel.build(map, self);
}
public ListRecommendContentRequest setDeviceInfo(ListRecommendContentRequestDeviceInfo deviceInfo) {
this.deviceInfo = deviceInfo;
return this;
}
public ListRecommendContentRequestDeviceInfo getDeviceInfo() {
return this.deviceInfo;
}
public ListRecommendContentRequest setRequest(ListRecommendContentRequestRequest request) {
this.request = request;
return this;
}
public ListRecommendContentRequestRequest getRequest() {
return this.request;
}
public ListRecommendContentRequest setUserInfo(ListRecommendContentRequestUserInfo userInfo) {
this.userInfo = userInfo;
return this;
}
public ListRecommendContentRequestUserInfo getUserInfo() {
return this.userInfo;
}
public static class ListRecommendContentRequestDeviceInfo extends TeaModel {
/**
* <strong>example:</strong>
* <p>12**45</p>
*/
@NameInMap("EncodeKey")
public String encodeKey;
/**
* <strong>example:</strong>
* <p>PACKAGE_NAME</p>
*/
@NameInMap("EncodeType")
public String encodeType;
/**
* <strong>example:</strong>
* <p>DAFE****ce3ej=</p>
*/
@NameInMap("Id")
public String id;
/**
* <strong>example:</strong>
* <p>OPEN_ID</p>
*/
@NameInMap("IdType")
public String idType;
/**
* <strong>example:</strong>
* <p>1**2</p>
*/
@NameInMap("OrganizationId")
public String organizationId;
public static ListRecommendContentRequestDeviceInfo build(java.util.Map<String, ?> map) throws Exception {
ListRecommendContentRequestDeviceInfo self = new ListRecommendContentRequestDeviceInfo();
return TeaModel.build(map, self);
}
public ListRecommendContentRequestDeviceInfo setEncodeKey(String encodeKey) {
this.encodeKey = encodeKey;
return this;
}
public String getEncodeKey() {
return this.encodeKey;
}
public ListRecommendContentRequestDeviceInfo setEncodeType(String encodeType) {
this.encodeType = encodeType;
return this;
}
public String getEncodeType() {
return this.encodeType;
}
public ListRecommendContentRequestDeviceInfo setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public ListRecommendContentRequestDeviceInfo setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
public ListRecommendContentRequestDeviceInfo setOrganizationId(String organizationId) {
this.organizationId = organizationId;
return this;
}
public String getOrganizationId() {
return this.organizationId;
}
}
public static class ListRecommendContentRequestRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("Count")
public Integer count;
/**
* <strong>example:</strong>
* <p>song</p>
*/
@NameInMap("Type")
public String type;
public static ListRecommendContentRequestRequest build(java.util.Map<String, ?> map) throws Exception {
ListRecommendContentRequestRequest self = new ListRecommendContentRequestRequest();
return TeaModel.build(map, self);
}
public ListRecommendContentRequestRequest setCount(Integer count) {
this.count = count;
return this;
}
public Integer getCount() {
return this.count;
}
public ListRecommendContentRequestRequest setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
public static class ListRecommendContentRequestUserInfo extends TeaModel {
/**
* <strong>example:</strong>
* <p>12**45</p>
*/
@NameInMap("EncodeKey")
public String encodeKey;
/**
* <strong>example:</strong>
* <p>PACKAGE_NAME</p>
*/
@NameInMap("EncodeType")
public String encodeType;
/**
* <strong>example:</strong>
* <p>HOFF****my7Iw=</p>
*/
@NameInMap("Id")
public String id;
/**
* <strong>example:</strong>
* <p>OPEN_ID</p>
*/
@NameInMap("IdType")
public String idType;
/**
* <strong>example:</strong>
* <p>1**2</p>
*/
@NameInMap("OrganizationId")
public String organizationId;
public static ListRecommendContentRequestUserInfo build(java.util.Map<String, ?> map) throws Exception {
ListRecommendContentRequestUserInfo self = new ListRecommendContentRequestUserInfo();
return TeaModel.build(map, self);
}
public ListRecommendContentRequestUserInfo setEncodeKey(String encodeKey) {
this.encodeKey = encodeKey;
return this;
}
public String getEncodeKey() {
return this.encodeKey;
}
public ListRecommendContentRequestUserInfo setEncodeType(String encodeType) {
this.encodeType = encodeType;
return this;
}
public String getEncodeType() {
return this.encodeType;
}
public ListRecommendContentRequestUserInfo setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public ListRecommendContentRequestUserInfo setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
public ListRecommendContentRequestUserInfo setOrganizationId(String organizationId) {
this.organizationId = organizationId;
return this;
}
public String getOrganizationId() {
return this.organizationId;
}
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListRecommendContentResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListRecommendContentResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListRecommendContentResponseBody body;
public static ListRecommendContentResponse build(java.util.Map<String, ?> map) throws Exception {
ListRecommendContentResponse self = new ListRecommendContentResponse();
return TeaModel.build(map, self);
}
public ListRecommendContentResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListRecommendContentResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListRecommendContentResponse setBody(ListRecommendContentResponseBody body) {
this.body = body;
return this;
}
public ListRecommendContentResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListRecommendContentResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListRecommendContentResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("Code")
public Integer code;
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
/**
* <strong>example:</strong>
* <p>F12B6147-5925-19E5-A3AD-E1EE1360F34E</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public java.util.List<ListRecommendContentResponseBodyResult> result;
public static ListRecommendContentResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListRecommendContentResponseBody self = new ListRecommendContentResponseBody();
return TeaModel.build(map, self);
}
public ListRecommendContentResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public ListRecommendContentResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListRecommendContentResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListRecommendContentResponseBody setResult(java.util.List<ListRecommendContentResponseBodyResult> result) {
this.result = result;
return this;
}
public java.util.List<ListRecommendContentResponseBodyResult> getResult() {
return this.result;
}
public static class ListRecommendContentResponseBodyResultAuthorsCover extends TeaModel {
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("CanResize")
public Boolean canResize;
/**
* <strong>example:</strong>
* <p><a href="https://a.jpg">https://a.jpg</a></p>
*/
@NameInMap("Img")
public String img;
/**
* <strong>example:</strong>
* <p><a href="https://a.jpg">https://a.jpg</a></p>
*/
@NameInMap("Large")
public String large;
/**
* <strong>example:</strong>
* <p><a href="https://a.jpg">https://a.jpg</a></p>
*/
@NameInMap("Medium")
public String medium;
/**
* <strong>example:</strong>
* <p><a href="https://a.jpg">https://a.jpg</a></p>
*/
@NameInMap("Small")
public String small;
public static ListRecommendContentResponseBodyResultAuthorsCover build(java.util.Map<String, ?> map) throws Exception {
ListRecommendContentResponseBodyResultAuthorsCover self = new ListRecommendContentResponseBodyResultAuthorsCover();
return TeaModel.build(map, self);
}
public ListRecommendContentResponseBodyResultAuthorsCover setCanResize(Boolean canResize) {
this.canResize = canResize;
return this;
}
public Boolean getCanResize() {
return this.canResize;
}
public ListRecommendContentResponseBodyResultAuthorsCover setImg(String img) {
this.img = img;
return this;
}
public String getImg() {
return this.img;
}
public ListRecommendContentResponseBodyResultAuthorsCover setLarge(String large) {
this.large = large;
return this;
}
public String getLarge() {
return this.large;
}
public ListRecommendContentResponseBodyResultAuthorsCover setMedium(String medium) {
this.medium = medium;
return this;
}
public String getMedium() {
return this.medium;
}
public ListRecommendContentResponseBodyResultAuthorsCover setSmall(String small) {
this.small = small;
return this;
}
public String getSmall() {
return this.small;
}
}
public static class ListRecommendContentResponseBodyResultAuthors extends TeaModel {
@NameInMap("AuthorTypes")
public java.util.List<String> authorTypes;
@NameInMap("Cover")
public ListRecommendContentResponseBodyResultAuthorsCover cover;
@NameInMap("Description")
public String description;
/**
* <strong>example:</strong>
* <p>MALE</p>
*/
@NameInMap("Gender")
public String gender;
/**
* <strong>example:</strong>
* <p>13597709</p>
*/
@NameInMap("Id")
public Long id;
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("Online")
public Boolean online;
/**
* <strong>example:</strong>
* <p>12311</p>
*/
@NameInMap("RawId")
public String rawId;
/**
* <strong>example:</strong>
* <p>qingting</p>
*/
@NameInMap("Source")
public String source;
@NameInMap("Title")
public String title;
public static ListRecommendContentResponseBodyResultAuthors build(java.util.Map<String, ?> map) throws Exception {
ListRecommendContentResponseBodyResultAuthors self = new ListRecommendContentResponseBodyResultAuthors();
return TeaModel.build(map, self);
}
public ListRecommendContentResponseBodyResultAuthors setAuthorTypes(java.util.List<String> authorTypes) {
this.authorTypes = authorTypes;
return this;
}
public java.util.List<String> getAuthorTypes() {
return this.authorTypes;
}
public ListRecommendContentResponseBodyResultAuthors setCover(ListRecommendContentResponseBodyResultAuthorsCover cover) {
this.cover = cover;
return this;
}
public ListRecommendContentResponseBodyResultAuthorsCover getCover() {
return this.cover;
}
public ListRecommendContentResponseBodyResultAuthors setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public ListRecommendContentResponseBodyResultAuthors setGender(String gender) {
this.gender = gender;
return this;
}
public String getGender() {
return this.gender;
}
public ListRecommendContentResponseBodyResultAuthors setId(Long id) {
this.id = id;
return this;
}
public Long getId() {
return this.id;
}
public ListRecommendContentResponseBodyResultAuthors setOnline(Boolean online) {
this.online = online;
return this;
}
public Boolean getOnline() {
return this.online;
}
public ListRecommendContentResponseBodyResultAuthors setRawId(String rawId) {
this.rawId = rawId;
return this;
}
public String getRawId() {
return this.rawId;
}
public ListRecommendContentResponseBodyResultAuthors setSource(String source) {
this.source = source;
return this;
}
public String getSource() {
return this.source;
}
public ListRecommendContentResponseBodyResultAuthors setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
}
public static class ListRecommendContentResponseBodyResultCover extends TeaModel {
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("CanResize")
public Boolean canResize;
/**
* <strong>example:</strong>
* <p><a href="http://pic.qtfm.cn/2017/0207/2017020718285.jpg">http://pic.qtfm.cn/2017/0207/2017020718285.jpg</a></p>
*/
@NameInMap("Img")
public String img;
/**
* <strong>example:</strong>
* <p><a href="http://pic.qtfm.cn/2017/0207/2017020718285.jpg">http://pic.qtfm.cn/2017/0207/2017020718285.jpg</a></p>
*/
@NameInMap("Large")
public String large;
/**
* <strong>example:</strong>
* <p><a href="http://pic.qtfm.cn/2017/0207/2017020718285.jpg">http://pic.qtfm.cn/2017/0207/2017020718285.jpg</a></p>
*/
@NameInMap("Mediam")
public String mediam;
/**
* <strong>example:</strong>
* <p><a href="http://pic.qtfm.cn/2017/0207/2017020718285.jpg">http://pic.qtfm.cn/2017/0207/2017020718285.jpg</a></p>
*/
@NameInMap("Medium")
public String medium;
/**
* <strong>example:</strong>
* <p><a href="http://pic.qtfm.cn/2017/0207/2017020718285.jpg">http://pic.qtfm.cn/2017/0207/2017020718285.jpg</a></p>
*/
@NameInMap("Small")
public String small;
public static ListRecommendContentResponseBodyResultCover build(java.util.Map<String, ?> map) throws Exception {
ListRecommendContentResponseBodyResultCover self = new ListRecommendContentResponseBodyResultCover();
return TeaModel.build(map, self);
}
public ListRecommendContentResponseBodyResultCover setCanResize(Boolean canResize) {
this.canResize = canResize;
return this;
}
public Boolean getCanResize() {
return this.canResize;
}
public ListRecommendContentResponseBodyResultCover setImg(String img) {
this.img = img;
return this;
}
public String getImg() {
return this.img;
}
public ListRecommendContentResponseBodyResultCover setLarge(String large) {
this.large = large;
return this;
}
public String getLarge() {
return this.large;
}
public ListRecommendContentResponseBodyResultCover setMediam(String mediam) {
this.mediam = mediam;
return this;
}
public String getMediam() {
return this.mediam;
}
public ListRecommendContentResponseBodyResultCover setMedium(String medium) {
this.medium = medium;
return this;
}
public String getMedium() {
return this.medium;
}
public ListRecommendContentResponseBodyResultCover setSmall(String small) {
this.small = small;
return this;
}
public String getSmall() {
return this.small;
}
}
public static class ListRecommendContentResponseBodyResult extends TeaModel {
@NameInMap("Alias")
public java.util.List<String> alias;
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("Audition")
public Boolean audition;
@NameInMap("Authors")
public java.util.List<ListRecommendContentResponseBodyResultAuthors> authors;
/**
* <strong>example:</strong>
* <p>audio</p>
*/
@NameInMap("Category")
public String category;
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("Charge")
public Boolean charge;
/**
* <strong>example:</strong>
* <p>80012017</p>
*/
@NameInMap("CommCateId")
public Long commCateId;
@NameInMap("Cover")
public ListRecommendContentResponseBodyResultCover cover;
@NameInMap("Description")
public String description;
/**
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("HotScore")
public Double hotScore;
/**
* <strong>example:</strong>
* <p>13597709</p>
*/
@NameInMap("Id")
public Long id;
/**
* <strong>example:</strong>
* <p>ALBUM</p>
*/
@NameInMap("ItemType")
public String itemType;
/**
* <strong>example:</strong>
* <p>123123</p>
*/
@NameInMap("RawId")
public String rawId;
/**
* <strong>example:</strong>
* <p>qingting</p>
*/
@NameInMap("Source")
public String source;
@NameInMap("Title")
public String title;
/**
* <strong>example:</strong>
* <p>program</p>
*/
@NameInMap("Type")
public String type;
/**
* <strong>example:</strong>
* <p>VALID</p>
*/
@NameInMap("Valid")
public String valid;
public static ListRecommendContentResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
ListRecommendContentResponseBodyResult self = new ListRecommendContentResponseBodyResult();
return TeaModel.build(map, self);
}
public ListRecommendContentResponseBodyResult setAlias(java.util.List<String> alias) {
this.alias = alias;
return this;
}
public java.util.List<String> getAlias() {
return this.alias;
}
public ListRecommendContentResponseBodyResult setAudition(Boolean audition) {
this.audition = audition;
return this;
}
public Boolean getAudition() {
return this.audition;
}
public ListRecommendContentResponseBodyResult setAuthors(java.util.List<ListRecommendContentResponseBodyResultAuthors> authors) {
this.authors = authors;
return this;
}
public java.util.List<ListRecommendContentResponseBodyResultAuthors> getAuthors() {
return this.authors;
}
public ListRecommendContentResponseBodyResult setCategory(String category) {
this.category = category;
return this;
}
public String getCategory() {
return this.category;
}
public ListRecommendContentResponseBodyResult setCharge(Boolean charge) {
this.charge = charge;
return this;
}
public Boolean getCharge() {
return this.charge;
}
public ListRecommendContentResponseBodyResult setCommCateId(Long commCateId) {
this.commCateId = commCateId;
return this;
}
public Long getCommCateId() {
return this.commCateId;
}
public ListRecommendContentResponseBodyResult setCover(ListRecommendContentResponseBodyResultCover cover) {
this.cover = cover;
return this;
}
public ListRecommendContentResponseBodyResultCover getCover() {
return this.cover;
}
public ListRecommendContentResponseBodyResult setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public ListRecommendContentResponseBodyResult setHotScore(Double hotScore) {
this.hotScore = hotScore;
return this;
}
public Double getHotScore() {
return this.hotScore;
}
public ListRecommendContentResponseBodyResult setId(Long id) {
this.id = id;
return this;
}
public Long getId() {
return this.id;
}
public ListRecommendContentResponseBodyResult setItemType(String itemType) {
this.itemType = itemType;
return this;
}
public String getItemType() {
return this.itemType;
}
public ListRecommendContentResponseBodyResult setRawId(String rawId) {
this.rawId = rawId;
return this;
}
public String getRawId() {
return this.rawId;
}
public ListRecommendContentResponseBodyResult setSource(String source) {
this.source = source;
return this;
}
public String getSource() {
return this.source;
}
public ListRecommendContentResponseBodyResult setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
public ListRecommendContentResponseBodyResult setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
public ListRecommendContentResponseBodyResult setValid(String valid) {
this.valid = valid;
return this;
}
public String getValid() {
return this.valid;
}
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListRecommendContentShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListRecommendContentShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("DeviceInfo")
public String deviceInfoShrink;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Request")
public String requestShrink;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("UserInfo")
public String userInfoShrink;
public static ListRecommendContentShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
ListRecommendContentShrinkRequest self = new ListRecommendContentShrinkRequest();
return TeaModel.build(map, self);
}
public ListRecommendContentShrinkRequest setDeviceInfoShrink(String deviceInfoShrink) {
this.deviceInfoShrink = deviceInfoShrink;
return this;
}
public String getDeviceInfoShrink() {
return this.deviceInfoShrink;
}
public ListRecommendContentShrinkRequest setRequestShrink(String requestShrink) {
this.requestShrink = requestShrink;
return this;
}
public String getRequestShrink() {
return this.requestShrink;
}
public ListRecommendContentShrinkRequest setUserInfoShrink(String userInfoShrink) {
this.userInfoShrink = userInfoShrink;
return this;
}
public String getUserInfoShrink() {
return this.userInfoShrink;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListSubAlbumHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListSubAlbumHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static ListSubAlbumHeaders build(java.util.Map<String, ?> map) throws Exception {
ListSubAlbumHeaders self = new ListSubAlbumHeaders();
return TeaModel.build(map, self);
}
public ListSubAlbumHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListSubAlbumHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ListSubAlbumHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListSubAlbumRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListSubAlbumRequest extends TeaModel {
@NameInMap("DeviceInfo")
public ListSubAlbumRequestDeviceInfo deviceInfo;
/**
* <p>request</p>
*/
@NameInMap("QuerySubscriptionAlbumRequest")
public ListSubAlbumRequestQuerySubscriptionAlbumRequest querySubscriptionAlbumRequest;
@NameInMap("UserInfo")
public ListSubAlbumRequestUserInfo userInfo;
public static ListSubAlbumRequest build(java.util.Map<String, ?> map) throws Exception {
ListSubAlbumRequest self = new ListSubAlbumRequest();
return TeaModel.build(map, self);
}
public ListSubAlbumRequest setDeviceInfo(ListSubAlbumRequestDeviceInfo deviceInfo) {
this.deviceInfo = deviceInfo;
return this;
}
public ListSubAlbumRequestDeviceInfo getDeviceInfo() {
return this.deviceInfo;
}
public ListSubAlbumRequest setQuerySubscriptionAlbumRequest(ListSubAlbumRequestQuerySubscriptionAlbumRequest querySubscriptionAlbumRequest) {
this.querySubscriptionAlbumRequest = querySubscriptionAlbumRequest;
return this;
}
public ListSubAlbumRequestQuerySubscriptionAlbumRequest getQuerySubscriptionAlbumRequest() {
return this.querySubscriptionAlbumRequest;
}
public ListSubAlbumRequest setUserInfo(ListSubAlbumRequestUserInfo userInfo) {
this.userInfo = userInfo;
return this;
}
public ListSubAlbumRequestUserInfo getUserInfo() {
return this.userInfo;
}
public static class ListSubAlbumRequestDeviceInfo extends TeaModel {
@NameInMap("EncodeKey")
public String encodeKey;
@NameInMap("EncodeType")
public String encodeType;
@NameInMap("Id")
public String id;
@NameInMap("IdType")
public String idType;
@NameInMap("OrganizationId")
public String organizationId;
public static ListSubAlbumRequestDeviceInfo build(java.util.Map<String, ?> map) throws Exception {
ListSubAlbumRequestDeviceInfo self = new ListSubAlbumRequestDeviceInfo();
return TeaModel.build(map, self);
}
public ListSubAlbumRequestDeviceInfo setEncodeKey(String encodeKey) {
this.encodeKey = encodeKey;
return this;
}
public String getEncodeKey() {
return this.encodeKey;
}
public ListSubAlbumRequestDeviceInfo setEncodeType(String encodeType) {
this.encodeType = encodeType;
return this;
}
public String getEncodeType() {
return this.encodeType;
}
public ListSubAlbumRequestDeviceInfo setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public ListSubAlbumRequestDeviceInfo setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
public ListSubAlbumRequestDeviceInfo setOrganizationId(String organizationId) {
this.organizationId = organizationId;
return this;
}
public String getOrganizationId() {
return this.organizationId;
}
}
public static class ListSubAlbumRequestQuerySubscriptionAlbumRequestPage extends TeaModel {
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("PageNum")
public Integer pageNum;
/**
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("PageSize")
public Integer pageSize;
public static ListSubAlbumRequestQuerySubscriptionAlbumRequestPage build(java.util.Map<String, ?> map) throws Exception {
ListSubAlbumRequestQuerySubscriptionAlbumRequestPage self = new ListSubAlbumRequestQuerySubscriptionAlbumRequestPage();
return TeaModel.build(map, self);
}
public ListSubAlbumRequestQuerySubscriptionAlbumRequestPage setPageNum(Integer pageNum) {
this.pageNum = pageNum;
return this;
}
public Integer getPageNum() {
return this.pageNum;
}
public ListSubAlbumRequestQuerySubscriptionAlbumRequestPage setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
}
public static class ListSubAlbumRequestQuerySubscriptionAlbumRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>4476001</p>
*/
@NameInMap("AlbumId")
public String albumId;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>80011</p>
*/
@NameInMap("CategoryId")
public Integer categoryId;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Page")
public ListSubAlbumRequestQuerySubscriptionAlbumRequestPage page;
/**
* <strong>example:</strong>
* <p>睡前故事</p>
*/
@NameInMap("Title")
public String title;
public static ListSubAlbumRequestQuerySubscriptionAlbumRequest build(java.util.Map<String, ?> map) throws Exception {
ListSubAlbumRequestQuerySubscriptionAlbumRequest self = new ListSubAlbumRequestQuerySubscriptionAlbumRequest();
return TeaModel.build(map, self);
}
public ListSubAlbumRequestQuerySubscriptionAlbumRequest setAlbumId(String albumId) {
this.albumId = albumId;
return this;
}
public String getAlbumId() {
return this.albumId;
}
public ListSubAlbumRequestQuerySubscriptionAlbumRequest setCategoryId(Integer categoryId) {
this.categoryId = categoryId;
return this;
}
public Integer getCategoryId() {
return this.categoryId;
}
public ListSubAlbumRequestQuerySubscriptionAlbumRequest setPage(ListSubAlbumRequestQuerySubscriptionAlbumRequestPage page) {
this.page = page;
return this;
}
public ListSubAlbumRequestQuerySubscriptionAlbumRequestPage getPage() {
return this.page;
}
public ListSubAlbumRequestQuerySubscriptionAlbumRequest setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
}
public static class ListSubAlbumRequestUserInfo extends TeaModel {
@NameInMap("EncodeKey")
public String encodeKey;
@NameInMap("EncodeType")
public String encodeType;
@NameInMap("Id")
public String id;
@NameInMap("IdType")
public String idType;
@NameInMap("OrganizationId")
public String organizationId;
public static ListSubAlbumRequestUserInfo build(java.util.Map<String, ?> map) throws Exception {
ListSubAlbumRequestUserInfo self = new ListSubAlbumRequestUserInfo();
return TeaModel.build(map, self);
}
public ListSubAlbumRequestUserInfo setEncodeKey(String encodeKey) {
this.encodeKey = encodeKey;
return this;
}
public String getEncodeKey() {
return this.encodeKey;
}
public ListSubAlbumRequestUserInfo setEncodeType(String encodeType) {
this.encodeType = encodeType;
return this;
}
public String getEncodeType() {
return this.encodeType;
}
public ListSubAlbumRequestUserInfo setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public ListSubAlbumRequestUserInfo setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
public ListSubAlbumRequestUserInfo setOrganizationId(String organizationId) {
this.organizationId = organizationId;
return this;
}
public String getOrganizationId() {
return this.organizationId;
}
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListSubAlbumResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListSubAlbumResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListSubAlbumResponseBody body;
public static ListSubAlbumResponse build(java.util.Map<String, ?> map) throws Exception {
ListSubAlbumResponse self = new ListSubAlbumResponse();
return TeaModel.build(map, self);
}
public ListSubAlbumResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListSubAlbumResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListSubAlbumResponse setBody(ListSubAlbumResponseBody body) {
this.body = body;
return this;
}
public ListSubAlbumResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListSubAlbumResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListSubAlbumResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("Code")
public Integer code;
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
/**
* <strong>example:</strong>
* <p>CB13B8D7-37FB-1B3E-8EB9-65BB413267E1</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public ListSubAlbumResponseBodyResult result;
public static ListSubAlbumResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListSubAlbumResponseBody self = new ListSubAlbumResponseBody();
return TeaModel.build(map, self);
}
public ListSubAlbumResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public ListSubAlbumResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListSubAlbumResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListSubAlbumResponseBody setResult(ListSubAlbumResponseBodyResult result) {
this.result = result;
return this;
}
public ListSubAlbumResponseBodyResult getResult() {
return this.result;
}
public static class ListSubAlbumResponseBodyResultDataListScheduleInfo extends TeaModel {
@NameInMap("DaysOfWeek")
public java.util.List<Integer> daysOfWeek;
/**
* <strong>example:</strong>
* <p>12</p>
*/
@NameInMap("Hour")
public Integer hour;
/**
* <strong>example:</strong>
* <p>23</p>
*/
@NameInMap("Minute")
public Integer minute;
@NameInMap("ScheduleId")
public Long scheduleId;
public static ListSubAlbumResponseBodyResultDataListScheduleInfo build(java.util.Map<String, ?> map) throws Exception {
ListSubAlbumResponseBodyResultDataListScheduleInfo self = new ListSubAlbumResponseBodyResultDataListScheduleInfo();
return TeaModel.build(map, self);
}
public ListSubAlbumResponseBodyResultDataListScheduleInfo setDaysOfWeek(java.util.List<Integer> daysOfWeek) {
this.daysOfWeek = daysOfWeek;
return this;
}
public java.util.List<Integer> getDaysOfWeek() {
return this.daysOfWeek;
}
public ListSubAlbumResponseBodyResultDataListScheduleInfo setHour(Integer hour) {
this.hour = hour;
return this;
}
public Integer getHour() {
return this.hour;
}
public ListSubAlbumResponseBodyResultDataListScheduleInfo setMinute(Integer minute) {
this.minute = minute;
return this;
}
public Integer getMinute() {
return this.minute;
}
public ListSubAlbumResponseBodyResultDataListScheduleInfo setScheduleId(Long scheduleId) {
this.scheduleId = scheduleId;
return this;
}
public Long getScheduleId() {
return this.scheduleId;
}
}
public static class ListSubAlbumResponseBodyResultDataList extends TeaModel {
/**
* <strong>example:</strong>
* <p>4476001</p>
*/
@NameInMap("AlbumId")
public String albumId;
/**
* <strong>example:</strong>
* <p>80011</p>
*/
@NameInMap("CategoryId")
public Integer categoryId;
/**
* <strong>example:</strong>
* <p><a href="https://ailabs.alibabausercontent.com/images/17825/jknoamc2.jpg">https://ailabs.alibabausercontent.com/images/17825/jknoamc2.jpg</a></p>
*/
@NameInMap("CoverUrl")
public String coverUrl;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("Id")
public Long id;
@NameInMap("IsAdded")
public Boolean isAdded;
@NameInMap("ScheduleInfo")
public ListSubAlbumResponseBodyResultDataListScheduleInfo scheduleInfo;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("Sequence")
public Long sequence;
/**
* <strong>example:</strong>
* <p>睡前故事</p>
*/
@NameInMap("Title")
public String title;
/**
* <strong>example:</strong>
* <p>23</p>
*/
@NameInMap("TotalEpisode")
public Integer totalEpisode;
public static ListSubAlbumResponseBodyResultDataList build(java.util.Map<String, ?> map) throws Exception {
ListSubAlbumResponseBodyResultDataList self = new ListSubAlbumResponseBodyResultDataList();
return TeaModel.build(map, self);
}
public ListSubAlbumResponseBodyResultDataList setAlbumId(String albumId) {
this.albumId = albumId;
return this;
}
public String getAlbumId() {
return this.albumId;
}
public ListSubAlbumResponseBodyResultDataList setCategoryId(Integer categoryId) {
this.categoryId = categoryId;
return this;
}
public Integer getCategoryId() {
return this.categoryId;
}
public ListSubAlbumResponseBodyResultDataList setCoverUrl(String coverUrl) {
this.coverUrl = coverUrl;
return this;
}
public String getCoverUrl() {
return this.coverUrl;
}
public ListSubAlbumResponseBodyResultDataList setId(Long id) {
this.id = id;
return this;
}
public Long getId() {
return this.id;
}
public ListSubAlbumResponseBodyResultDataList setIsAdded(Boolean isAdded) {
this.isAdded = isAdded;
return this;
}
public Boolean getIsAdded() {
return this.isAdded;
}
public ListSubAlbumResponseBodyResultDataList setScheduleInfo(ListSubAlbumResponseBodyResultDataListScheduleInfo scheduleInfo) {
this.scheduleInfo = scheduleInfo;
return this;
}
public ListSubAlbumResponseBodyResultDataListScheduleInfo getScheduleInfo() {
return this.scheduleInfo;
}
public ListSubAlbumResponseBodyResultDataList setSequence(Long sequence) {
this.sequence = sequence;
return this;
}
public Long getSequence() {
return this.sequence;
}
public ListSubAlbumResponseBodyResultDataList setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
public ListSubAlbumResponseBodyResultDataList setTotalEpisode(Integer totalEpisode) {
this.totalEpisode = totalEpisode;
return this;
}
public Integer getTotalEpisode() {
return this.totalEpisode;
}
}
public static class ListSubAlbumResponseBodyResult extends TeaModel {
@NameInMap("DataList")
public java.util.List<ListSubAlbumResponseBodyResultDataList> dataList;
@NameInMap("HasNext")
public Boolean hasNext;
/**
* <strong>example:</strong>
* <p>3</p>
*/
@NameInMap("TotalCount")
public Integer totalCount;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("TotalPageCount")
public Integer totalPageCount;
public static ListSubAlbumResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
ListSubAlbumResponseBodyResult self = new ListSubAlbumResponseBodyResult();
return TeaModel.build(map, self);
}
public ListSubAlbumResponseBodyResult setDataList(java.util.List<ListSubAlbumResponseBodyResultDataList> dataList) {
this.dataList = dataList;
return this;
}
public java.util.List<ListSubAlbumResponseBodyResultDataList> getDataList() {
return this.dataList;
}
public ListSubAlbumResponseBodyResult setHasNext(Boolean hasNext) {
this.hasNext = hasNext;
return this;
}
public Boolean getHasNext() {
return this.hasNext;
}
public ListSubAlbumResponseBodyResult setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
return this;
}
public Integer getTotalCount() {
return this.totalCount;
}
public ListSubAlbumResponseBodyResult setTotalPageCount(Integer totalPageCount) {
this.totalPageCount = totalPageCount;
return this;
}
public Integer getTotalPageCount() {
return this.totalPageCount;
}
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListSubAlbumShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListSubAlbumShrinkRequest extends TeaModel {
@NameInMap("DeviceInfo")
public String deviceInfoShrink;
/**
* <p>request</p>
*/
@NameInMap("QuerySubscriptionAlbumRequest")
public String querySubscriptionAlbumRequestShrink;
@NameInMap("UserInfo")
public String userInfoShrink;
public static ListSubAlbumShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
ListSubAlbumShrinkRequest self = new ListSubAlbumShrinkRequest();
return TeaModel.build(map, self);
}
public ListSubAlbumShrinkRequest setDeviceInfoShrink(String deviceInfoShrink) {
this.deviceInfoShrink = deviceInfoShrink;
return this;
}
public String getDeviceInfoShrink() {
return this.deviceInfoShrink;
}
public ListSubAlbumShrinkRequest setQuerySubscriptionAlbumRequestShrink(String querySubscriptionAlbumRequestShrink) {
this.querySubscriptionAlbumRequestShrink = querySubscriptionAlbumRequestShrink;
return this;
}
public String getQuerySubscriptionAlbumRequestShrink() {
return this.querySubscriptionAlbumRequestShrink;
}
public ListSubAlbumShrinkRequest setUserInfoShrink(String userInfoShrink) {
this.userInfoShrink = userInfoShrink;
return this;
}
public String getUserInfoShrink() {
return this.userInfoShrink;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListSubHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListSubHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static ListSubHeaders build(java.util.Map<String, ?> map) throws Exception {
ListSubHeaders self = new ListSubHeaders();
return TeaModel.build(map, self);
}
public ListSubHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListSubHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ListSubHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListSubRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListSubRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("DeviceInfo")
public ListSubRequestDeviceInfo deviceInfo;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Page")
public ListSubRequestPage page;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("UserInfo")
public ListSubRequestUserInfo userInfo;
public static ListSubRequest build(java.util.Map<String, ?> map) throws Exception {
ListSubRequest self = new ListSubRequest();
return TeaModel.build(map, self);
}
public ListSubRequest setDeviceInfo(ListSubRequestDeviceInfo deviceInfo) {
this.deviceInfo = deviceInfo;
return this;
}
public ListSubRequestDeviceInfo getDeviceInfo() {
return this.deviceInfo;
}
public ListSubRequest setPage(ListSubRequestPage page) {
this.page = page;
return this;
}
public ListSubRequestPage getPage() {
return this.page;
}
public ListSubRequest setUserInfo(ListSubRequestUserInfo userInfo) {
this.userInfo = userInfo;
return this;
}
public ListSubRequestUserInfo getUserInfo() {
return this.userInfo;
}
public static class ListSubRequestDeviceInfo extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("EncodeKey")
public String encodeKey;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>PROJECT_ID</p>
*/
@NameInMap("EncodeType")
public String encodeType;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("Id")
public String id;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>OPEN_ID</p>
*/
@NameInMap("IdType")
public String idType;
@NameInMap("OrganizationId")
public String organizationId;
public static ListSubRequestDeviceInfo build(java.util.Map<String, ?> map) throws Exception {
ListSubRequestDeviceInfo self = new ListSubRequestDeviceInfo();
return TeaModel.build(map, self);
}
public ListSubRequestDeviceInfo setEncodeKey(String encodeKey) {
this.encodeKey = encodeKey;
return this;
}
public String getEncodeKey() {
return this.encodeKey;
}
public ListSubRequestDeviceInfo setEncodeType(String encodeType) {
this.encodeType = encodeType;
return this;
}
public String getEncodeType() {
return this.encodeType;
}
public ListSubRequestDeviceInfo setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public ListSubRequestDeviceInfo setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
public ListSubRequestDeviceInfo setOrganizationId(String organizationId) {
this.organizationId = organizationId;
return this;
}
public String getOrganizationId() {
return this.organizationId;
}
}
public static class ListSubRequestPage extends TeaModel {
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("PageNum")
public Integer pageNum;
/**
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("PageSize")
public Integer pageSize;
public static ListSubRequestPage build(java.util.Map<String, ?> map) throws Exception {
ListSubRequestPage self = new ListSubRequestPage();
return TeaModel.build(map, self);
}
public ListSubRequestPage setPageNum(Integer pageNum) {
this.pageNum = pageNum;
return this;
}
public Integer getPageNum() {
return this.pageNum;
}
public ListSubRequestPage setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
}
public static class ListSubRequestUserInfo extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("EncodeKey")
public String encodeKey;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>PROJECT_ID</p>
*/
@NameInMap("EncodeType")
public String encodeType;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("Id")
public String id;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>UNION_ID</p>
*/
@NameInMap("IdType")
public String idType;
@NameInMap("OrganizationId")
public String organizationId;
public static ListSubRequestUserInfo build(java.util.Map<String, ?> map) throws Exception {
ListSubRequestUserInfo self = new ListSubRequestUserInfo();
return TeaModel.build(map, self);
}
public ListSubRequestUserInfo setEncodeKey(String encodeKey) {
this.encodeKey = encodeKey;
return this;
}
public String getEncodeKey() {
return this.encodeKey;
}
public ListSubRequestUserInfo setEncodeType(String encodeType) {
this.encodeType = encodeType;
return this;
}
public String getEncodeType() {
return this.encodeType;
}
public ListSubRequestUserInfo setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public ListSubRequestUserInfo setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
public ListSubRequestUserInfo setOrganizationId(String organizationId) {
this.organizationId = organizationId;
return this;
}
public String getOrganizationId() {
return this.organizationId;
}
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListSubResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListSubResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListSubResponseBody body;
public static ListSubResponse build(java.util.Map<String, ?> map) throws Exception {
ListSubResponse self = new ListSubResponse();
return TeaModel.build(map, self);
}
public ListSubResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListSubResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListSubResponse setBody(ListSubResponseBody body) {
this.body = body;
return this;
}
public ListSubResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListSubResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListSubResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("Code")
public Integer code;
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
/**
* <strong>example:</strong>
* <p>0D0C09C2-ADC1-198B-964D-24F4FAD967DB</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public ListSubResponseBodyResult result;
public static ListSubResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListSubResponseBody self = new ListSubResponseBody();
return TeaModel.build(map, self);
}
public ListSubResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public ListSubResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListSubResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListSubResponseBody setResult(ListSubResponseBodyResult result) {
this.result = result;
return this;
}
public ListSubResponseBodyResult getResult() {
return this.result;
}
public static class ListSubResponseBodyResultDataListScheduleInfo extends TeaModel {
@NameInMap("DaysOfWeek")
public java.util.List<Integer> daysOfWeek;
/**
* <strong>example:</strong>
* <p>12</p>
*/
@NameInMap("Hour")
public Integer hour;
/**
* <strong>example:</strong>
* <p>23</p>
*/
@NameInMap("Minute")
public Integer minute;
public static ListSubResponseBodyResultDataListScheduleInfo build(java.util.Map<String, ?> map) throws Exception {
ListSubResponseBodyResultDataListScheduleInfo self = new ListSubResponseBodyResultDataListScheduleInfo();
return TeaModel.build(map, self);
}
public ListSubResponseBodyResultDataListScheduleInfo setDaysOfWeek(java.util.List<Integer> daysOfWeek) {
this.daysOfWeek = daysOfWeek;
return this;
}
public java.util.List<Integer> getDaysOfWeek() {
return this.daysOfWeek;
}
public ListSubResponseBodyResultDataListScheduleInfo setHour(Integer hour) {
this.hour = hour;
return this;
}
public Integer getHour() {
return this.hour;
}
public ListSubResponseBodyResultDataListScheduleInfo setMinute(Integer minute) {
this.minute = minute;
return this;
}
public Integer getMinute() {
return this.minute;
}
}
public static class ListSubResponseBodyResultDataList extends TeaModel {
/**
* <strong>example:</strong>
* <p>51999575</p>
*/
@NameInMap("AlbumId")
public String albumId;
/**
* <strong>example:</strong>
* <p><a href="https://ailabs.alibabausercontent.com/images/8838/1600839452498.jpg">https://ailabs.alibabausercontent.com/images/8838/1600839452498.jpg</a></p>
*/
@NameInMap("CoverUrl")
public String coverUrl;
/**
* <strong>example:</strong>
* <p>2</p>
*/
@NameInMap("DailyStudyCnt")
public Integer dailyStudyCnt;
/**
* <strong>example:</strong>
* <p>5874DBCCA3038FAA1A70A8060F07F26D</p>
*/
@NameInMap("DeviceId")
public String deviceId;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("Id")
public Long id;
/**
* <strong>example:</strong>
* <p>sequence</p>
*/
@NameInMap("PlayMode")
public String playMode;
@NameInMap("ScheduleInfo")
public ListSubResponseBodyResultDataListScheduleInfo scheduleInfo;
/**
* <strong>example:</strong>
* <p>小科学家探索</p>
*/
@NameInMap("Title")
public String title;
/**
* <strong>example:</strong>
* <p>1152893538998276761</p>
*/
@NameInMap("UserId")
public Long userId;
public static ListSubResponseBodyResultDataList build(java.util.Map<String, ?> map) throws Exception {
ListSubResponseBodyResultDataList self = new ListSubResponseBodyResultDataList();
return TeaModel.build(map, self);
}
public ListSubResponseBodyResultDataList setAlbumId(String albumId) {
this.albumId = albumId;
return this;
}
public String getAlbumId() {
return this.albumId;
}
public ListSubResponseBodyResultDataList setCoverUrl(String coverUrl) {
this.coverUrl = coverUrl;
return this;
}
public String getCoverUrl() {
return this.coverUrl;
}
public ListSubResponseBodyResultDataList setDailyStudyCnt(Integer dailyStudyCnt) {
this.dailyStudyCnt = dailyStudyCnt;
return this;
}
public Integer getDailyStudyCnt() {
return this.dailyStudyCnt;
}
public ListSubResponseBodyResultDataList setDeviceId(String deviceId) {
this.deviceId = deviceId;
return this;
}
public String getDeviceId() {
return this.deviceId;
}
public ListSubResponseBodyResultDataList setId(Long id) {
this.id = id;
return this;
}
public Long getId() {
return this.id;
}
public ListSubResponseBodyResultDataList setPlayMode(String playMode) {
this.playMode = playMode;
return this;
}
public String getPlayMode() {
return this.playMode;
}
public ListSubResponseBodyResultDataList setScheduleInfo(ListSubResponseBodyResultDataListScheduleInfo scheduleInfo) {
this.scheduleInfo = scheduleInfo;
return this;
}
public ListSubResponseBodyResultDataListScheduleInfo getScheduleInfo() {
return this.scheduleInfo;
}
public ListSubResponseBodyResultDataList setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
public ListSubResponseBodyResultDataList setUserId(Long userId) {
this.userId = userId;
return this;
}
public Long getUserId() {
return this.userId;
}
}
public static class ListSubResponseBodyResult extends TeaModel {
@NameInMap("DataList")
public java.util.List<ListSubResponseBodyResultDataList> dataList;
@NameInMap("HasNext")
public Boolean hasNext;
/**
* <strong>example:</strong>
* <p>3</p>
*/
@NameInMap("TotalCount")
public Long totalCount;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("TotalPageCount")
public Integer totalPageCount;
public static ListSubResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
ListSubResponseBodyResult self = new ListSubResponseBodyResult();
return TeaModel.build(map, self);
}
public ListSubResponseBodyResult setDataList(java.util.List<ListSubResponseBodyResultDataList> dataList) {
this.dataList = dataList;
return this;
}
public java.util.List<ListSubResponseBodyResultDataList> getDataList() {
return this.dataList;
}
public ListSubResponseBodyResult setHasNext(Boolean hasNext) {
this.hasNext = hasNext;
return this;
}
public Boolean getHasNext() {
return this.hasNext;
}
public ListSubResponseBodyResult setTotalCount(Long totalCount) {
this.totalCount = totalCount;
return this;
}
public Long getTotalCount() {
return this.totalCount;
}
public ListSubResponseBodyResult setTotalPageCount(Integer totalPageCount) {
this.totalPageCount = totalPageCount;
return this;
}
public Integer getTotalPageCount() {
return this.totalPageCount;
}
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListSubShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListSubShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("DeviceInfo")
public String deviceInfoShrink;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Page")
public String pageShrink;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("UserInfo")
public String userInfoShrink;
public static ListSubShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
ListSubShrinkRequest self = new ListSubShrinkRequest();
return TeaModel.build(map, self);
}
public ListSubShrinkRequest setDeviceInfoShrink(String deviceInfoShrink) {
this.deviceInfoShrink = deviceInfoShrink;
return this;
}
public String getDeviceInfoShrink() {
return this.deviceInfoShrink;
}
public ListSubShrinkRequest setPageShrink(String pageShrink) {
this.pageShrink = pageShrink;
return this;
}
public String getPageShrink() {
return this.pageShrink;
}
public ListSubShrinkRequest setUserInfoShrink(String userInfoShrink) {
this.userInfoShrink = userInfoShrink;
return this;
}
public String getUserInfoShrink() {
return this.userInfoShrink;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListSubscriptionAlbumCategoryHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListSubscriptionAlbumCategoryHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static ListSubscriptionAlbumCategoryHeaders build(java.util.Map<String, ?> map) throws Exception {
ListSubscriptionAlbumCategoryHeaders self = new ListSubscriptionAlbumCategoryHeaders();
return TeaModel.build(map, self);
}
public ListSubscriptionAlbumCategoryHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListSubscriptionAlbumCategoryHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ListSubscriptionAlbumCategoryHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListSubscriptionAlbumCategoryRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListSubscriptionAlbumCategoryRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>儿歌</p>
*/
@NameInMap("CategoryName")
public String categoryName;
public static ListSubscriptionAlbumCategoryRequest build(java.util.Map<String, ?> map) throws Exception {
ListSubscriptionAlbumCategoryRequest self = new ListSubscriptionAlbumCategoryRequest();
return TeaModel.build(map, self);
}
public ListSubscriptionAlbumCategoryRequest setCategoryName(String categoryName) {
this.categoryName = categoryName;
return this;
}
public String getCategoryName() {
return this.categoryName;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListSubscriptionAlbumCategoryResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListSubscriptionAlbumCategoryResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListSubscriptionAlbumCategoryResponseBody body;
public static ListSubscriptionAlbumCategoryResponse build(java.util.Map<String, ?> map) throws Exception {
ListSubscriptionAlbumCategoryResponse self = new ListSubscriptionAlbumCategoryResponse();
return TeaModel.build(map, self);
}
public ListSubscriptionAlbumCategoryResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListSubscriptionAlbumCategoryResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListSubscriptionAlbumCategoryResponse setBody(ListSubscriptionAlbumCategoryResponseBody body) {
this.body = body;
return this;
}
public ListSubscriptionAlbumCategoryResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListSubscriptionAlbumCategoryResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListSubscriptionAlbumCategoryResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("Code")
public Integer code;
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
/**
* <strong>example:</strong>
* <p>60E7A523-9766-1D07-87A2-6E587420C59B</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public java.util.List<ListSubscriptionAlbumCategoryResponseBodyResult> result;
public static ListSubscriptionAlbumCategoryResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListSubscriptionAlbumCategoryResponseBody self = new ListSubscriptionAlbumCategoryResponseBody();
return TeaModel.build(map, self);
}
public ListSubscriptionAlbumCategoryResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public ListSubscriptionAlbumCategoryResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListSubscriptionAlbumCategoryResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListSubscriptionAlbumCategoryResponseBody setResult(java.util.List<ListSubscriptionAlbumCategoryResponseBodyResult> result) {
this.result = result;
return this;
}
public java.util.List<ListSubscriptionAlbumCategoryResponseBodyResult> getResult() {
return this.result;
}
public static class ListSubscriptionAlbumCategoryResponseBodyResult extends TeaModel {
/**
* <strong>example:</strong>
* <p>80011</p>
*/
@NameInMap("CategoryId")
public String categoryId;
/**
* <strong>example:</strong>
* <p>儿童</p>
*/
@NameInMap("CategoryName")
public String categoryName;
public static ListSubscriptionAlbumCategoryResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
ListSubscriptionAlbumCategoryResponseBodyResult self = new ListSubscriptionAlbumCategoryResponseBodyResult();
return TeaModel.build(map, self);
}
public ListSubscriptionAlbumCategoryResponseBodyResult setCategoryId(String categoryId) {
this.categoryId = categoryId;
return this;
}
public String getCategoryId() {
return this.categoryId;
}
public ListSubscriptionAlbumCategoryResponseBodyResult setCategoryName(String categoryName) {
this.categoryName = categoryName;
return this;
}
public String getCategoryName() {
return this.categoryName;
}
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListUserMessageHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListUserMessageHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static ListUserMessageHeaders build(java.util.Map<String, ?> map) throws Exception {
ListUserMessageHeaders self = new ListUserMessageHeaders();
return TeaModel.build(map, self);
}
public ListUserMessageHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListUserMessageHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ListUserMessageHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListUserMessageRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListUserMessageRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>2022-07-27 14:06:55.984</p>
*/
@NameInMap("BeforeTime")
public String beforeTime;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("UserInfo")
public ListUserMessageRequestUserInfo userInfo;
/**
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("limit")
public Integer limit;
public static ListUserMessageRequest build(java.util.Map<String, ?> map) throws Exception {
ListUserMessageRequest self = new ListUserMessageRequest();
return TeaModel.build(map, self);
}
public ListUserMessageRequest setBeforeTime(String beforeTime) {
this.beforeTime = beforeTime;
return this;
}
public String getBeforeTime() {
return this.beforeTime;
}
public ListUserMessageRequest setUserInfo(ListUserMessageRequestUserInfo userInfo) {
this.userInfo = userInfo;
return this;
}
public ListUserMessageRequestUserInfo getUserInfo() {
return this.userInfo;
}
public ListUserMessageRequest setLimit(Integer limit) {
this.limit = limit;
return this;
}
public Integer getLimit() {
return this.limit;
}
public static class ListUserMessageRequestUserInfo extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("EncodeKey")
public String encodeKey;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>PROJECT_ID</p>
*/
@NameInMap("EncodeType")
public String encodeType;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>HOFF****my7Iw=</p>
*/
@NameInMap("Id")
public String id;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>OPEN_ID</p>
*/
@NameInMap("IdType")
public String idType;
/**
* <strong>example:</strong>
* <p>1**2</p>
*/
@NameInMap("OrganizationId")
public String organizationId;
public static ListUserMessageRequestUserInfo build(java.util.Map<String, ?> map) throws Exception {
ListUserMessageRequestUserInfo self = new ListUserMessageRequestUserInfo();
return TeaModel.build(map, self);
}
public ListUserMessageRequestUserInfo setEncodeKey(String encodeKey) {
this.encodeKey = encodeKey;
return this;
}
public String getEncodeKey() {
return this.encodeKey;
}
public ListUserMessageRequestUserInfo setEncodeType(String encodeType) {
this.encodeType = encodeType;
return this;
}
public String getEncodeType() {
return this.encodeType;
}
public ListUserMessageRequestUserInfo setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public ListUserMessageRequestUserInfo setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
public ListUserMessageRequestUserInfo setOrganizationId(String organizationId) {
this.organizationId = organizationId;
return this;
}
public String getOrganizationId() {
return this.organizationId;
}
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListUserMessageResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListUserMessageResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListUserMessageResponseBody body;
public static ListUserMessageResponse build(java.util.Map<String, ?> map) throws Exception {
ListUserMessageResponse self = new ListUserMessageResponse();
return TeaModel.build(map, self);
}
public ListUserMessageResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListUserMessageResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListUserMessageResponse setBody(ListUserMessageResponseBody body) {
this.body = body;
return this;
}
public ListUserMessageResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListUserMessageResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListUserMessageResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>SUCCESS</p>
*/
@NameInMap("Code")
public String code;
@NameInMap("Message")
public String message;
@NameInMap("Result")
public java.util.List<ListUserMessageResponseBodyResult> result;
public static ListUserMessageResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListUserMessageResponseBody self = new ListUserMessageResponseBody();
return TeaModel.build(map, self);
}
public ListUserMessageResponseBody setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public ListUserMessageResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListUserMessageResponseBody setResult(java.util.List<ListUserMessageResponseBodyResult> result) {
this.result = result;
return this;
}
public java.util.List<ListUserMessageResponseBodyResult> getResult() {
return this.result;
}
public static class ListUserMessageResponseBodyResult extends TeaModel {
@NameInMap("Content")
public String content;
@NameInMap("DeviceName")
public String deviceName;
/**
* <strong>example:</strong>
* <p>2022-07-27 14:06:27.000</p>
*/
@NameInMap("GmtCreate")
public String gmtCreate;
/**
* <strong>example:</strong>
* <p>123456</p>
*/
@NameInMap("Id")
public String id;
/**
* <strong>example:</strong>
* <p><a href="http://xx">http://xx</a></p>
*/
@NameInMap("Pic")
public String pic;
/**
* <strong>example:</strong>
* <p>app</p>
*/
@NameInMap("Source")
public String source;
/**
* <strong>example:</strong>
* <p>AF188<strong>065EE4B</strong>DD68CE**951D84D4</p>
*/
@NameInMap("SourceUuid")
public String sourceUuid;
/**
* <strong>example:</strong>
* <p>0</p>
*/
@NameInMap("Status")
public Integer status;
/**
* <strong>example:</strong>
* <p>audio</p>
*/
@NameInMap("Type")
public String type;
/**
* <strong>example:</strong>
* <p><a href="http://xx">http://xx</a></p>
*/
@NameInMap("Url")
public String url;
public static ListUserMessageResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
ListUserMessageResponseBodyResult self = new ListUserMessageResponseBodyResult();
return TeaModel.build(map, self);
}
public ListUserMessageResponseBodyResult setContent(String content) {
this.content = content;
return this;
}
public String getContent() {
return this.content;
}
public ListUserMessageResponseBodyResult setDeviceName(String deviceName) {
this.deviceName = deviceName;
return this;
}
public String getDeviceName() {
return this.deviceName;
}
public ListUserMessageResponseBodyResult setGmtCreate(String gmtCreate) {
this.gmtCreate = gmtCreate;
return this;
}
public String getGmtCreate() {
return this.gmtCreate;
}
public ListUserMessageResponseBodyResult setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public ListUserMessageResponseBodyResult setPic(String pic) {
this.pic = pic;
return this;
}
public String getPic() {
return this.pic;
}
public ListUserMessageResponseBodyResult setSource(String source) {
this.source = source;
return this;
}
public String getSource() {
return this.source;
}
public ListUserMessageResponseBodyResult setSourceUuid(String sourceUuid) {
this.sourceUuid = sourceUuid;
return this;
}
public String getSourceUuid() {
return this.sourceUuid;
}
public ListUserMessageResponseBodyResult setStatus(Integer status) {
this.status = status;
return this;
}
public Integer getStatus() {
return this.status;
}
public ListUserMessageResponseBodyResult setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
public ListUserMessageResponseBodyResult setUrl(String url) {
this.url = url;
return this;
}
public String getUrl() {
return this.url;
}
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ListUserMessageShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ListUserMessageShrinkRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>2022-07-27 14:06:55.984</p>
*/
@NameInMap("BeforeTime")
public String beforeTime;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("UserInfo")
public String userInfoShrink;
/**
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("limit")
public Integer limit;
public static ListUserMessageShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
ListUserMessageShrinkRequest self = new ListUserMessageShrinkRequest();
return TeaModel.build(map, self);
}
public ListUserMessageShrinkRequest setBeforeTime(String beforeTime) {
this.beforeTime = beforeTime;
return this;
}
public String getBeforeTime() {
return this.beforeTime;
}
public ListUserMessageShrinkRequest setUserInfoShrink(String userInfoShrink) {
this.userInfoShrink = userInfoShrink;
return this;
}
public String getUserInfoShrink() {
return this.userInfoShrink;
}
public ListUserMessageShrinkRequest setLimit(Integer limit) {
this.limit = limit;
return this;
}
public Integer getLimit() {
return this.limit;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/LoginStateInfo.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class LoginStateInfo extends TeaModel {
@NameInMap("SceneCode")
public String sceneCode;
@NameInMap("ThirdUserIdentifier")
public String thirdUserIdentifier;
@NameInMap("ThirdUserType")
public String thirdUserType;
@NameInMap("UserId")
public String userId;
public static LoginStateInfo build(java.util.Map<String, ?> map) throws Exception {
LoginStateInfo self = new LoginStateInfo();
return TeaModel.build(map, self);
}
public LoginStateInfo setSceneCode(String sceneCode) {
this.sceneCode = sceneCode;
return this;
}
public String getSceneCode() {
return this.sceneCode;
}
public LoginStateInfo setThirdUserIdentifier(String thirdUserIdentifier) {
this.thirdUserIdentifier = thirdUserIdentifier;
return this;
}
public String getThirdUserIdentifier() {
return this.thirdUserIdentifier;
}
public LoginStateInfo setThirdUserType(String thirdUserType) {
this.thirdUserType = thirdUserType;
return this;
}
public String getThirdUserType() {
return this.thirdUserType;
}
public LoginStateInfo setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/MobileRecommendHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class MobileRecommendHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static MobileRecommendHeaders build(java.util.Map<String, ?> map) throws Exception {
MobileRecommendHeaders self = new MobileRecommendHeaders();
return TeaModel.build(map, self);
}
public MobileRecommendHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public MobileRecommendHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public MobileRecommendHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/MobileRecommendRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class MobileRecommendRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("BotId")
public String botId;
/**
* <strong>example:</strong>
* <p>6</p>
*/
@NameInMap("Count")
public String count;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("DeviceInfo")
public MobileRecommendRequestDeviceInfo deviceInfo;
@NameInMap("Style")
public String style;
/**
* <strong>example:</strong>
* <p>DAILY_REC</p>
*/
@NameInMap("Type")
public String type;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("UserInfo")
public MobileRecommendRequestUserInfo userInfo;
public static MobileRecommendRequest build(java.util.Map<String, ?> map) throws Exception {
MobileRecommendRequest self = new MobileRecommendRequest();
return TeaModel.build(map, self);
}
public MobileRecommendRequest setBotId(String botId) {
this.botId = botId;
return this;
}
public String getBotId() {
return this.botId;
}
public MobileRecommendRequest setCount(String count) {
this.count = count;
return this;
}
public String getCount() {
return this.count;
}
public MobileRecommendRequest setDeviceInfo(MobileRecommendRequestDeviceInfo deviceInfo) {
this.deviceInfo = deviceInfo;
return this;
}
public MobileRecommendRequestDeviceInfo getDeviceInfo() {
return this.deviceInfo;
}
public MobileRecommendRequest setStyle(String style) {
this.style = style;
return this;
}
public String getStyle() {
return this.style;
}
public MobileRecommendRequest setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
public MobileRecommendRequest setUserInfo(MobileRecommendRequestUserInfo userInfo) {
this.userInfo = userInfo;
return this;
}
public MobileRecommendRequestUserInfo getUserInfo() {
return this.userInfo;
}
public static class MobileRecommendRequestDeviceInfo extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1414895629783187053</p>
*/
@NameInMap("EncodeKey")
public String encodeKey;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>PROJECT_ID</p>
*/
@NameInMap("EncodeType")
public String encodeType;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>fjwZiYQdtkaI95fHaLNjYcaOA/mxUPzxxw2J5iBiTBnjUCWKwER4TSHCqkBnNOYvGJ4bRZA9KzBB2naS4r/Am0lSe8ECDAAOcJ9QKLFF6DM=</p>
*/
@NameInMap("Id")
public String id;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>OPEN_ID</p>
*/
@NameInMap("IdType")
public String idType;
@NameInMap("OrganizationId")
public String organizationId;
public static MobileRecommendRequestDeviceInfo build(java.util.Map<String, ?> map) throws Exception {
MobileRecommendRequestDeviceInfo self = new MobileRecommendRequestDeviceInfo();
return TeaModel.build(map, self);
}
public MobileRecommendRequestDeviceInfo setEncodeKey(String encodeKey) {
this.encodeKey = encodeKey;
return this;
}
public String getEncodeKey() {
return this.encodeKey;
}
public MobileRecommendRequestDeviceInfo setEncodeType(String encodeType) {
this.encodeType = encodeType;
return this;
}
public String getEncodeType() {
return this.encodeType;
}
public MobileRecommendRequestDeviceInfo setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public MobileRecommendRequestDeviceInfo setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
public MobileRecommendRequestDeviceInfo setOrganizationId(String organizationId) {
this.organizationId = organizationId;
return this;
}
public String getOrganizationId() {
return this.organizationId;
}
}
public static class MobileRecommendRequestUserInfo extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1414895629783187053</p>
*/
@NameInMap("EncodeKey")
public String encodeKey;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>PROJECT_ID</p>
*/
@NameInMap("EncodeType")
public String encodeType;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>R457Av3qg/OXTwVnFt12z6MwNe0HAS699V6n63OaLdu+VmwvhcNfMzBd+la553wWJhj3kBMjgHq2Y2dyCFoDBg==</p>
*/
@NameInMap("Id")
public String id;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>OPEN_ID</p>
*/
@NameInMap("IdType")
public String idType;
@NameInMap("OrganizationId")
public String organizationId;
public static MobileRecommendRequestUserInfo build(java.util.Map<String, ?> map) throws Exception {
MobileRecommendRequestUserInfo self = new MobileRecommendRequestUserInfo();
return TeaModel.build(map, self);
}
public MobileRecommendRequestUserInfo setEncodeKey(String encodeKey) {
this.encodeKey = encodeKey;
return this;
}
public String getEncodeKey() {
return this.encodeKey;
}
public MobileRecommendRequestUserInfo setEncodeType(String encodeType) {
this.encodeType = encodeType;
return this;
}
public String getEncodeType() {
return this.encodeType;
}
public MobileRecommendRequestUserInfo setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public MobileRecommendRequestUserInfo setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
public MobileRecommendRequestUserInfo setOrganizationId(String organizationId) {
this.organizationId = organizationId;
return this;
}
public String getOrganizationId() {
return this.organizationId;
}
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/MobileRecommendResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class MobileRecommendResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public MobileRecommendResponseBody body;
public static MobileRecommendResponse build(java.util.Map<String, ?> map) throws Exception {
MobileRecommendResponse self = new MobileRecommendResponse();
return TeaModel.build(map, self);
}
public MobileRecommendResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public MobileRecommendResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public MobileRecommendResponse setBody(MobileRecommendResponseBody body) {
this.body = body;
return this;
}
public MobileRecommendResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/MobileRecommendResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class MobileRecommendResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("Code")
public String code;
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
/**
* <p>Id of the request</p>
*
* <strong>example:</strong>
* <p>5C5809B4-F465-52E0-9A8B-61396F9E593B</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public java.util.List<MobileRecommendResponseBodyResult> result;
public static MobileRecommendResponseBody build(java.util.Map<String, ?> map) throws Exception {
MobileRecommendResponseBody self = new MobileRecommendResponseBody();
return TeaModel.build(map, self);
}
public MobileRecommendResponseBody setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public MobileRecommendResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public MobileRecommendResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public MobileRecommendResponseBody setResult(java.util.List<MobileRecommendResponseBodyResult> result) {
this.result = result;
return this;
}
public java.util.List<MobileRecommendResponseBodyResult> getResult() {
return this.result;
}
public static class MobileRecommendResponseBodyResult extends TeaModel {
@NameInMap("Authors")
public java.util.List<String> authors;
/**
* <strong>example:</strong>
* <p><a href="http://img4.kuwo.cn/star/albumcover/120/78/77/1688821132.jpg">http://img4.kuwo.cn/star/albumcover/120/78/77/1688821132.jpg</a></p>
*/
@NameInMap("Cover")
public String cover;
/**
* <strong>example:</strong>
* <p>550144364</p>
*/
@NameInMap("RawId")
public String rawId;
/**
* <strong>example:</strong>
* <p>KG</p>
*/
@NameInMap("Source")
public String source;
@NameInMap("Title")
public String title;
public static MobileRecommendResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
MobileRecommendResponseBodyResult self = new MobileRecommendResponseBodyResult();
return TeaModel.build(map, self);
}
public MobileRecommendResponseBodyResult setAuthors(java.util.List<String> authors) {
this.authors = authors;
return this;
}
public java.util.List<String> getAuthors() {
return this.authors;
}
public MobileRecommendResponseBodyResult setCover(String cover) {
this.cover = cover;
return this;
}
public String getCover() {
return this.cover;
}
public MobileRecommendResponseBodyResult setRawId(String rawId) {
this.rawId = rawId;
return this;
}
public String getRawId() {
return this.rawId;
}
public MobileRecommendResponseBodyResult setSource(String source) {
this.source = source;
return this;
}
public String getSource() {
return this.source;
}
public MobileRecommendResponseBodyResult setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/MobileRecommendShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class MobileRecommendShrinkRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("BotId")
public String botId;
/**
* <strong>example:</strong>
* <p>6</p>
*/
@NameInMap("Count")
public String count;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("DeviceInfo")
public String deviceInfoShrink;
@NameInMap("Style")
public String style;
/**
* <strong>example:</strong>
* <p>DAILY_REC</p>
*/
@NameInMap("Type")
public String type;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("UserInfo")
public String userInfoShrink;
public static MobileRecommendShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
MobileRecommendShrinkRequest self = new MobileRecommendShrinkRequest();
return TeaModel.build(map, self);
}
public MobileRecommendShrinkRequest setBotId(String botId) {
this.botId = botId;
return this;
}
public String getBotId() {
return this.botId;
}
public MobileRecommendShrinkRequest setCount(String count) {
this.count = count;
return this;
}
public String getCount() {
return this.count;
}
public MobileRecommendShrinkRequest setDeviceInfoShrink(String deviceInfoShrink) {
this.deviceInfoShrink = deviceInfoShrink;
return this;
}
public String getDeviceInfoShrink() {
return this.deviceInfoShrink;
}
public MobileRecommendShrinkRequest setStyle(String style) {
this.style = style;
return this;
}
public String getStyle() {
return this.style;
}
public MobileRecommendShrinkRequest setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
public MobileRecommendShrinkRequest setUserInfoShrink(String userInfoShrink) {
this.userInfoShrink = userInfoShrink;
return this;
}
public String getUserInfoShrink() {
return this.userInfoShrink;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/PlayAndPauseControlHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class PlayAndPauseControlHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static PlayAndPauseControlHeaders build(java.util.Map<String, ?> map) throws Exception {
PlayAndPauseControlHeaders self = new PlayAndPauseControlHeaders();
return TeaModel.build(map, self);
}
public PlayAndPauseControlHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public PlayAndPauseControlHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public PlayAndPauseControlHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/PlayAndPauseControlRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class PlayAndPauseControlRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("DeviceInfo")
public PlayAndPauseControlRequestDeviceInfo deviceInfo;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("OpenPlayAndPauseControlParam")
public PlayAndPauseControlRequestOpenPlayAndPauseControlParam openPlayAndPauseControlParam;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("UserInfo")
public PlayAndPauseControlRequestUserInfo userInfo;
public static PlayAndPauseControlRequest build(java.util.Map<String, ?> map) throws Exception {
PlayAndPauseControlRequest self = new PlayAndPauseControlRequest();
return TeaModel.build(map, self);
}
public PlayAndPauseControlRequest setDeviceInfo(PlayAndPauseControlRequestDeviceInfo deviceInfo) {
this.deviceInfo = deviceInfo;
return this;
}
public PlayAndPauseControlRequestDeviceInfo getDeviceInfo() {
return this.deviceInfo;
}
public PlayAndPauseControlRequest setOpenPlayAndPauseControlParam(PlayAndPauseControlRequestOpenPlayAndPauseControlParam openPlayAndPauseControlParam) {
this.openPlayAndPauseControlParam = openPlayAndPauseControlParam;
return this;
}
public PlayAndPauseControlRequestOpenPlayAndPauseControlParam getOpenPlayAndPauseControlParam() {
return this.openPlayAndPauseControlParam;
}
public PlayAndPauseControlRequest setUserInfo(PlayAndPauseControlRequestUserInfo userInfo) {
this.userInfo = userInfo;
return this;
}
public PlayAndPauseControlRequestUserInfo getUserInfo() {
return this.userInfo;
}
public static class PlayAndPauseControlRequestDeviceInfo extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("EncodeKey")
public String encodeKey;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>PROJECT_ID</p>
*/
@NameInMap("EncodeType")
public String encodeType;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>rV/XSgPuxZjx/hN3iw8U+e8ouRjKOX95tn1a0kwb2+Ao6Q1CAxASJUZDWtlk1r43LWcVW6fvY1Rr4sEPFodpnA==</p>
*/
@NameInMap("Id")
public String id;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>OPEN_ID</p>
*/
@NameInMap("IdType")
public String idType;
/**
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("OrganizationId")
public String organizationId;
public static PlayAndPauseControlRequestDeviceInfo build(java.util.Map<String, ?> map) throws Exception {
PlayAndPauseControlRequestDeviceInfo self = new PlayAndPauseControlRequestDeviceInfo();
return TeaModel.build(map, self);
}
public PlayAndPauseControlRequestDeviceInfo setEncodeKey(String encodeKey) {
this.encodeKey = encodeKey;
return this;
}
public String getEncodeKey() {
return this.encodeKey;
}
public PlayAndPauseControlRequestDeviceInfo setEncodeType(String encodeType) {
this.encodeType = encodeType;
return this;
}
public String getEncodeType() {
return this.encodeType;
}
public PlayAndPauseControlRequestDeviceInfo setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public PlayAndPauseControlRequestDeviceInfo setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
public PlayAndPauseControlRequestDeviceInfo setOrganizationId(String organizationId) {
this.organizationId = organizationId;
return this;
}
public String getOrganizationId() {
return this.organizationId;
}
}
public static class PlayAndPauseControlRequestOpenPlayAndPauseControlParam extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>Play</p>
*/
@NameInMap("OpenPlayAndPauseCommand")
public String openPlayAndPauseCommand;
public static PlayAndPauseControlRequestOpenPlayAndPauseControlParam build(java.util.Map<String, ?> map) throws Exception {
PlayAndPauseControlRequestOpenPlayAndPauseControlParam self = new PlayAndPauseControlRequestOpenPlayAndPauseControlParam();
return TeaModel.build(map, self);
}
public PlayAndPauseControlRequestOpenPlayAndPauseControlParam setOpenPlayAndPauseCommand(String openPlayAndPauseCommand) {
this.openPlayAndPauseCommand = openPlayAndPauseCommand;
return this;
}
public String getOpenPlayAndPauseCommand() {
return this.openPlayAndPauseCommand;
}
}
public static class PlayAndPauseControlRequestUserInfo extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("EncodeKey")
public String encodeKey;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>PROJECT_ID</p>
*/
@NameInMap("EncodeType")
public String encodeType;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>rV/XSgPuxZjx/hN3iw8U+e8ouRjKOX95tn1a0kwb2+Ao6Q1CAxASJUZDWtlk1r43LWcVW6fvY1Rr4sEPFodpnA==</p>
*/
@NameInMap("Id")
public String id;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>OPEN_ID</p>
*/
@NameInMap("IdType")
public String idType;
/**
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("OrganizationId")
public String organizationId;
public static PlayAndPauseControlRequestUserInfo build(java.util.Map<String, ?> map) throws Exception {
PlayAndPauseControlRequestUserInfo self = new PlayAndPauseControlRequestUserInfo();
return TeaModel.build(map, self);
}
public PlayAndPauseControlRequestUserInfo setEncodeKey(String encodeKey) {
this.encodeKey = encodeKey;
return this;
}
public String getEncodeKey() {
return this.encodeKey;
}
public PlayAndPauseControlRequestUserInfo setEncodeType(String encodeType) {
this.encodeType = encodeType;
return this;
}
public String getEncodeType() {
return this.encodeType;
}
public PlayAndPauseControlRequestUserInfo setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public PlayAndPauseControlRequestUserInfo setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
public PlayAndPauseControlRequestUserInfo setOrganizationId(String organizationId) {
this.organizationId = organizationId;
return this;
}
public String getOrganizationId() {
return this.organizationId;
}
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/PlayAndPauseControlResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class PlayAndPauseControlResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public PlayAndPauseControlResponseBody body;
public static PlayAndPauseControlResponse build(java.util.Map<String, ?> map) throws Exception {
PlayAndPauseControlResponse self = new PlayAndPauseControlResponse();
return TeaModel.build(map, self);
}
public PlayAndPauseControlResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public PlayAndPauseControlResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public PlayAndPauseControlResponse setBody(PlayAndPauseControlResponseBody body) {
this.body = body;
return this;
}
public PlayAndPauseControlResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/PlayAndPauseControlResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class PlayAndPauseControlResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("Code")
public Integer code;
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
/**
* <strong>example:</strong>
* <p>10002398812</p>
*/
@NameInMap("RequestId")
public String requestId;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("Result")
public Boolean result;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("Success")
public String success;
public static PlayAndPauseControlResponseBody build(java.util.Map<String, ?> map) throws Exception {
PlayAndPauseControlResponseBody self = new PlayAndPauseControlResponseBody();
return TeaModel.build(map, self);
}
public PlayAndPauseControlResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public PlayAndPauseControlResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public PlayAndPauseControlResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public PlayAndPauseControlResponseBody setResult(Boolean result) {
this.result = result;
return this;
}
public Boolean getResult() {
return this.result;
}
public PlayAndPauseControlResponseBody setSuccess(String success) {
this.success = success;
return this;
}
public String getSuccess() {
return this.success;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/PlayAndPauseControlShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class PlayAndPauseControlShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("DeviceInfo")
public String deviceInfoShrink;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("OpenPlayAndPauseControlParam")
public String openPlayAndPauseControlParamShrink;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("UserInfo")
public String userInfoShrink;
public static PlayAndPauseControlShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
PlayAndPauseControlShrinkRequest self = new PlayAndPauseControlShrinkRequest();
return TeaModel.build(map, self);
}
public PlayAndPauseControlShrinkRequest setDeviceInfoShrink(String deviceInfoShrink) {
this.deviceInfoShrink = deviceInfoShrink;
return this;
}
public String getDeviceInfoShrink() {
return this.deviceInfoShrink;
}
public PlayAndPauseControlShrinkRequest setOpenPlayAndPauseControlParamShrink(String openPlayAndPauseControlParamShrink) {
this.openPlayAndPauseControlParamShrink = openPlayAndPauseControlParamShrink;
return this;
}
public String getOpenPlayAndPauseControlParamShrink() {
return this.openPlayAndPauseControlParamShrink;
}
public PlayAndPauseControlShrinkRequest setUserInfoShrink(String userInfoShrink) {
this.userInfoShrink = userInfoShrink;
return this;
}
public String getUserInfoShrink() {
return this.userInfoShrink;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/PlayModeControlHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class PlayModeControlHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static PlayModeControlHeaders build(java.util.Map<String, ?> map) throws Exception {
PlayModeControlHeaders self = new PlayModeControlHeaders();
return TeaModel.build(map, self);
}
public PlayModeControlHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public PlayModeControlHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public PlayModeControlHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/PlayModeControlRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class PlayModeControlRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("DeviceInfo")
public PlayModeControlRequestDeviceInfo deviceInfo;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("OpenPlayModeControlRequest")
public PlayModeControlRequestOpenPlayModeControlRequest openPlayModeControlRequest;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("UserInfo")
public PlayModeControlRequestUserInfo userInfo;
public static PlayModeControlRequest build(java.util.Map<String, ?> map) throws Exception {
PlayModeControlRequest self = new PlayModeControlRequest();
return TeaModel.build(map, self);
}
public PlayModeControlRequest setDeviceInfo(PlayModeControlRequestDeviceInfo deviceInfo) {
this.deviceInfo = deviceInfo;
return this;
}
public PlayModeControlRequestDeviceInfo getDeviceInfo() {
return this.deviceInfo;
}
public PlayModeControlRequest setOpenPlayModeControlRequest(PlayModeControlRequestOpenPlayModeControlRequest openPlayModeControlRequest) {
this.openPlayModeControlRequest = openPlayModeControlRequest;
return this;
}
public PlayModeControlRequestOpenPlayModeControlRequest getOpenPlayModeControlRequest() {
return this.openPlayModeControlRequest;
}
public PlayModeControlRequest setUserInfo(PlayModeControlRequestUserInfo userInfo) {
this.userInfo = userInfo;
return this;
}
public PlayModeControlRequestUserInfo getUserInfo() {
return this.userInfo;
}
public static class PlayModeControlRequestDeviceInfo extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("EncodeKey")
public String encodeKey;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>PROJECT_ID</p>
*/
@NameInMap("EncodeType")
public String encodeType;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>rV/XSgPuxZjx/hN3iw8U+e8ouRjKOX95tn1a0kwb2+Ao6Q1CAxASJUZDWtlk1r43LWcVW6fvY1Rr4sEPFodpnA==</p>
*/
@NameInMap("Id")
public String id;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>OPEN_ID</p>
*/
@NameInMap("IdType")
public String idType;
/**
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("OrganizationId")
public String organizationId;
public static PlayModeControlRequestDeviceInfo build(java.util.Map<String, ?> map) throws Exception {
PlayModeControlRequestDeviceInfo self = new PlayModeControlRequestDeviceInfo();
return TeaModel.build(map, self);
}
public PlayModeControlRequestDeviceInfo setEncodeKey(String encodeKey) {
this.encodeKey = encodeKey;
return this;
}
public String getEncodeKey() {
return this.encodeKey;
}
public PlayModeControlRequestDeviceInfo setEncodeType(String encodeType) {
this.encodeType = encodeType;
return this;
}
public String getEncodeType() {
return this.encodeType;
}
public PlayModeControlRequestDeviceInfo setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public PlayModeControlRequestDeviceInfo setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
public PlayModeControlRequestDeviceInfo setOrganizationId(String organizationId) {
this.organizationId = organizationId;
return this;
}
public String getOrganizationId() {
return this.organizationId;
}
}
public static class PlayModeControlRequestOpenPlayModeControlRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>Normal</p>
*/
@NameInMap("OpenPlayMode")
public String openPlayMode;
public static PlayModeControlRequestOpenPlayModeControlRequest build(java.util.Map<String, ?> map) throws Exception {
PlayModeControlRequestOpenPlayModeControlRequest self = new PlayModeControlRequestOpenPlayModeControlRequest();
return TeaModel.build(map, self);
}
public PlayModeControlRequestOpenPlayModeControlRequest setOpenPlayMode(String openPlayMode) {
this.openPlayMode = openPlayMode;
return this;
}
public String getOpenPlayMode() {
return this.openPlayMode;
}
}
public static class PlayModeControlRequestUserInfo extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("EncodeKey")
public String encodeKey;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>PROJECT_ID</p>
*/
@NameInMap("EncodeType")
public String encodeType;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>rV/XSgPuxZjx/hN3iw8U+e8ouRjKOX95tn1a0kwb2+Ao6Q1CAxASJUZDWtlk1r43LWcVW6fvY1Rr4sEPFodpnA==</p>
*/
@NameInMap("Id")
public String id;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>OPEN_ID</p>
*/
@NameInMap("IdType")
public String idType;
/**
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("OrganizationId")
public String organizationId;
public static PlayModeControlRequestUserInfo build(java.util.Map<String, ?> map) throws Exception {
PlayModeControlRequestUserInfo self = new PlayModeControlRequestUserInfo();
return TeaModel.build(map, self);
}
public PlayModeControlRequestUserInfo setEncodeKey(String encodeKey) {
this.encodeKey = encodeKey;
return this;
}
public String getEncodeKey() {
return this.encodeKey;
}
public PlayModeControlRequestUserInfo setEncodeType(String encodeType) {
this.encodeType = encodeType;
return this;
}
public String getEncodeType() {
return this.encodeType;
}
public PlayModeControlRequestUserInfo setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public PlayModeControlRequestUserInfo setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
public PlayModeControlRequestUserInfo setOrganizationId(String organizationId) {
this.organizationId = organizationId;
return this;
}
public String getOrganizationId() {
return this.organizationId;
}
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/PlayModeControlResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class PlayModeControlResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public PlayModeControlResponseBody body;
public static PlayModeControlResponse build(java.util.Map<String, ?> map) throws Exception {
PlayModeControlResponse self = new PlayModeControlResponse();
return TeaModel.build(map, self);
}
public PlayModeControlResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public PlayModeControlResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public PlayModeControlResponse setBody(PlayModeControlResponseBody body) {
this.body = body;
return this;
}
public PlayModeControlResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/PlayModeControlResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class PlayModeControlResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("Code")
public Integer code;
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
/**
* <strong>example:</strong>
* <p>10002398812</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public PlayModeControlResponseBodyResult result;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("Success")
public String success;
public static PlayModeControlResponseBody build(java.util.Map<String, ?> map) throws Exception {
PlayModeControlResponseBody self = new PlayModeControlResponseBody();
return TeaModel.build(map, self);
}
public PlayModeControlResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public PlayModeControlResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public PlayModeControlResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public PlayModeControlResponseBody setResult(PlayModeControlResponseBodyResult result) {
this.result = result;
return this;
}
public PlayModeControlResponseBodyResult getResult() {
return this.result;
}
public PlayModeControlResponseBody setSuccess(String success) {
this.success = success;
return this;
}
public String getSuccess() {
return this.success;
}
public static class PlayModeControlResponseBodyResult extends TeaModel {
/**
* <strong>example:</strong>
* <p>Normal</p>
*/
@NameInMap("OpenPlayMode")
public String openPlayMode;
public static PlayModeControlResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
PlayModeControlResponseBodyResult self = new PlayModeControlResponseBodyResult();
return TeaModel.build(map, self);
}
public PlayModeControlResponseBodyResult setOpenPlayMode(String openPlayMode) {
this.openPlayMode = openPlayMode;
return this;
}
public String getOpenPlayMode() {
return this.openPlayMode;
}
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/PlayModeControlShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class PlayModeControlShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("DeviceInfo")
public String deviceInfoShrink;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("OpenPlayModeControlRequest")
public String openPlayModeControlRequestShrink;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("UserInfo")
public String userInfoShrink;
public static PlayModeControlShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
PlayModeControlShrinkRequest self = new PlayModeControlShrinkRequest();
return TeaModel.build(map, self);
}
public PlayModeControlShrinkRequest setDeviceInfoShrink(String deviceInfoShrink) {
this.deviceInfoShrink = deviceInfoShrink;
return this;
}
public String getDeviceInfoShrink() {
return this.deviceInfoShrink;
}
public PlayModeControlShrinkRequest setOpenPlayModeControlRequestShrink(String openPlayModeControlRequestShrink) {
this.openPlayModeControlRequestShrink = openPlayModeControlRequestShrink;
return this;
}
public String getOpenPlayModeControlRequestShrink() {
return this.openPlayModeControlRequestShrink;
}
public PlayModeControlShrinkRequest setUserInfoShrink(String userInfoShrink) {
this.userInfoShrink = userInfoShrink;
return this;
}
public String getUserInfoShrink() {
return this.userInfoShrink;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/PreviousAndNextControlHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class PreviousAndNextControlHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static PreviousAndNextControlHeaders build(java.util.Map<String, ?> map) throws Exception {
PreviousAndNextControlHeaders self = new PreviousAndNextControlHeaders();
return TeaModel.build(map, self);
}
public PreviousAndNextControlHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public PreviousAndNextControlHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public PreviousAndNextControlHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/PreviousAndNextControlRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class PreviousAndNextControlRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("DeviceInfo")
public PreviousAndNextControlRequestDeviceInfo deviceInfo;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("OpenControlPlayingListRequest")
public PreviousAndNextControlRequestOpenControlPlayingListRequest openControlPlayingListRequest;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("UserInfo")
public PreviousAndNextControlRequestUserInfo userInfo;
public static PreviousAndNextControlRequest build(java.util.Map<String, ?> map) throws Exception {
PreviousAndNextControlRequest self = new PreviousAndNextControlRequest();
return TeaModel.build(map, self);
}
public PreviousAndNextControlRequest setDeviceInfo(PreviousAndNextControlRequestDeviceInfo deviceInfo) {
this.deviceInfo = deviceInfo;
return this;
}
public PreviousAndNextControlRequestDeviceInfo getDeviceInfo() {
return this.deviceInfo;
}
public PreviousAndNextControlRequest setOpenControlPlayingListRequest(PreviousAndNextControlRequestOpenControlPlayingListRequest openControlPlayingListRequest) {
this.openControlPlayingListRequest = openControlPlayingListRequest;
return this;
}
public PreviousAndNextControlRequestOpenControlPlayingListRequest getOpenControlPlayingListRequest() {
return this.openControlPlayingListRequest;
}
public PreviousAndNextControlRequest setUserInfo(PreviousAndNextControlRequestUserInfo userInfo) {
this.userInfo = userInfo;
return this;
}
public PreviousAndNextControlRequestUserInfo getUserInfo() {
return this.userInfo;
}
public static class PreviousAndNextControlRequestDeviceInfo extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("EncodeKey")
public String encodeKey;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>PROJECT_ID</p>
*/
@NameInMap("EncodeType")
public String encodeType;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>rV/XSgPuxZjx/hN3iw8U+e8ouRjKOX95tn1a0kwb2+Ao6Q1CAxASJUZDWtlk1r43LWcVW6fvY1Rr4sEPFodpnA==</p>
*/
@NameInMap("Id")
public String id;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>OPEN_ID</p>
*/
@NameInMap("IdType")
public String idType;
/**
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("OrganizationId")
public String organizationId;
public static PreviousAndNextControlRequestDeviceInfo build(java.util.Map<String, ?> map) throws Exception {
PreviousAndNextControlRequestDeviceInfo self = new PreviousAndNextControlRequestDeviceInfo();
return TeaModel.build(map, self);
}
public PreviousAndNextControlRequestDeviceInfo setEncodeKey(String encodeKey) {
this.encodeKey = encodeKey;
return this;
}
public String getEncodeKey() {
return this.encodeKey;
}
public PreviousAndNextControlRequestDeviceInfo setEncodeType(String encodeType) {
this.encodeType = encodeType;
return this;
}
public String getEncodeType() {
return this.encodeType;
}
public PreviousAndNextControlRequestDeviceInfo setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public PreviousAndNextControlRequestDeviceInfo setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
public PreviousAndNextControlRequestDeviceInfo setOrganizationId(String organizationId) {
this.organizationId = organizationId;
return this;
}
public String getOrganizationId() {
return this.organizationId;
}
}
public static class PreviousAndNextControlRequestOpenControlPlayingListRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>NEXT</p>
*/
@NameInMap("Cmd")
public String cmd;
@NameInMap("ExtendInfo")
public java.util.Map<String, ?> extendInfo;
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("IsFromDevice")
public Boolean isFromDevice;
public static PreviousAndNextControlRequestOpenControlPlayingListRequest build(java.util.Map<String, ?> map) throws Exception {
PreviousAndNextControlRequestOpenControlPlayingListRequest self = new PreviousAndNextControlRequestOpenControlPlayingListRequest();
return TeaModel.build(map, self);
}
public PreviousAndNextControlRequestOpenControlPlayingListRequest setCmd(String cmd) {
this.cmd = cmd;
return this;
}
public String getCmd() {
return this.cmd;
}
public PreviousAndNextControlRequestOpenControlPlayingListRequest setExtendInfo(java.util.Map<String, ?> extendInfo) {
this.extendInfo = extendInfo;
return this;
}
public java.util.Map<String, ?> getExtendInfo() {
return this.extendInfo;
}
public PreviousAndNextControlRequestOpenControlPlayingListRequest setIsFromDevice(Boolean isFromDevice) {
this.isFromDevice = isFromDevice;
return this;
}
public Boolean getIsFromDevice() {
return this.isFromDevice;
}
}
public static class PreviousAndNextControlRequestUserInfo extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("EncodeKey")
public String encodeKey;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>PROJECT_ID</p>
*/
@NameInMap("EncodeType")
public String encodeType;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>rV/XSgPuxZjx/hN3iw8U+e8ouRjKOX95tn1a0kwb2+Ao6Q1CAxASJUZDWtlk1r43LWcVW6fvY1Rr4sEPFodpnA==</p>
*/
@NameInMap("Id")
public String id;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>OPEN_ID</p>
*/
@NameInMap("IdType")
public String idType;
/**
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("OrganizationId")
public String organizationId;
public static PreviousAndNextControlRequestUserInfo build(java.util.Map<String, ?> map) throws Exception {
PreviousAndNextControlRequestUserInfo self = new PreviousAndNextControlRequestUserInfo();
return TeaModel.build(map, self);
}
public PreviousAndNextControlRequestUserInfo setEncodeKey(String encodeKey) {
this.encodeKey = encodeKey;
return this;
}
public String getEncodeKey() {
return this.encodeKey;
}
public PreviousAndNextControlRequestUserInfo setEncodeType(String encodeType) {
this.encodeType = encodeType;
return this;
}
public String getEncodeType() {
return this.encodeType;
}
public PreviousAndNextControlRequestUserInfo setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public PreviousAndNextControlRequestUserInfo setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
public PreviousAndNextControlRequestUserInfo setOrganizationId(String organizationId) {
this.organizationId = organizationId;
return this;
}
public String getOrganizationId() {
return this.organizationId;
}
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/PreviousAndNextControlResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class PreviousAndNextControlResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public PreviousAndNextControlResponseBody body;
public static PreviousAndNextControlResponse build(java.util.Map<String, ?> map) throws Exception {
PreviousAndNextControlResponse self = new PreviousAndNextControlResponse();
return TeaModel.build(map, self);
}
public PreviousAndNextControlResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public PreviousAndNextControlResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public PreviousAndNextControlResponse setBody(PreviousAndNextControlResponseBody body) {
this.body = body;
return this;
}
public PreviousAndNextControlResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/PreviousAndNextControlResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class PreviousAndNextControlResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("Code")
public Integer code;
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
/**
* <strong>example:</strong>
* <p>10002398812</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public PreviousAndNextControlResponseBodyResult result;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("Success")
public String success;
public static PreviousAndNextControlResponseBody build(java.util.Map<String, ?> map) throws Exception {
PreviousAndNextControlResponseBody self = new PreviousAndNextControlResponseBody();
return TeaModel.build(map, self);
}
public PreviousAndNextControlResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public PreviousAndNextControlResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public PreviousAndNextControlResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public PreviousAndNextControlResponseBody setResult(PreviousAndNextControlResponseBodyResult result) {
this.result = result;
return this;
}
public PreviousAndNextControlResponseBodyResult getResult() {
return this.result;
}
public PreviousAndNextControlResponseBody setSuccess(String success) {
this.success = success;
return this;
}
public String getSuccess() {
return this.success;
}
public static class PreviousAndNextControlResponseBodyResultCover extends TeaModel {
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("CanResize")
public Boolean canResize;
/**
* <strong>example:</strong>
* <p><a href="http://imgopen.xmcdn.com/group58/M06/08/9B/wKgLglzTyTjiOy0oAAcOTv16ohg815.jpg!op_type=3&columns=640&rows=640">http://imgopen.xmcdn.com/group58/M06/08/9B/wKgLglzTyTjiOy0oAAcOTv16ohg815.jpg!op_type=3&columns=640&rows=640</a></p>
*/
@NameInMap("Img")
public String img;
/**
* <strong>example:</strong>
* <p><a href="http://imgopen.xmcdn.com/group58/M06/08/9B/wKgLglzTyTjiOy0oAAcOTv16ohg815.jpg!op_type=3&columns=640&rows=640">http://imgopen.xmcdn.com/group58/M06/08/9B/wKgLglzTyTjiOy0oAAcOTv16ohg815.jpg!op_type=3&columns=640&rows=640</a></p>
*/
@NameInMap("Large")
public String large;
/**
* <strong>example:</strong>
* <p><a href="http://imgopen.xmcdn.com/group58/M06/08/9B/wKgLglzTyTjiOy0oAAcOTv16ohg815.jpg!op_type=3&columns=640&rows=640">http://imgopen.xmcdn.com/group58/M06/08/9B/wKgLglzTyTjiOy0oAAcOTv16ohg815.jpg!op_type=3&columns=640&rows=640</a></p>
*/
@NameInMap("Mediam")
public String mediam;
/**
* <strong>example:</strong>
* <p><a href="http://imgopen.xmcdn.com/group58/M06/08/9B/wKgLglzTyTjiOy0oAAcOTv16ohg815.jpg!op_type=3&columns=640&rows=640">http://imgopen.xmcdn.com/group58/M06/08/9B/wKgLglzTyTjiOy0oAAcOTv16ohg815.jpg!op_type=3&columns=640&rows=640</a></p>
*/
@NameInMap("Medium")
public String medium;
/**
* <strong>example:</strong>
* <p><a href="http://imgopen.xmcdn.com/group58/M06/08/9B/wKgLglzTyTjiOy0oAAcOTv16ohg815.jpg!op_type=3&columns=640&rows=640">http://imgopen.xmcdn.com/group58/M06/08/9B/wKgLglzTyTjiOy0oAAcOTv16ohg815.jpg!op_type=3&columns=640&rows=640</a></p>
*/
@NameInMap("Small")
public String small;
public static PreviousAndNextControlResponseBodyResultCover build(java.util.Map<String, ?> map) throws Exception {
PreviousAndNextControlResponseBodyResultCover self = new PreviousAndNextControlResponseBodyResultCover();
return TeaModel.build(map, self);
}
public PreviousAndNextControlResponseBodyResultCover setCanResize(Boolean canResize) {
this.canResize = canResize;
return this;
}
public Boolean getCanResize() {
return this.canResize;
}
public PreviousAndNextControlResponseBodyResultCover setImg(String img) {
this.img = img;
return this;
}
public String getImg() {
return this.img;
}
public PreviousAndNextControlResponseBodyResultCover setLarge(String large) {
this.large = large;
return this;
}
public String getLarge() {
return this.large;
}
public PreviousAndNextControlResponseBodyResultCover setMediam(String mediam) {
this.mediam = mediam;
return this;
}
public String getMediam() {
return this.mediam;
}
public PreviousAndNextControlResponseBodyResultCover setMedium(String medium) {
this.medium = medium;
return this;
}
public String getMedium() {
return this.medium;
}
public PreviousAndNextControlResponseBodyResultCover setSmall(String small) {
this.small = small;
return this;
}
public String getSmall() {
return this.small;
}
}
public static class PreviousAndNextControlResponseBodyResult extends TeaModel {
@NameInMap("AlbumName")
public String albumName;
/**
* <strong>example:</strong>
* <p>260744</p>
*/
@NameInMap("AlbumRawId")
public String albumRawId;
/**
* <strong>example:</strong>
* <p>190</p>
*/
@NameInMap("AudioLength")
public Integer audioLength;
/**
* <strong>example:</strong>
* <p>0</p>
*/
@NameInMap("Copyright")
public Integer copyright;
@NameInMap("Cover")
public PreviousAndNextControlResponseBodyResultCover cover;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("DefaultPlayOrder")
public Integer defaultPlayOrder;
/**
* <strong>example:</strong>
* <p><a href="https://openaudio.cos.tx.xmcdn.com/storages/587f-audiofreehighqps/15/CE/GKwRIJIGnb11ABc6SwF59DNb.mp3">https://openaudio.cos.tx.xmcdn.com/storages/587f-audiofreehighqps/15/CE/GKwRIJIGnb11ABc6SwF59DNb.mp3</a></p>
*/
@NameInMap("ItemUrl")
public String itemUrl;
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("Liked")
public Boolean liked;
/**
* <strong>example:</strong>
* <p><a href="https://aicontent.alibabausercontent.com/lyric/thirdsource/6f4c8408073db134b0d097c122b5a1a1.lrc">https://aicontent.alibabausercontent.com/lyric/thirdsource/6f4c8408073db134b0d097c122b5a1a1.lrc</a></p>
*/
@NameInMap("LyricUrl")
public String lyricUrl;
/**
* <strong>example:</strong>
* <p>Repeat</p>
*/
@NameInMap("PlayMode")
public String playMode;
/**
* <strong>example:</strong>
* <p>0</p>
*/
@NameInMap("Pos")
public Integer pos;
/**
* <strong>example:</strong>
* <p>0</p>
*/
@NameInMap("Progress")
public Integer progress;
/**
* <strong>example:</strong>
* <p>550144364</p>
*/
@NameInMap("RawId")
public String rawId;
@NameInMap("Singer")
public String singer;
/**
* <strong>example:</strong>
* <p>ximalayav2</p>
*/
@NameInMap("Source")
public String source;
@NameInMap("Title")
public String title;
/**
* <strong>example:</strong>
* <p>story</p>
*/
@NameInMap("Type")
public String type;
/**
* <strong>example:</strong>
* <p>VALID</p>
*/
@NameInMap("Valid")
public String valid;
public static PreviousAndNextControlResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
PreviousAndNextControlResponseBodyResult self = new PreviousAndNextControlResponseBodyResult();
return TeaModel.build(map, self);
}
public PreviousAndNextControlResponseBodyResult setAlbumName(String albumName) {
this.albumName = albumName;
return this;
}
public String getAlbumName() {
return this.albumName;
}
public PreviousAndNextControlResponseBodyResult setAlbumRawId(String albumRawId) {
this.albumRawId = albumRawId;
return this;
}
public String getAlbumRawId() {
return this.albumRawId;
}
public PreviousAndNextControlResponseBodyResult setAudioLength(Integer audioLength) {
this.audioLength = audioLength;
return this;
}
public Integer getAudioLength() {
return this.audioLength;
}
public PreviousAndNextControlResponseBodyResult setCopyright(Integer copyright) {
this.copyright = copyright;
return this;
}
public Integer getCopyright() {
return this.copyright;
}
public PreviousAndNextControlResponseBodyResult setCover(PreviousAndNextControlResponseBodyResultCover cover) {
this.cover = cover;
return this;
}
public PreviousAndNextControlResponseBodyResultCover getCover() {
return this.cover;
}
public PreviousAndNextControlResponseBodyResult setDefaultPlayOrder(Integer defaultPlayOrder) {
this.defaultPlayOrder = defaultPlayOrder;
return this;
}
public Integer getDefaultPlayOrder() {
return this.defaultPlayOrder;
}
public PreviousAndNextControlResponseBodyResult setItemUrl(String itemUrl) {
this.itemUrl = itemUrl;
return this;
}
public String getItemUrl() {
return this.itemUrl;
}
public PreviousAndNextControlResponseBodyResult setLiked(Boolean liked) {
this.liked = liked;
return this;
}
public Boolean getLiked() {
return this.liked;
}
public PreviousAndNextControlResponseBodyResult setLyricUrl(String lyricUrl) {
this.lyricUrl = lyricUrl;
return this;
}
public String getLyricUrl() {
return this.lyricUrl;
}
public PreviousAndNextControlResponseBodyResult setPlayMode(String playMode) {
this.playMode = playMode;
return this;
}
public String getPlayMode() {
return this.playMode;
}
public PreviousAndNextControlResponseBodyResult setPos(Integer pos) {
this.pos = pos;
return this;
}
public Integer getPos() {
return this.pos;
}
public PreviousAndNextControlResponseBodyResult setProgress(Integer progress) {
this.progress = progress;
return this;
}
public Integer getProgress() {
return this.progress;
}
public PreviousAndNextControlResponseBodyResult setRawId(String rawId) {
this.rawId = rawId;
return this;
}
public String getRawId() {
return this.rawId;
}
public PreviousAndNextControlResponseBodyResult setSinger(String singer) {
this.singer = singer;
return this;
}
public String getSinger() {
return this.singer;
}
public PreviousAndNextControlResponseBodyResult setSource(String source) {
this.source = source;
return this;
}
public String getSource() {
return this.source;
}
public PreviousAndNextControlResponseBodyResult setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
public PreviousAndNextControlResponseBodyResult setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
public PreviousAndNextControlResponseBodyResult setValid(String valid) {
this.valid = valid;
return this;
}
public String getValid() {
return this.valid;
}
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/PreviousAndNextControlShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class PreviousAndNextControlShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("DeviceInfo")
public String deviceInfoShrink;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("OpenControlPlayingListRequest")
public String openControlPlayingListRequestShrink;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("UserInfo")
public String userInfoShrink;
public static PreviousAndNextControlShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
PreviousAndNextControlShrinkRequest self = new PreviousAndNextControlShrinkRequest();
return TeaModel.build(map, self);
}
public PreviousAndNextControlShrinkRequest setDeviceInfoShrink(String deviceInfoShrink) {
this.deviceInfoShrink = deviceInfoShrink;
return this;
}
public String getDeviceInfoShrink() {
return this.deviceInfoShrink;
}
public PreviousAndNextControlShrinkRequest setOpenControlPlayingListRequestShrink(String openControlPlayingListRequestShrink) {
this.openControlPlayingListRequestShrink = openControlPlayingListRequestShrink;
return this;
}
public String getOpenControlPlayingListRequestShrink() {
return this.openControlPlayingListRequestShrink;
}
public PreviousAndNextControlShrinkRequest setUserInfoShrink(String userInfoShrink) {
this.userInfoShrink = userInfoShrink;
return this;
}
public String getUserInfoShrink() {
return this.userInfoShrink;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ProgressControlHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ProgressControlHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static ProgressControlHeaders build(java.util.Map<String, ?> map) throws Exception {
ProgressControlHeaders self = new ProgressControlHeaders();
return TeaModel.build(map, self);
}
public ProgressControlHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ProgressControlHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ProgressControlHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0
|
java-sources/com/aliyun/aligeniessp_1_0/2.5.2/com/aliyun/aligeniessp_1_0/models/ProgressControlRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligeniessp_1_0.models;
import com.aliyun.tea.*;
public class ProgressControlRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("DeviceInfo")
public ProgressControlRequestDeviceInfo deviceInfo;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("OpenProgressControlRequest")
public ProgressControlRequestOpenProgressControlRequest openProgressControlRequest;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("UserInfo")
public ProgressControlRequestUserInfo userInfo;
public static ProgressControlRequest build(java.util.Map<String, ?> map) throws Exception {
ProgressControlRequest self = new ProgressControlRequest();
return TeaModel.build(map, self);
}
public ProgressControlRequest setDeviceInfo(ProgressControlRequestDeviceInfo deviceInfo) {
this.deviceInfo = deviceInfo;
return this;
}
public ProgressControlRequestDeviceInfo getDeviceInfo() {
return this.deviceInfo;
}
public ProgressControlRequest setOpenProgressControlRequest(ProgressControlRequestOpenProgressControlRequest openProgressControlRequest) {
this.openProgressControlRequest = openProgressControlRequest;
return this;
}
public ProgressControlRequestOpenProgressControlRequest getOpenProgressControlRequest() {
return this.openProgressControlRequest;
}
public ProgressControlRequest setUserInfo(ProgressControlRequestUserInfo userInfo) {
this.userInfo = userInfo;
return this;
}
public ProgressControlRequestUserInfo getUserInfo() {
return this.userInfo;
}
public static class ProgressControlRequestDeviceInfo extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("EncodeKey")
public String encodeKey;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>PROJECT_ID</p>
*/
@NameInMap("EncodeType")
public String encodeType;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>rV/XSgPuxZjx/hN3iw8U+e8ouRjKOX95tn1a0kwb2+Ao6Q1CAxASJUZDWtlk1r43LWcVW6fvY1Rr4sEPFodpnA==</p>
*/
@NameInMap("Id")
public String id;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>OPEN_ID</p>
*/
@NameInMap("IdType")
public String idType;
/**
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("OrganizationId")
public String organizationId;
public static ProgressControlRequestDeviceInfo build(java.util.Map<String, ?> map) throws Exception {
ProgressControlRequestDeviceInfo self = new ProgressControlRequestDeviceInfo();
return TeaModel.build(map, self);
}
public ProgressControlRequestDeviceInfo setEncodeKey(String encodeKey) {
this.encodeKey = encodeKey;
return this;
}
public String getEncodeKey() {
return this.encodeKey;
}
public ProgressControlRequestDeviceInfo setEncodeType(String encodeType) {
this.encodeType = encodeType;
return this;
}
public String getEncodeType() {
return this.encodeType;
}
public ProgressControlRequestDeviceInfo setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public ProgressControlRequestDeviceInfo setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
public ProgressControlRequestDeviceInfo setOrganizationId(String organizationId) {
this.organizationId = organizationId;
return this;
}
public String getOrganizationId() {
return this.organizationId;
}
}
public static class ProgressControlRequestOpenProgressControlRequest extends TeaModel {
@NameInMap("ExtendInfo")
public java.util.Map<String, ?> extendInfo;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>12</p>
*/
@NameInMap("Progress")
public Integer progress;
public static ProgressControlRequestOpenProgressControlRequest build(java.util.Map<String, ?> map) throws Exception {
ProgressControlRequestOpenProgressControlRequest self = new ProgressControlRequestOpenProgressControlRequest();
return TeaModel.build(map, self);
}
public ProgressControlRequestOpenProgressControlRequest setExtendInfo(java.util.Map<String, ?> extendInfo) {
this.extendInfo = extendInfo;
return this;
}
public java.util.Map<String, ?> getExtendInfo() {
return this.extendInfo;
}
public ProgressControlRequestOpenProgressControlRequest setProgress(Integer progress) {
this.progress = progress;
return this;
}
public Integer getProgress() {
return this.progress;
}
}
public static class ProgressControlRequestUserInfo extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("EncodeKey")
public String encodeKey;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>PROJECT_ID</p>
*/
@NameInMap("EncodeType")
public String encodeType;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>rV/XSgPuxZjx/hN3iw8U+e8ouRjKOX95tn1a0kwb2+Ao6Q1CAxASJUZDWtlk1r43LWcVW6fvY1Rr4sEPFodpnA==</p>
*/
@NameInMap("Id")
public String id;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>OPEN_ID</p>
*/
@NameInMap("IdType")
public String idType;
/**
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("OrganizationId")
public String organizationId;
public static ProgressControlRequestUserInfo build(java.util.Map<String, ?> map) throws Exception {
ProgressControlRequestUserInfo self = new ProgressControlRequestUserInfo();
return TeaModel.build(map, self);
}
public ProgressControlRequestUserInfo setEncodeKey(String encodeKey) {
this.encodeKey = encodeKey;
return this;
}
public String getEncodeKey() {
return this.encodeKey;
}
public ProgressControlRequestUserInfo setEncodeType(String encodeType) {
this.encodeType = encodeType;
return this;
}
public String getEncodeType() {
return this.encodeType;
}
public ProgressControlRequestUserInfo setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public ProgressControlRequestUserInfo setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
public ProgressControlRequestUserInfo setOrganizationId(String organizationId) {
this.organizationId = organizationId;
return this;
}
public String getOrganizationId() {
return this.organizationId;
}
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.