addStudentEval
Agrega una evaluación a un modelo de estudiante
/Estudiante/AddEvaluation
Usage and SDK Samples
curl -X POST\
-H "Accept: application/xml"\
-H "Content-Type: application/xml"\
"http://localhost:8080/curricula_microservice/Estudiante/AddEvaluation?faculty=&career=&plan=&curricularUnit=&evaluation=¬a="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;
import java.io.File;
import java.util.*;
public class DefaultApiExample {
public static void main(String[] args) {
DefaultApi apiInstance = new DefaultApi();
String faculty = faculty_example; // String | Nombre de facultad
String career = career_example; // String | Nombre de carrera
Integer plan = 56; // Integer | Id de plan
String curricularUnit = curricularUnit_example; // String | Id de UC
String evaluation = evaluation_example; // String | Id de evaluación
Integer nota = 56; // Integer | Nota obtenida
RootEstudiante body = ; // RootEstudiante | Modelo .xmi de estudiante
try {
RootEstudiante result = apiInstance.addStudentEval(faculty, career, plan, curricularUnit, evaluation, nota, body);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling DefaultApi#addStudentEval");
e.printStackTrace();
}
}
}
import io.swagger.client.api.DefaultApi;
public class DefaultApiExample {
public static void main(String[] args) {
DefaultApi apiInstance = new DefaultApi();
String faculty = faculty_example; // String | Nombre de facultad
String career = career_example; // String | Nombre de carrera
Integer plan = 56; // Integer | Id de plan
String curricularUnit = curricularUnit_example; // String | Id de UC
String evaluation = evaluation_example; // String | Id de evaluación
Integer nota = 56; // Integer | Nota obtenida
RootEstudiante body = ; // RootEstudiante | Modelo .xmi de estudiante
try {
RootEstudiante result = apiInstance.addStudentEval(faculty, career, plan, curricularUnit, evaluation, nota, body);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling DefaultApi#addStudentEval");
e.printStackTrace();
}
}
}
String *faculty = faculty_example; // Nombre de facultad
String *career = career_example; // Nombre de carrera
Integer *plan = 56; // Id de plan
String *curricularUnit = curricularUnit_example; // Id de UC
String *evaluation = evaluation_example; // Id de evaluación
Integer *nota = 56; // Nota obtenida
RootEstudiante *body = ; // Modelo .xmi de estudiante (optional)
DefaultApi *apiInstance = [[DefaultApi alloc] init];
// Agrega una evaluación a un modelo de estudiante
[apiInstance addStudentEvalWith:faculty
career:career
plan:plan
curricularUnit:curricularUnit
evaluation:evaluation
nota:nota
body:body
completionHandler: ^(RootEstudiante output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error: %@", error);
}
}];
var CurrculaDocs = require('currcula_docs');
var api = new CurrculaDocs.DefaultApi()
var faculty = faculty_example; // {{String}} Nombre de facultad
var career = career_example; // {{String}} Nombre de carrera
var plan = 56; // {{Integer}} Id de plan
var curricularUnit = curricularUnit_example; // {{String}} Id de UC
var evaluation = evaluation_example; // {{String}} Id de evaluación
var nota = 56; // {{Integer}} Nota obtenida
var opts = {
'body': // {{RootEstudiante}} Modelo .xmi de estudiante
};
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
api.addStudentEval(facultycareerplancurricularUnitevaluationnota, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class addStudentEvalExample
{
public void main()
{
var apiInstance = new DefaultApi();
var faculty = faculty_example; // String | Nombre de facultad
var career = career_example; // String | Nombre de carrera
var plan = 56; // Integer | Id de plan
var curricularUnit = curricularUnit_example; // String | Id de UC
var evaluation = evaluation_example; // String | Id de evaluación
var nota = 56; // Integer | Nota obtenida
var body = new RootEstudiante(); // RootEstudiante | Modelo .xmi de estudiante (optional)
try
{
// Agrega una evaluación a un modelo de estudiante
RootEstudiante result = apiInstance.addStudentEval(faculty, career, plan, curricularUnit, evaluation, nota, body);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling DefaultApi.addStudentEval: " + e.Message );
}
}
}
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Swagger\Client\ApiDefaultApi();
$faculty = faculty_example; // String | Nombre de facultad
$career = career_example; // String | Nombre de carrera
$plan = 56; // Integer | Id de plan
$curricularUnit = curricularUnit_example; // String | Id de UC
$evaluation = evaluation_example; // String | Id de evaluación
$nota = 56; // Integer | Nota obtenida
$body = ; // RootEstudiante | Modelo .xmi de estudiante
try {
$result = $api_instance->addStudentEval($faculty, $career, $plan, $curricularUnit, $evaluation, $nota, $body);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->addStudentEval: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;
my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $faculty = faculty_example; # String | Nombre de facultad
my $career = career_example; # String | Nombre de carrera
my $plan = 56; # Integer | Id de plan
my $curricularUnit = curricularUnit_example; # String | Id de UC
my $evaluation = evaluation_example; # String | Id de evaluación
my $nota = 56; # Integer | Nota obtenida
my $body = WWW::SwaggerClient::Object::RootEstudiante->new(); # RootEstudiante | Modelo .xmi de estudiante
eval {
my $result = $api_instance->addStudentEval(faculty => $faculty, career => $career, plan => $plan, curricularUnit => $curricularUnit, evaluation => $evaluation, nota => $nota, body => $body);
print Dumper($result);
};
if ($@) {
warn "Exception when calling DefaultApi->addStudentEval: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = swagger_client.DefaultApi()
faculty = faculty_example # String | Nombre de facultad
career = career_example # String | Nombre de carrera
plan = 56 # Integer | Id de plan
curricularUnit = curricularUnit_example # String | Id de UC
evaluation = evaluation_example # String | Id de evaluación
nota = 56 # Integer | Nota obtenida
body = # RootEstudiante | Modelo .xmi de estudiante (optional)
try:
# Agrega una evaluación a un modelo de estudiante
api_response = api_instance.add_student_eval(faculty, career, plan, curricularUnit, evaluation, nota, body=body)
pprint(api_response)
except ApiException as e:
print("Exception when calling DefaultApi->addStudentEval: %s\n" % e)
Parameters
Name | Description |
---|---|
body |
Name | Description |
---|---|
faculty* |
String
Nombre de facultad
Required
|
career* |
String
Nombre de carrera
Required
|
plan* |
Integer
Id de plan
Required
|
curricularUnit* |
String
Id de UC
Required
|
evaluation* |
String
Id de evaluación
Required
|
nota* |
Integer
Nota obtenida
Required
|