com.tencentcloudapi.faceid.v20180301.models.JapanIDCard Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Tencent Cloud API SDK for Java
/*
* 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.faceid.v20180301.models;
import com.tencentcloudapi.common.AbstractModel;
import com.tencentcloudapi.common.SSEResponseModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class JapanIDCard extends AbstractModel {
/**
* Full name
Note: This field may return null, indicating that no valid values can be obtained.
*/
@SerializedName("FullName")
@Expose
private String FullName;
/**
* License number
Note: This field may return null, indicating that no valid values can be obtained.
*/
@SerializedName("LicenseNumber")
@Expose
private String LicenseNumber;
/**
* Age
Note: This field may return null, indicating that no valid values can be obtained.
*/
@SerializedName("Age")
@Expose
private String Age;
/**
* Birthday
Note: This field may return null, indicating that no valid values can be obtained.
*/
@SerializedName("Birthday")
@Expose
private String Birthday;
/**
* Expire date
Note: This field may return null, indicating that no valid values can be obtained.
*/
@SerializedName("ExpirationDate")
@Expose
private String ExpirationDate;
/**
* Address
Note: This field may return null, indicating that no valid values can be obtained.
*/
@SerializedName("FormattedAddress")
@Expose
private String FormattedAddress;
/**
* Get Full name
Note: This field may return null, indicating that no valid values can be obtained.
* @return FullName Full name
Note: This field may return null, indicating that no valid values can be obtained.
*/
public String getFullName() {
return this.FullName;
}
/**
* Set Full name
Note: This field may return null, indicating that no valid values can be obtained.
* @param FullName Full name
Note: This field may return null, indicating that no valid values can be obtained.
*/
public void setFullName(String FullName) {
this.FullName = FullName;
}
/**
* Get License number
Note: This field may return null, indicating that no valid values can be obtained.
* @return LicenseNumber License number
Note: This field may return null, indicating that no valid values can be obtained.
*/
public String getLicenseNumber() {
return this.LicenseNumber;
}
/**
* Set License number
Note: This field may return null, indicating that no valid values can be obtained.
* @param LicenseNumber License number
Note: This field may return null, indicating that no valid values can be obtained.
*/
public void setLicenseNumber(String LicenseNumber) {
this.LicenseNumber = LicenseNumber;
}
/**
* Get Age
Note: This field may return null, indicating that no valid values can be obtained.
* @return Age Age
Note: This field may return null, indicating that no valid values can be obtained.
*/
public String getAge() {
return this.Age;
}
/**
* Set Age
Note: This field may return null, indicating that no valid values can be obtained.
* @param Age Age
Note: This field may return null, indicating that no valid values can be obtained.
*/
public void setAge(String Age) {
this.Age = Age;
}
/**
* Get Birthday
Note: This field may return null, indicating that no valid values can be obtained.
* @return Birthday Birthday
Note: This field may return null, indicating that no valid values can be obtained.
*/
public String getBirthday() {
return this.Birthday;
}
/**
* Set Birthday
Note: This field may return null, indicating that no valid values can be obtained.
* @param Birthday Birthday
Note: This field may return null, indicating that no valid values can be obtained.
*/
public void setBirthday(String Birthday) {
this.Birthday = Birthday;
}
/**
* Get Expire date
Note: This field may return null, indicating that no valid values can be obtained.
* @return ExpirationDate Expire date
Note: This field may return null, indicating that no valid values can be obtained.
*/
public String getExpirationDate() {
return this.ExpirationDate;
}
/**
* Set Expire date
Note: This field may return null, indicating that no valid values can be obtained.
* @param ExpirationDate Expire date
Note: This field may return null, indicating that no valid values can be obtained.
*/
public void setExpirationDate(String ExpirationDate) {
this.ExpirationDate = ExpirationDate;
}
/**
* Get Address
Note: This field may return null, indicating that no valid values can be obtained.
* @return FormattedAddress Address
Note: This field may return null, indicating that no valid values can be obtained.
*/
public String getFormattedAddress() {
return this.FormattedAddress;
}
/**
* Set Address
Note: This field may return null, indicating that no valid values can be obtained.
* @param FormattedAddress Address
Note: This field may return null, indicating that no valid values can be obtained.
*/
public void setFormattedAddress(String FormattedAddress) {
this.FormattedAddress = FormattedAddress;
}
public JapanIDCard() {
}
/**
* NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
* and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
*/
public JapanIDCard(JapanIDCard source) {
if (source.FullName != null) {
this.FullName = new String(source.FullName);
}
if (source.LicenseNumber != null) {
this.LicenseNumber = new String(source.LicenseNumber);
}
if (source.Age != null) {
this.Age = new String(source.Age);
}
if (source.Birthday != null) {
this.Birthday = new String(source.Birthday);
}
if (source.ExpirationDate != null) {
this.ExpirationDate = new String(source.ExpirationDate);
}
if (source.FormattedAddress != null) {
this.FormattedAddress = new String(source.FormattedAddress);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "FullName", this.FullName);
this.setParamSimple(map, prefix + "LicenseNumber", this.LicenseNumber);
this.setParamSimple(map, prefix + "Age", this.Age);
this.setParamSimple(map, prefix + "Birthday", this.Birthday);
this.setParamSimple(map, prefix + "ExpirationDate", this.ExpirationDate);
this.setParamSimple(map, prefix + "FormattedAddress", this.FormattedAddress);
}
}