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

com.aliyun.sdk.service.aliding20230426.models.GetAllSheetsResponseBody Maven / Gradle / Ivy

There is a newer version: 1.0.26
Show newest version
// 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 GetAllSheetsResponseBody} extends {@link TeaModel}
 *
 * 

GetAllSheetsResponseBody

*/ public class GetAllSheetsResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("requestId") private String requestId; @com.aliyun.core.annotation.NameInMap("value") private java.util.List < Value> value; private GetAllSheetsResponseBody(Builder builder) { this.requestId = builder.requestId; this.value = builder.value; } public static Builder builder() { return new Builder(); } public static GetAllSheetsResponseBody create() { return builder().build(); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return value */ public java.util.List < Value> getValue() { return this.value; } public static final class Builder { private String requestId; private java.util.List < Value> value; /** * requestId */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * value. */ public Builder value(java.util.List < Value> value) { this.value = value; return this; } public GetAllSheetsResponseBody build() { return new GetAllSheetsResponseBody(this); } } public static class Value extends TeaModel { @com.aliyun.core.annotation.NameInMap("Id") private String id; @com.aliyun.core.annotation.NameInMap("Name") private String name; private Value(Builder builder) { this.id = builder.id; this.name = builder.name; } public static Builder builder() { return new Builder(); } public static Value create() { return builder().build(); } /** * @return id */ public String getId() { return this.id; } /** * @return name */ public String getName() { return this.name; } public static final class Builder { private String id; private String name; /** * Id. */ public Builder id(String id) { this.id = id; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } public Value build() { return new Value(this); } } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy