com.aliyun.sdk.service.aliding20230426.models.QueryReportDetailResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-aliding20230426 Show documentation
Show all versions of alibabacloud-aliding20230426 Show documentation
Alibaba Cloud aliding (20230426) Async SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.aliding20230426.models;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link QueryReportDetailResponseBody} extends {@link TeaModel}
*
* QueryReportDetailResponseBody
*/
public class QueryReportDetailResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("content")
private java.util.List < Content> content;
@com.aliyun.core.annotation.NameInMap("createTime")
private Long createTime;
@com.aliyun.core.annotation.NameInMap("creatorId")
private String creatorId;
@com.aliyun.core.annotation.NameInMap("creatorName")
private String creatorName;
@com.aliyun.core.annotation.NameInMap("deptName")
private String deptName;
@com.aliyun.core.annotation.NameInMap("modifiedTime")
private Long modifiedTime;
@com.aliyun.core.annotation.NameInMap("remark")
private String remark;
@com.aliyun.core.annotation.NameInMap("reportId")
private String reportId;
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("templateName")
private String templateName;
@com.aliyun.core.annotation.NameInMap("vendorRequestId")
private String vendorRequestId;
@com.aliyun.core.annotation.NameInMap("vendorType")
private String vendorType;
private QueryReportDetailResponseBody(Builder builder) {
this.content = builder.content;
this.createTime = builder.createTime;
this.creatorId = builder.creatorId;
this.creatorName = builder.creatorName;
this.deptName = builder.deptName;
this.modifiedTime = builder.modifiedTime;
this.remark = builder.remark;
this.reportId = builder.reportId;
this.requestId = builder.requestId;
this.templateName = builder.templateName;
this.vendorRequestId = builder.vendorRequestId;
this.vendorType = builder.vendorType;
}
public static Builder builder() {
return new Builder();
}
public static QueryReportDetailResponseBody create() {
return builder().build();
}
/**
* @return content
*/
public java.util.List < Content> getContent() {
return this.content;
}
/**
* @return createTime
*/
public Long getCreateTime() {
return this.createTime;
}
/**
* @return creatorId
*/
public String getCreatorId() {
return this.creatorId;
}
/**
* @return creatorName
*/
public String getCreatorName() {
return this.creatorName;
}
/**
* @return deptName
*/
public String getDeptName() {
return this.deptName;
}
/**
* @return modifiedTime
*/
public Long getModifiedTime() {
return this.modifiedTime;
}
/**
* @return remark
*/
public String getRemark() {
return this.remark;
}
/**
* @return reportId
*/
public String getReportId() {
return this.reportId;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return templateName
*/
public String getTemplateName() {
return this.templateName;
}
/**
* @return vendorRequestId
*/
public String getVendorRequestId() {
return this.vendorRequestId;
}
/**
* @return vendorType
*/
public String getVendorType() {
return this.vendorType;
}
public static final class Builder {
private java.util.List < Content> content;
private Long createTime;
private String creatorId;
private String creatorName;
private String deptName;
private Long modifiedTime;
private String remark;
private String reportId;
private String requestId;
private String templateName;
private String vendorRequestId;
private String vendorType;
/**
* content.
*/
public Builder content(java.util.List < Content> content) {
this.content = content;
return this;
}
/**
* createTime.
*/
public Builder createTime(Long createTime) {
this.createTime = createTime;
return this;
}
/**
* creatorId.
*/
public Builder creatorId(String creatorId) {
this.creatorId = creatorId;
return this;
}
/**
* creatorName.
*/
public Builder creatorName(String creatorName) {
this.creatorName = creatorName;
return this;
}
/**
* deptName.
*/
public Builder deptName(String deptName) {
this.deptName = deptName;
return this;
}
/**
* modifiedTime.
*/
public Builder modifiedTime(Long modifiedTime) {
this.modifiedTime = modifiedTime;
return this;
}
/**
* remark.
*/
public Builder remark(String remark) {
this.remark = remark;
return this;
}
/**
* reportId.
*/
public Builder reportId(String reportId) {
this.reportId = reportId;
return this;
}
/**
* requestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* templateName.
*/
public Builder templateName(String templateName) {
this.templateName = templateName;
return this;
}
/**
* vendorRequestId.
*/
public Builder vendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
/**
* vendorType.
*/
public Builder vendorType(String vendorType) {
this.vendorType = vendorType;
return this;
}
public QueryReportDetailResponseBody build() {
return new QueryReportDetailResponseBody(this);
}
}
public static class Content extends TeaModel {
@com.aliyun.core.annotation.NameInMap("Images")
private java.util.List < String > images;
@com.aliyun.core.annotation.NameInMap("Key")
private String key;
@com.aliyun.core.annotation.NameInMap("Sort")
private String sort;
@com.aliyun.core.annotation.NameInMap("Type")
private String type;
@com.aliyun.core.annotation.NameInMap("Value")
private String value;
private Content(Builder builder) {
this.images = builder.images;
this.key = builder.key;
this.sort = builder.sort;
this.type = builder.type;
this.value = builder.value;
}
public static Builder builder() {
return new Builder();
}
public static Content create() {
return builder().build();
}
/**
* @return images
*/
public java.util.List < String > getImages() {
return this.images;
}
/**
* @return key
*/
public String getKey() {
return this.key;
}
/**
* @return sort
*/
public String getSort() {
return this.sort;
}
/**
* @return type
*/
public String getType() {
return this.type;
}
/**
* @return value
*/
public String getValue() {
return this.value;
}
public static final class Builder {
private java.util.List < String > images;
private String key;
private String sort;
private String type;
private String value;
/**
* Images.
*/
public Builder images(java.util.List < String > images) {
this.images = images;
return this;
}
/**
* Key.
*/
public Builder key(String key) {
this.key = key;
return this;
}
/**
* Sort.
*/
public Builder sort(String sort) {
this.sort = sort;
return this;
}
/**
* Type.
*/
public Builder type(String type) {
this.type = type;
return this;
}
/**
* Value.
*/
public Builder value(String value) {
this.value = value;
return this;
}
public Content build() {
return new Content(this);
}
}
}
}