com.aliyun.sdk.service.dysmsapi20170525.models.QuerySmsSignRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-dysmsapi20170525 Show documentation
Show all versions of alibabacloud-dysmsapi20170525 Show documentation
Alibaba Cloud Dysmsapi (20170525) Async SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.dysmsapi20170525.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link QuerySmsSignRequest} extends {@link RequestModel}
*
* QuerySmsSignRequest
*/
public class QuerySmsSignRequest extends Request {
@Query
@NameInMap("OwnerId")
private Long ownerId;
@Query
@NameInMap("ResourceOwnerAccount")
private String resourceOwnerAccount;
@Query
@NameInMap("ResourceOwnerId")
private Long resourceOwnerId;
@Query
@NameInMap("SignName")
@Validation(required = true)
private String signName;
private QuerySmsSignRequest(Builder builder) {
super(builder);
this.ownerId = builder.ownerId;
this.resourceOwnerAccount = builder.resourceOwnerAccount;
this.resourceOwnerId = builder.resourceOwnerId;
this.signName = builder.signName;
}
public static Builder builder() {
return new Builder();
}
public static QuerySmsSignRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @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 signName
*/
public String getSignName() {
return this.signName;
}
public static final class Builder extends Request.Builder {
private Long ownerId;
private String resourceOwnerAccount;
private Long resourceOwnerId;
private String signName;
private Builder() {
super();
}
private Builder(QuerySmsSignRequest response) {
super(response);
this.ownerId = response.ownerId;
this.resourceOwnerAccount = response.resourceOwnerAccount;
this.resourceOwnerId = response.resourceOwnerId;
this.signName = response.signName;
}
/**
* 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;
}
/**
* SignName.
*/
public Builder signName(String signName) {
this.putQueryParameter("SignName", signName);
this.signName = signName;
return this;
}
@Override
public QuerySmsSignRequest build() {
return new QuerySmsSignRequest(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy