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

com.aliyun.sdk.service.iot20180120.models.ListParserResponseBody Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.iot20180120.models;

import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;

/**
 * {@link ListParserResponseBody} extends {@link TeaModel}
 *
 * 

ListParserResponseBody

*/ public class ListParserResponseBody extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Data") private Data data; @NameInMap("ErrorMessage") private String errorMessage; @NameInMap("RequestId") private String requestId; @NameInMap("Success") private Boolean success; @NameInMap("Total") private Integer total; private ListParserResponseBody(Builder builder) { this.code = builder.code; this.data = builder.data; this.errorMessage = builder.errorMessage; this.requestId = builder.requestId; this.success = builder.success; this.total = builder.total; } public static Builder builder() { return new Builder(); } public static ListParserResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return data */ public Data getData() { return this.data; } /** * @return errorMessage */ public String getErrorMessage() { return this.errorMessage; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } /** * @return total */ public Integer getTotal() { return this.total; } public static final class Builder { private String code; private Data data; private String errorMessage; private String requestId; private Boolean success; private Integer total; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Data. */ public Builder data(Data data) { this.data = data; return this; } /** * ErrorMessage. */ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } /** * Total. */ public Builder total(Integer total) { this.total = total; return this; } public ListParserResponseBody build() { return new ListParserResponseBody(this); } } public static class ParserList extends TeaModel { @NameInMap("Description") private String description; @NameInMap("Name") private String name; @NameInMap("ParserId") private Long parserId; @NameInMap("Status") private String status; @NameInMap("UtcCreated") private String utcCreated; @NameInMap("UtcModified") private String utcModified; private ParserList(Builder builder) { this.description = builder.description; this.name = builder.name; this.parserId = builder.parserId; this.status = builder.status; this.utcCreated = builder.utcCreated; this.utcModified = builder.utcModified; } public static Builder builder() { return new Builder(); } public static ParserList create() { return builder().build(); } /** * @return description */ public String getDescription() { return this.description; } /** * @return name */ public String getName() { return this.name; } /** * @return parserId */ public Long getParserId() { return this.parserId; } /** * @return status */ public String getStatus() { return this.status; } /** * @return utcCreated */ public String getUtcCreated() { return this.utcCreated; } /** * @return utcModified */ public String getUtcModified() { return this.utcModified; } public static final class Builder { private String description; private String name; private Long parserId; private String status; private String utcCreated; private String utcModified; /** * Description. */ public Builder description(String description) { this.description = description; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * ParserId. */ public Builder parserId(Long parserId) { this.parserId = parserId; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } /** * UtcCreated. */ public Builder utcCreated(String utcCreated) { this.utcCreated = utcCreated; return this; } /** * UtcModified. */ public Builder utcModified(String utcModified) { this.utcModified = utcModified; return this; } public ParserList build() { return new ParserList(this); } } } public static class Data extends TeaModel { @NameInMap("ParserList") private java.util.List < ParserList> parserList; private Data(Builder builder) { this.parserList = builder.parserList; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return parserList */ public java.util.List < ParserList> getParserList() { return this.parserList; } public static final class Builder { private java.util.List < ParserList> parserList; /** * ParserList. */ public Builder parserList(java.util.List < ParserList> parserList) { this.parserList = parserList; return this; } public Data build() { return new Data(this); } } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy