package com.example.demo.dto;

import java.util.UUID;

public class AccessRequestResponseDTO {

	private UUID request_id;
	private String name;
	private String email;
	private String postcurrency;
	private String status;
	private String role_type;
	private String website;

	public UUID getRequest_id() {
		return request_id;
	}

	public void setRequest_id(UUID request_id) {
		this.request_id = request_id;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public String getEmail() {
		return email;
	}

	public void setEmail(String email) {
		this.email = email;
	}

	public String getPostcurrency() {
		return postcurrency;
	}

	public void setPostcurrency(String postcurrency) {
		this.postcurrency = postcurrency;
	}

	public String getStatus() {
		return status;
	}

	public void setStatus(String status) {
		this.status = status;
	}

	public String getRole_type() {
		return role_type;
	}

	public void setRole_type(String role_type) {
		this.role_type = role_type;
	}

	public String getWebsite() {
		return website;
	}

	public void setWebsite(String website) {
		this.website = website;
	}

}
