
org.sunbird.telemetry.dto.Parent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of platform-telemetry Show documentation
Show all versions of platform-telemetry Show documentation
platform-telemetry provides utils to generate telemetry as per sunbird telemetry spec.
The newest version!
/**
*
*/
package org.sunbird.telemetry.dto;
/**
* @author mahesh
*
*/
public class Parent {
private String id;
private String type;
/**
* @return the id
*/
public String getId() {
return id;
}
/**
* @param id the id to set
*/
public void setId(String id) {
this.id = id;
}
/**
* @return the type
*/
public String getType() {
return type;
}
/**
* @param type the type to set
*/
public void setType(String type) {
this.type = type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy