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

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

Go to download

Project with Java POJO classes of full file format to new PeñalaraGHC-Engine.

There is a newer version: 0.6.0
Show newest version

package com.penalara.ghc.jsonghcfile.engineghcfile;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;


/**
 * AssignedOnCallService
 * 

* Call hour assigned in the timetable. * */ @JsonInclude(JsonInclude.Include.NON_NULL) @JsonPropertyOrder({ "refOnCall", "refTeacher" }) public class AssignedOnCallService { /** * Identifier of the teaching session assigned. * (Required) * */ @JsonProperty("refOnCall") @JsonPropertyDescription("Identifier of the teaching session assigned.") private String refOnCall; /** * RefTeachers *

* Teacher assigned in section on call service. * (Required) * */ @JsonProperty("refTeacher") @JsonPropertyDescription("Teacher assigned in section on call service.") private String refTeacher; /** * Identifier of the teaching session assigned. * (Required) * */ @JsonProperty("refOnCall") public String getRefOnCall() { return refOnCall; } /** * Identifier of the teaching session assigned. * (Required) * */ @JsonProperty("refOnCall") public void setRefOnCall(String refOnCall) { this.refOnCall = refOnCall; } /** * RefTeachers *

* Teacher assigned in section on call service. * (Required) * */ @JsonProperty("refTeacher") public String getRefTeacher() { return refTeacher; } /** * RefTeachers *

* Teacher assigned in section on call service. * (Required) * */ @JsonProperty("refTeacher") public void setRefTeacher(String refTeacher) { this.refTeacher = refTeacher; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy