com.aliyuncs.sas_api.model.v20170705.GetPhoneProfileRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-java-sdk-sas-api Show documentation
Show all versions of aliyun-java-sdk-sas-api Show documentation
Aliyun Open API SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package com.aliyuncs.sas_api.model.v20170705;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class GetPhoneProfileRequest extends RpcAcsRequest {
public GetPhoneProfileRequest() {
super("Sas-api", "2017-07-05", "GetPhoneProfile");
}
private String phone;
private Integer sensType;
private String dataVersion;
private Integer businessType;
public String getPhone() {
return this.phone;
}
public void setPhone(String phone) {
this.phone = phone;
if(phone != null){
putQueryParameter("Phone", phone);
}
}
public Integer getSensType() {
return this.sensType;
}
public void setSensType(Integer sensType) {
this.sensType = sensType;
if(sensType != null){
putQueryParameter("SensType", sensType.toString());
}
}
public String getDataVersion() {
return this.dataVersion;
}
public void setDataVersion(String dataVersion) {
this.dataVersion = dataVersion;
if(dataVersion != null){
putQueryParameter("DataVersion", dataVersion);
}
}
public Integer getBusinessType() {
return this.businessType;
}
public void setBusinessType(Integer businessType) {
this.businessType = businessType;
if(businessType != null){
putQueryParameter("BusinessType", businessType.toString());
}
}
@Override
public Class getResponseClass() {
return GetPhoneProfileResponse.class;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy