com.antgroup.antchain.openapi.baasdt.models.ListIpCodeserviceproviderRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-baasdt Show documentation
Show all versions of openapi-baasdt Show documentation
Ant Chain BAASDT SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.baasdt.models;
import com.aliyun.tea.*;
public class ListIpCodeserviceproviderRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
@NameInMap("product_instance_id")
public String productInstanceId;
// 基础参数
@NameInMap("base_request")
@Validation(required = true)
public BaseRequestInfo baseRequest;
// 用户的手机号
@NameInMap("phone_number")
@Validation(required = true)
public String phoneNumber;
public static ListIpCodeserviceproviderRequest build(java.util.Map map) throws Exception {
ListIpCodeserviceproviderRequest self = new ListIpCodeserviceproviderRequest();
return TeaModel.build(map, self);
}
public ListIpCodeserviceproviderRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public ListIpCodeserviceproviderRequest setProductInstanceId(String productInstanceId) {
this.productInstanceId = productInstanceId;
return this;
}
public String getProductInstanceId() {
return this.productInstanceId;
}
public ListIpCodeserviceproviderRequest setBaseRequest(BaseRequestInfo baseRequest) {
this.baseRequest = baseRequest;
return this;
}
public BaseRequestInfo getBaseRequest() {
return this.baseRequest;
}
public ListIpCodeserviceproviderRequest setPhoneNumber(String phoneNumber) {
this.phoneNumber = phoneNumber;
return this;
}
public String getPhoneNumber() {
return this.phoneNumber;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy