com.penalara.ghc.jsonghcfile.engineghcfile.AnonymousClassRoom Maven / Gradle / Ivy
Show all versions of engineGHCFile Show documentation
package com.penalara.ghc.jsonghcfile.engineghcfile;
import java.util.ArrayList;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
/**
* AnonymousClassRoom
*
* Object with anonymous classrooms created in a set of classrooms.
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
"refClassRoomsSet",
"classRoomsCreated"
})
public class AnonymousClassRoom {
/**
* Identifier of the ClassRooms group.
* (Required)
*
*/
@JsonProperty("refClassRoomsSet")
@JsonPropertyDescription("Identifier of the ClassRooms group.")
private String refClassRoomsSet;
/**
* ListOfAnonymousRooms
*
* List of anonymous classroom created in one set of classrooms.
* (Required)
*
*/
@JsonProperty("classRoomsCreated")
@JsonPropertyDescription("List of anonymous classroom created in one set of classrooms.")
private List classRoomsCreated = new ArrayList();
/**
* Identifier of the ClassRooms group.
* (Required)
*
*/
@JsonProperty("refClassRoomsSet")
public String getRefClassRoomsSet() {
return refClassRoomsSet;
}
/**
* Identifier of the ClassRooms group.
* (Required)
*
*/
@JsonProperty("refClassRoomsSet")
public void setRefClassRoomsSet(String refClassRoomsSet) {
this.refClassRoomsSet = refClassRoomsSet;
}
/**
* ListOfAnonymousRooms
*
* List of anonymous classroom created in one set of classrooms.
* (Required)
*
*/
@JsonProperty("classRoomsCreated")
public List getClassRoomsCreated() {
return classRoomsCreated;
}
/**
* ListOfAnonymousRooms
*
* List of anonymous classroom created in one set of classrooms.
* (Required)
*
*/
@JsonProperty("classRoomsCreated")
public void setClassRoomsCreated(List classRoomsCreated) {
this.classRoomsCreated = classRoomsCreated;
}
}