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

com.aliyun.sdk.service.aliding20230426.models.QueryLiveInfoRequest 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 QueryLiveInfoRequest} extends {@link RequestModel}
 *
 * 

QueryLiveInfoRequest

*/ public class QueryLiveInfoRequest extends Request { @com.aliyun.core.annotation.Header @com.aliyun.core.annotation.NameInMap("AccountContext") private AccountContext accountContext; @com.aliyun.core.annotation.Body @com.aliyun.core.annotation.NameInMap("LiveId") @com.aliyun.core.annotation.Validation(required = true) private String liveId; @com.aliyun.core.annotation.Body @com.aliyun.core.annotation.NameInMap("TenantContext") private TenantContext tenantContext; private QueryLiveInfoRequest(Builder builder) { super(builder); this.accountContext = builder.accountContext; this.liveId = builder.liveId; this.tenantContext = builder.tenantContext; } public static Builder builder() { return new Builder(); } public static QueryLiveInfoRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return accountContext */ public AccountContext getAccountContext() { return this.accountContext; } /** * @return liveId */ public String getLiveId() { return this.liveId; } /** * @return tenantContext */ public TenantContext getTenantContext() { return this.tenantContext; } public static final class Builder extends Request.Builder { private AccountContext accountContext; private String liveId; private TenantContext tenantContext; private Builder() { super(); } private Builder(QueryLiveInfoRequest request) { super(request); this.accountContext = request.accountContext; this.liveId = request.liveId; this.tenantContext = request.tenantContext; } /** * AccountContext. */ public Builder accountContext(AccountContext accountContext) { String accountContextShrink = shrink(accountContext, "AccountContext", "json"); this.putHeaderParameter("AccountContext", accountContextShrink); this.accountContext = accountContext; return this; } /** * LiveId. */ public Builder liveId(String liveId) { this.putBodyParameter("LiveId", liveId); this.liveId = liveId; return this; } /** * TenantContext. */ public Builder tenantContext(TenantContext tenantContext) { String tenantContextShrink = shrink(tenantContext, "TenantContext", "json"); this.putBodyParameter("TenantContext", tenantContextShrink); this.tenantContext = tenantContext; return this; } @Override public QueryLiveInfoRequest build() { return new QueryLiveInfoRequest(this); } } public static class AccountContext extends TeaModel { @com.aliyun.core.annotation.NameInMap("accountId") @com.aliyun.core.annotation.Validation(required = true) private String accountId; private AccountContext(Builder builder) { this.accountId = builder.accountId; } public static Builder builder() { return new Builder(); } public static AccountContext create() { return builder().build(); } /** * @return accountId */ public String getAccountId() { return this.accountId; } public static final class Builder { private String accountId; /** * accountId. */ public Builder accountId(String accountId) { this.accountId = accountId; return this; } public AccountContext build() { return new AccountContext(this); } } } public static class TenantContext extends TeaModel { @com.aliyun.core.annotation.NameInMap("tenantId") private String tenantId; private TenantContext(Builder builder) { this.tenantId = builder.tenantId; } public static Builder builder() { return new Builder(); } public static TenantContext create() { return builder().build(); } /** * @return tenantId */ public String getTenantId() { return this.tenantId; } public static final class Builder { private String tenantId; /** * tenantId. */ public Builder tenantId(String tenantId) { this.tenantId = tenantId; return this; } public TenantContext build() { return new TenantContext(this); } } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy