Required role: | REGISUserRole |
POST | /Registration/{uuid}/AddProvisional/{reporting_term}/Submit |
---|
<?php namespace dtos;
use DateTime;
use Exception;
use DateInterval;
use JsonSerializable;
use ServiceStack\{IReturn,IReturnVoid,IGet,IPost,IPut,IDelete,IPatch,IMeta,IHasSessionId,IHasBearerToken,IHasVersion};
use ServiceStack\{ICrud,ICreateDb,IUpdateDb,IPatchDb,IDeleteDb,ISaveDb,AuditBase,QueryDb,QueryDb2,QueryData,QueryData2,QueryResponse};
use ServiceStack\{ResponseStatus,ResponseError,EmptyResponse,IdResponse,ArrayList,KeyValuePair2,StringResponse,StringsResponse,Tuple2,Tuple3,ByteArray};
use ServiceStack\{JsonConverters,Returns,TypeContext};
class AddRegistrationWithBenefitRequest implements JsonSerializable
{
public function __construct(
/** @var string|null */
public ?string $student_section_uuid=null,
/** @var string|null */
public ?string $description=null,
/** @var float */
public float $amount=0.0,
/** @var float */
public float $charge=0.0,
/** @var bool|null */
public ?bool $is_audit=null,
/** @var int|null */
public ?int $benefit_id=null,
/** @var float|null */
public ?float $benefit_amount=null,
/** @var int|null */
public ?int $second_benefit_id=null,
/** @var float|null */
public ?float $second_benefit_amount=null
) {
}
/** @throws Exception */
public function fromMap($o): void {
if (isset($o['student_section_uuid'])) $this->student_section_uuid = $o['student_section_uuid'];
if (isset($o['description'])) $this->description = $o['description'];
if (isset($o['amount'])) $this->amount = $o['amount'];
if (isset($o['charge'])) $this->charge = $o['charge'];
if (isset($o['is_audit'])) $this->is_audit = $o['is_audit'];
if (isset($o['benefit_id'])) $this->benefit_id = $o['benefit_id'];
if (isset($o['benefit_amount'])) $this->benefit_amount = $o['benefit_amount'];
if (isset($o['second_benefit_id'])) $this->second_benefit_id = $o['second_benefit_id'];
if (isset($o['second_benefit_amount'])) $this->second_benefit_amount = $o['second_benefit_amount'];
}
/** @throws Exception */
public function jsonSerialize(): mixed
{
$o = [];
if (isset($this->student_section_uuid)) $o['student_section_uuid'] = $this->student_section_uuid;
if (isset($this->description)) $o['description'] = $this->description;
if (isset($this->amount)) $o['amount'] = $this->amount;
if (isset($this->charge)) $o['charge'] = $this->charge;
if (isset($this->is_audit)) $o['is_audit'] = $this->is_audit;
if (isset($this->benefit_id)) $o['benefit_id'] = $this->benefit_id;
if (isset($this->benefit_amount)) $o['benefit_amount'] = $this->benefit_amount;
if (isset($this->second_benefit_id)) $o['second_benefit_id'] = $this->second_benefit_id;
if (isset($this->second_benefit_amount)) $o['second_benefit_amount'] = $this->second_benefit_amount;
return empty($o) ? new class(){} : $o;
}
}
class AddProvisionalRegistrationsSubmitRequest implements JsonSerializable
{
public function __construct(
/** @var string|null */
public ?string $transaction_uuid=null,
/** @var string|null */
public ?string $uuid=null,
/** @var string|null */
public ?string $reporting_term=null,
/** @var bool|null */
public ?bool $email_student=null,
/** @var array<AddRegistrationWithBenefitRequest>|null */
public ?array $registrations=null,
/** @var string|null */
public ?string $authorizing_uuid=null
) {
}
/** @throws Exception */
public function fromMap($o): void {
if (isset($o['transaction_uuid'])) $this->transaction_uuid = $o['transaction_uuid'];
if (isset($o['uuid'])) $this->uuid = $o['uuid'];
if (isset($o['reporting_term'])) $this->reporting_term = $o['reporting_term'];
if (isset($o['email_student'])) $this->email_student = $o['email_student'];
if (isset($o['registrations'])) $this->registrations = JsonConverters::fromArray('AddRegistrationWithBenefitRequest', $o['registrations']);
if (isset($o['authorizing_uuid'])) $this->authorizing_uuid = $o['authorizing_uuid'];
}
/** @throws Exception */
public function jsonSerialize(): mixed
{
$o = [];
if (isset($this->transaction_uuid)) $o['transaction_uuid'] = $this->transaction_uuid;
if (isset($this->uuid)) $o['uuid'] = $this->uuid;
if (isset($this->reporting_term)) $o['reporting_term'] = $this->reporting_term;
if (isset($this->email_student)) $o['email_student'] = $this->email_student;
if (isset($this->registrations)) $o['registrations'] = JsonConverters::toArray('AddRegistrationWithBenefitRequest', $this->registrations);
if (isset($this->authorizing_uuid)) $o['authorizing_uuid'] = $this->authorizing_uuid;
return empty($o) ? new class(){} : $o;
}
}
PHP AddProvisionalRegistrationsSubmitRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /Registration/{uuid}/AddProvisional/{reporting_term}/Submit HTTP/1.1
Host: data.regent-college.edu
Accept: text/csv
Content-Type: text/csv
Content-Length: length
{"transaction_uuid":"String","uuid":"String","reporting_term":"String","email_student":false,"registrations":[{"student_section_uuid":"String","description":"String","amount":0,"charge":0,"is_audit":false,"benefit_id":0,"benefit_amount":0,"second_benefit_id":0,"second_benefit_amount":0}],"authorizing_uuid":"String"}
HTTP/1.1 200 OK Content-Type: text/csv Content-Length: length {"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}