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

com.aliyun.sdk.service.dm20170622.models.GetTrackListRequest Maven / Gradle / Ivy

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

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

/**
 * {@link GetTrackListRequest} extends {@link RequestModel}
 *
 * 

GetTrackListRequest

*/ public class GetTrackListRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("AccountName") private String accountName; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("EndTime") @com.aliyun.core.annotation.Validation(required = true) private String endTime; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Offset") private String offset; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("OffsetCreateTime") private String offsetCreateTime; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("OffsetCreateTimeDesc") private String offsetCreateTimeDesc; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("OwnerId") private Long ownerId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("PageNumber") private String pageNumber; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("PageSize") private String pageSize; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ResourceOwnerAccount") private String resourceOwnerAccount; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ResourceOwnerId") private Long resourceOwnerId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("StartTime") @com.aliyun.core.annotation.Validation(required = true) private String startTime; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("TagName") private String tagName; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Total") private String total; private GetTrackListRequest(Builder builder) { super(builder); this.accountName = builder.accountName; this.endTime = builder.endTime; this.offset = builder.offset; this.offsetCreateTime = builder.offsetCreateTime; this.offsetCreateTimeDesc = builder.offsetCreateTimeDesc; this.ownerId = builder.ownerId; this.pageNumber = builder.pageNumber; this.pageSize = builder.pageSize; this.resourceOwnerAccount = builder.resourceOwnerAccount; this.resourceOwnerId = builder.resourceOwnerId; this.startTime = builder.startTime; this.tagName = builder.tagName; this.total = builder.total; } public static Builder builder() { return new Builder(); } public static GetTrackListRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return accountName */ public String getAccountName() { return this.accountName; } /** * @return endTime */ public String getEndTime() { return this.endTime; } /** * @return offset */ public String getOffset() { return this.offset; } /** * @return offsetCreateTime */ public String getOffsetCreateTime() { return this.offsetCreateTime; } /** * @return offsetCreateTimeDesc */ public String getOffsetCreateTimeDesc() { return this.offsetCreateTimeDesc; } /** * @return ownerId */ public Long getOwnerId() { return this.ownerId; } /** * @return pageNumber */ public String getPageNumber() { return this.pageNumber; } /** * @return pageSize */ public String getPageSize() { return this.pageSize; } /** * @return resourceOwnerAccount */ public String getResourceOwnerAccount() { return this.resourceOwnerAccount; } /** * @return resourceOwnerId */ public Long getResourceOwnerId() { return this.resourceOwnerId; } /** * @return startTime */ public String getStartTime() { return this.startTime; } /** * @return tagName */ public String getTagName() { return this.tagName; } /** * @return total */ public String getTotal() { return this.total; } public static final class Builder extends Request.Builder { private String accountName; private String endTime; private String offset; private String offsetCreateTime; private String offsetCreateTimeDesc; private Long ownerId; private String pageNumber; private String pageSize; private String resourceOwnerAccount; private Long resourceOwnerId; private String startTime; private String tagName; private String total; private Builder() { super(); } private Builder(GetTrackListRequest request) { super(request); this.accountName = request.accountName; this.endTime = request.endTime; this.offset = request.offset; this.offsetCreateTime = request.offsetCreateTime; this.offsetCreateTimeDesc = request.offsetCreateTimeDesc; this.ownerId = request.ownerId; this.pageNumber = request.pageNumber; this.pageSize = request.pageSize; this.resourceOwnerAccount = request.resourceOwnerAccount; this.resourceOwnerId = request.resourceOwnerId; this.startTime = request.startTime; this.tagName = request.tagName; this.total = request.total; } /** * AccountName. */ public Builder accountName(String accountName) { this.putQueryParameter("AccountName", accountName); this.accountName = accountName; return this; } /** * EndTime. */ public Builder endTime(String endTime) { this.putQueryParameter("EndTime", endTime); this.endTime = endTime; return this; } /** * Offset. */ public Builder offset(String offset) { this.putQueryParameter("Offset", offset); this.offset = offset; return this; } /** * OffsetCreateTime. */ public Builder offsetCreateTime(String offsetCreateTime) { this.putQueryParameter("OffsetCreateTime", offsetCreateTime); this.offsetCreateTime = offsetCreateTime; return this; } /** * OffsetCreateTimeDesc. */ public Builder offsetCreateTimeDesc(String offsetCreateTimeDesc) { this.putQueryParameter("OffsetCreateTimeDesc", offsetCreateTimeDesc); this.offsetCreateTimeDesc = offsetCreateTimeDesc; return this; } /** * OwnerId. */ public Builder ownerId(Long ownerId) { this.putQueryParameter("OwnerId", ownerId); this.ownerId = ownerId; return this; } /** * PageNumber. */ public Builder pageNumber(String pageNumber) { this.putQueryParameter("PageNumber", pageNumber); this.pageNumber = pageNumber; return this; } /** * PageSize. */ public Builder pageSize(String pageSize) { this.putQueryParameter("PageSize", pageSize); this.pageSize = pageSize; return this; } /** * ResourceOwnerAccount. */ public Builder resourceOwnerAccount(String resourceOwnerAccount) { this.putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount); this.resourceOwnerAccount = resourceOwnerAccount; return this; } /** * ResourceOwnerId. */ public Builder resourceOwnerId(Long resourceOwnerId) { this.putQueryParameter("ResourceOwnerId", resourceOwnerId); this.resourceOwnerId = resourceOwnerId; return this; } /** * StartTime. */ public Builder startTime(String startTime) { this.putQueryParameter("StartTime", startTime); this.startTime = startTime; return this; } /** * TagName. */ public Builder tagName(String tagName) { this.putQueryParameter("TagName", tagName); this.tagName = tagName; return this; } /** * Total. */ public Builder total(String total) { this.putQueryParameter("Total", total); this.total = total; return this; } @Override public GetTrackListRequest build() { return new GetTrackListRequest(this); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy