
com.tencentcloudapi.aa.v20200224.models.OtherAccountInfo Maven / Gradle / Ivy
/*
* Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed 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.tencentcloudapi.aa.v20200224.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class OtherAccountInfo extends AbstractModel{
/**
* 其它账号信息:
AccountType是4时,填入真实的手机号(如13123456789)。
AccountType是8时,支持 imei、idfa、imeiMD5、idfaMD5 入参。
AccountType是0时,填入账号信息。
AccountType是10004时,填入手机号的MD5值。
注:imeiMd5 加密方式为:imei 明文小写后,进行 MD5 加密,加密后取小写值。IdfaMd5 加密方式为:idfa 明文大写后,进行 MD5 加密,加密后取小写值。
*/
@SerializedName("AccountId")
@Expose
private String AccountId;
/**
* 手机号,若 AccountType 是4(手机号)、或10004(手机号 MD5),则无需重复填写,否则填入对应的手机号(如13123456789)。
*/
@SerializedName("MobilePhone")
@Expose
private String MobilePhone;
/**
* 用户设备号。若 AccountType 是8(设备号),则无需重复填写,否则填入对应的设备号。
*/
@SerializedName("DeviceId")
@Expose
private String DeviceId;
/**
* Get 其它账号信息:
AccountType是4时,填入真实的手机号(如13123456789)。
AccountType是8时,支持 imei、idfa、imeiMD5、idfaMD5 入参。
AccountType是0时,填入账号信息。
AccountType是10004时,填入手机号的MD5值。
注:imeiMd5 加密方式为:imei 明文小写后,进行 MD5 加密,加密后取小写值。IdfaMd5 加密方式为:idfa 明文大写后,进行 MD5 加密,加密后取小写值。
* @return AccountId 其它账号信息:
AccountType是4时,填入真实的手机号(如13123456789)。
AccountType是8时,支持 imei、idfa、imeiMD5、idfaMD5 入参。
AccountType是0时,填入账号信息。
AccountType是10004时,填入手机号的MD5值。
注:imeiMd5 加密方式为:imei 明文小写后,进行 MD5 加密,加密后取小写值。IdfaMd5 加密方式为:idfa 明文大写后,进行 MD5 加密,加密后取小写值。
*/
public String getAccountId() {
return this.AccountId;
}
/**
* Set 其它账号信息:
AccountType是4时,填入真实的手机号(如13123456789)。
AccountType是8时,支持 imei、idfa、imeiMD5、idfaMD5 入参。
AccountType是0时,填入账号信息。
AccountType是10004时,填入手机号的MD5值。
注:imeiMd5 加密方式为:imei 明文小写后,进行 MD5 加密,加密后取小写值。IdfaMd5 加密方式为:idfa 明文大写后,进行 MD5 加密,加密后取小写值。
* @param AccountId 其它账号信息:
AccountType是4时,填入真实的手机号(如13123456789)。
AccountType是8时,支持 imei、idfa、imeiMD5、idfaMD5 入参。
AccountType是0时,填入账号信息。
AccountType是10004时,填入手机号的MD5值。
注:imeiMd5 加密方式为:imei 明文小写后,进行 MD5 加密,加密后取小写值。IdfaMd5 加密方式为:idfa 明文大写后,进行 MD5 加密,加密后取小写值。
*/
public void setAccountId(String AccountId) {
this.AccountId = AccountId;
}
/**
* Get 手机号,若 AccountType 是4(手机号)、或10004(手机号 MD5),则无需重复填写,否则填入对应的手机号(如13123456789)。
* @return MobilePhone 手机号,若 AccountType 是4(手机号)、或10004(手机号 MD5),则无需重复填写,否则填入对应的手机号(如13123456789)。
*/
public String getMobilePhone() {
return this.MobilePhone;
}
/**
* Set 手机号,若 AccountType 是4(手机号)、或10004(手机号 MD5),则无需重复填写,否则填入对应的手机号(如13123456789)。
* @param MobilePhone 手机号,若 AccountType 是4(手机号)、或10004(手机号 MD5),则无需重复填写,否则填入对应的手机号(如13123456789)。
*/
public void setMobilePhone(String MobilePhone) {
this.MobilePhone = MobilePhone;
}
/**
* Get 用户设备号。若 AccountType 是8(设备号),则无需重复填写,否则填入对应的设备号。
* @return DeviceId 用户设备号。若 AccountType 是8(设备号),则无需重复填写,否则填入对应的设备号。
*/
public String getDeviceId() {
return this.DeviceId;
}
/**
* Set 用户设备号。若 AccountType 是8(设备号),则无需重复填写,否则填入对应的设备号。
* @param DeviceId 用户设备号。若 AccountType 是8(设备号),则无需重复填写,否则填入对应的设备号。
*/
public void setDeviceId(String DeviceId) {
this.DeviceId = DeviceId;
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "AccountId", this.AccountId);
this.setParamSimple(map, prefix + "MobilePhone", this.MobilePhone);
this.setParamSimple(map, prefix + "DeviceId", this.DeviceId);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy