All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.penalara.ghc.jsonghcfile.engineghcfile.AssignedComplementary Maven / Gradle / Ivy


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;


/**
 * AssignedComplementary
 * 

* Teacher's complementary activity assigned in the timetable. * */ @JsonInclude(JsonInclude.Include.NON_NULL) @JsonPropertyOrder({ "refComplementary", "refClassRomms", "refTeacher" }) public class AssignedComplementary { /** * Identifier of the Complementary Activity assigned. * (Required) * */ @JsonProperty("refComplementary") @JsonPropertyDescription("Identifier of the Complementary Activity assigned.") private Integer refComplementary; /** * RefclassRomms *

* List of classrooms assigned to teach the class unit. * */ @JsonProperty("refClassRomms") @JsonPropertyDescription("List of classrooms assigned to teach the class unit.") private List refClassRomms = new ArrayList(); /** * RefTeachers *

* List of teachers assigned to the class unit. * (Required) * */ @JsonProperty("refTeacher") @JsonPropertyDescription("List of teachers assigned to the class unit.") private List refTeacher = new ArrayList(); /** * Identifier of the Complementary Activity assigned. * (Required) * */ @JsonProperty("refComplementary") public Integer getRefComplementary() { return refComplementary; } /** * Identifier of the Complementary Activity assigned. * (Required) * */ @JsonProperty("refComplementary") public void setRefComplementary(Integer refComplementary) { this.refComplementary = refComplementary; } /** * RefclassRomms *

* List of classrooms assigned to teach the class unit. * */ @JsonProperty("refClassRomms") public List getRefClassRomms() { return refClassRomms; } /** * RefclassRomms *

* List of classrooms assigned to teach the class unit. * */ @JsonProperty("refClassRomms") public void setRefClassRomms(List refClassRomms) { this.refClassRomms = refClassRomms; } /** * RefTeachers *

* List of teachers assigned to the class unit. * (Required) * */ @JsonProperty("refTeacher") public List getRefTeacher() { return refTeacher; } /** * RefTeachers *

* List of teachers assigned to the class unit. * (Required) * */ @JsonProperty("refTeacher") public void setRefTeacher(List refTeacher) { this.refTeacher = refTeacher; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy