package com.dacrt.SBIABackend.dto;

public class OktaMetaRespDto {
	
	    private String resourceType; 
	    private String created; 
	    private String lastModified; 
	    private String location; 
	    
		public OktaMetaRespDto(String resourceType, String created, String lastModified, String location) {
			super();
			this.resourceType = resourceType;
			this.created = created;
			this.lastModified = lastModified;
			this.location = location;
		}

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

		public String getResourceType() {
			return resourceType;
		}

		public void setResourceType(String resourceType) {
			this.resourceType = resourceType;
		}

		public String getCreated() {
			return created;
		}

		public void setCreated(String created) {
			this.created = created;
		}

		public String getLastModified() {
			return lastModified;
		}

		public void setLastModified(String lastModified) {
			this.lastModified = lastModified;
		}

		public String getLocation() {
			return location;
		}

		public void setLocation(String location) {
			this.location = location;
		}

		
	    // Constructores, Getters y Setters...
	
}
