package com.pollex.pam.service.dto;
|
|
import com.pollex.pam.enums.OtpLoginTypeEnum;
|
|
public class CustomerRegisterDTO {
|
|
private String name;
|
private String phone;
|
private String email;
|
private OtpLoginTypeEnum contactType;
|
private String indexKey;
|
private String otpCode;
|
|
public String getName() {
|
return name;
|
}
|
public void setName(String name) {
|
this.name = name;
|
}
|
public String getPhone() {
|
return phone;
|
}
|
public void setPhone(String phone) {
|
this.phone = phone;
|
}
|
public String getEmail() {
|
return email;
|
}
|
public void setEmail(String email) {
|
this.email = email;
|
}
|
public OtpLoginTypeEnum getContactType() {
|
return contactType;
|
}
|
public void setContactType(OtpLoginTypeEnum contactType) {
|
this.contactType = contactType;
|
}
|
public String getIndexKey() {
|
return indexKey;
|
}
|
public void setIndexKey(String indexKey) {
|
this.indexKey = indexKey;
|
}
|
public String getOtpCode() {
|
return otpCode;
|
}
|
public void setOtpCode(String otpCode) {
|
this.otpCode = otpCode;
|
}
|
|
|
|
}
|