com.sendsafely.dto.response.RecipientResponse Maven / Gradle / Ivy
package com.sendsafely.dto.response;
import java.util.List;
import com.sendsafely.Phonenumber;
public class RecipientResponse extends BaseResponse {
private String recipientId;
private String email;
private Boolean needsApproval;
private List phonenumbers;
private List approvers;
private List confirmations;
private String autoEnabledNumber;
private String roleName;
public String getRecipientId() {
return recipientId;
}
public void setRecipientId(String recipientId) {
this.recipientId = recipientId;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public Boolean getNeedsApproval() {
return needsApproval;
}
public void setNeedsApproval(Boolean needsApproval) {
this.needsApproval = needsApproval;
}
public List getPhonenumbers() {
return phonenumbers;
}
public void setPhonenumbers(List phonenumbers) {
this.phonenumbers = phonenumbers;
}
public String getAutoEnabledNumber() {
return autoEnabledNumber;
}
public void setAutoEnabledNumber(String autoEnabledNumber) {
this.autoEnabledNumber = autoEnabledNumber;
}
public List getConfirmations() {
return confirmations;
}
public void setConfirmations(List confirmations) {
this.confirmations = confirmations;
}
public String getRoleName() {
return roleName;
}
public void setRoleName(String roleName) {
this.roleName = roleName;
}
public List getApprovers() {
return approvers;
}
public void setApprovers(List approvers) {
this.approvers = approvers;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy