package com.dacrt.SBIABackend.dto;

public class oktaEmailDto {
	private String value; // La dirección de email
    private String type;  // e.g., "work"
    private Boolean primary; // e.g., true
    
	public oktaEmailDto(String value, String type, Boolean primary) {
		super();
		this.value = value;
		this.type = type;
		this.primary = primary;
	}

	public oktaEmailDto() {
		super();
		// TODO Auto-generated constructor stub
	}

	public String getValue() {
		return value;
	}

	public void setValue(String value) {
		this.value = value;
	}

	public String getType() {
		return type;
	}

	public void setType(String type) {
		this.type = type;
	}

	public Boolean getPrimary() {
		return primary;
	}

	public void setPrimary(Boolean primary) {
		this.primary = primary;
	}
    
    
}
