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

com.aliyun.sdk.service.dytnsapi20200217.models.UAIDConversionRequest Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.dytnsapi20200217.models;

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

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

UAIDConversionRequest

*/ public class UAIDConversionRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("AuthCode") @com.aliyun.core.annotation.Validation(required = true) private String authCode; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Carrier") @com.aliyun.core.annotation.Validation(required = true) private String carrier; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("OutId") private String outId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("OwnerId") private Long ownerId; @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("UaidList") private String uaidList; private UAIDConversionRequest(Builder builder) { super(builder); this.authCode = builder.authCode; this.carrier = builder.carrier; this.outId = builder.outId; this.ownerId = builder.ownerId; this.resourceOwnerAccount = builder.resourceOwnerAccount; this.resourceOwnerId = builder.resourceOwnerId; this.uaidList = builder.uaidList; } public static Builder builder() { return new Builder(); } public static UAIDConversionRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return authCode */ public String getAuthCode() { return this.authCode; } /** * @return carrier */ public String getCarrier() { return this.carrier; } /** * @return outId */ public String getOutId() { return this.outId; } /** * @return ownerId */ public Long getOwnerId() { return this.ownerId; } /** * @return resourceOwnerAccount */ public String getResourceOwnerAccount() { return this.resourceOwnerAccount; } /** * @return resourceOwnerId */ public Long getResourceOwnerId() { return this.resourceOwnerId; } /** * @return uaidList */ public String getUaidList() { return this.uaidList; } public static final class Builder extends Request.Builder { private String authCode; private String carrier; private String outId; private Long ownerId; private String resourceOwnerAccount; private Long resourceOwnerId; private String uaidList; private Builder() { super(); } private Builder(UAIDConversionRequest request) { super(request); this.authCode = request.authCode; this.carrier = request.carrier; this.outId = request.outId; this.ownerId = request.ownerId; this.resourceOwnerAccount = request.resourceOwnerAccount; this.resourceOwnerId = request.resourceOwnerId; this.uaidList = request.uaidList; } /** *

This parameter is required.

* * example: *

示例值

*/ public Builder authCode(String authCode) { this.putQueryParameter("AuthCode", authCode); this.authCode = authCode; return this; } /** *

This parameter is required.

* * example: *

示例值示例值

*/ public Builder carrier(String carrier) { this.putQueryParameter("Carrier", carrier); this.carrier = carrier; return this; } /** * OutId. */ public Builder outId(String outId) { this.putQueryParameter("OutId", outId); this.outId = outId; return this; } /** * OwnerId. */ public Builder ownerId(Long ownerId) { this.putQueryParameter("OwnerId", ownerId); this.ownerId = ownerId; 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; } /** * UaidList. */ public Builder uaidList(String uaidList) { this.putQueryParameter("UaidList", uaidList); this.uaidList = uaidList; return this; } @Override public UAIDConversionRequest build() { return new UAIDConversionRequest(this); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy