com.netki.IdentityDocument Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of netki-partner-client Show documentation
Show all versions of netki-partner-client Show documentation
Library used to access Netki's Partner API
The newest version!
package com.netki;
import java.util.Date;
public class IdentityDocument {
private String identity;
private String type;
private String state;
private String gender;
private String dlRtaNumber;
private Date expiration;
public String getIdentity() {
return identity;
}
public void setIdentity(String identity) {
this.identity = identity;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getState() {
return state;
}
public void setState(String state) {
this.state = state;
}
public String getGender() {
return gender;
}
public void setGender(String gender) {
this.gender = gender;
}
public String getDlRtaNumber() {
return dlRtaNumber;
}
public void setDlRtaNumber(String dlRtaNumber) {
this.dlRtaNumber = dlRtaNumber;
}
public Date getExpiration() {
return expiration;
}
public void setExpiration(Date expiration) {
this.expiration = expiration;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy