regis

<back to all web services

FinanceAccountReportRequest

Requires Authentication
Required permission:ReadAccountReport
The following routes are available for this service:
POST/Finance/AccountReport/{uuid}
<?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 InvoiceItemResponse implements JsonSerializable
{
    public function __construct(
        /** @var ResponseStatus|null */
        public ?ResponseStatus $responseStatus=null,
        /** @var string|null */
        public ?string $invoiceItemUUID=null,
        /** @var int */
        public int $rate_id=0,
        /** @var string|null */
        public ?string $rate_code=null,
        /** @var string|null */
        public ?string $rate_description=null,
        /** @var float|null */
        public ?float $charge=null,
        /** @var float|null */
        public ?float $credit=null
    ) {
    }

    /** @throws Exception */
    public function fromMap($o): void {
        if (isset($o['responseStatus'])) $this->responseStatus = JsonConverters::from('ResponseStatus', $o['responseStatus']);
        if (isset($o['invoiceItemUUID'])) $this->invoiceItemUUID = $o['invoiceItemUUID'];
        if (isset($o['rate_id'])) $this->rate_id = $o['rate_id'];
        if (isset($o['rate_code'])) $this->rate_code = $o['rate_code'];
        if (isset($o['rate_description'])) $this->rate_description = $o['rate_description'];
        if (isset($o['charge'])) $this->charge = $o['charge'];
        if (isset($o['credit'])) $this->credit = $o['credit'];
    }
    
    /** @throws Exception */
    public function jsonSerialize(): mixed
    {
        $o = [];
        if (isset($this->responseStatus)) $o['responseStatus'] = JsonConverters::to('ResponseStatus', $this->responseStatus);
        if (isset($this->invoiceItemUUID)) $o['invoiceItemUUID'] = $this->invoiceItemUUID;
        if (isset($this->rate_id)) $o['rate_id'] = $this->rate_id;
        if (isset($this->rate_code)) $o['rate_code'] = $this->rate_code;
        if (isset($this->rate_description)) $o['rate_description'] = $this->rate_description;
        if (isset($this->charge)) $o['charge'] = $this->charge;
        if (isset($this->credit)) $o['credit'] = $this->credit;
        return empty($o) ? new class(){} : $o;
    }
}

class InstructorResponse implements JsonSerializable
{
    public function __construct(
        /** @var ResponseStatus|null */
        public ?ResponseStatus $responseStatus=null,
        /** @var int */
        public int $regent_id=0,
        /** @var string|null */
        public ?string $regent_login=null,
        /** @var string|null */
        public ?string $preferred_name=null,
        /** @var string|null */
        public ?string $first_name=null,
        /** @var string|null */
        public ?string $last_name=null,
        /** @var string|null */
        public ?string $full_name=null,
        /** @var string|null */
        public ?string $email=null,
        /** @var string|null */
        public ?string $image_base64=null
    ) {
    }

    /** @throws Exception */
    public function fromMap($o): void {
        if (isset($o['responseStatus'])) $this->responseStatus = JsonConverters::from('ResponseStatus', $o['responseStatus']);
        if (isset($o['regent_id'])) $this->regent_id = $o['regent_id'];
        if (isset($o['regent_login'])) $this->regent_login = $o['regent_login'];
        if (isset($o['preferred_name'])) $this->preferred_name = $o['preferred_name'];
        if (isset($o['first_name'])) $this->first_name = $o['first_name'];
        if (isset($o['last_name'])) $this->last_name = $o['last_name'];
        if (isset($o['full_name'])) $this->full_name = $o['full_name'];
        if (isset($o['email'])) $this->email = $o['email'];
        if (isset($o['image_base64'])) $this->image_base64 = $o['image_base64'];
    }
    
    /** @throws Exception */
    public function jsonSerialize(): mixed
    {
        $o = [];
        if (isset($this->responseStatus)) $o['responseStatus'] = JsonConverters::to('ResponseStatus', $this->responseStatus);
        if (isset($this->regent_id)) $o['regent_id'] = $this->regent_id;
        if (isset($this->regent_login)) $o['regent_login'] = $this->regent_login;
        if (isset($this->preferred_name)) $o['preferred_name'] = $this->preferred_name;
        if (isset($this->first_name)) $o['first_name'] = $this->first_name;
        if (isset($this->last_name)) $o['last_name'] = $this->last_name;
        if (isset($this->full_name)) $o['full_name'] = $this->full_name;
        if (isset($this->email)) $o['email'] = $this->email;
        if (isset($this->image_base64)) $o['image_base64'] = $this->image_base64;
        return empty($o) ? new class(){} : $o;
    }
}

class DocumentResponse implements JsonSerializable
{
    public function __construct(
        /** @var string|null */
        public ?string $code=null,
        /** @var string|null */
        public ?string $document_name=null,
        /** @var string|null */
        public ?string $document_description=null
    ) {
    }

    /** @throws Exception */
    public function fromMap($o): void {
        if (isset($o['code'])) $this->code = $o['code'];
        if (isset($o['document_name'])) $this->document_name = $o['document_name'];
        if (isset($o['document_description'])) $this->document_description = $o['document_description'];
    }
    
    /** @throws Exception */
    public function jsonSerialize(): mixed
    {
        $o = [];
        if (isset($this->code)) $o['code'] = $this->code;
        if (isset($this->document_name)) $o['document_name'] = $this->document_name;
        if (isset($this->document_description)) $o['document_description'] = $this->document_description;
        return empty($o) ? new class(){} : $o;
    }
}

class SectionResponse implements JsonSerializable
{
    public function __construct(
        /** @var ResponseStatus|null */
        public ?ResponseStatus $responseStatus=null,
        /** @var string|null */
        public ?string $secUUID=null,
        /** @var string|null */
        public ?string $course_name=null,
        /** @var string|null */
        public ?string $section_code=null,
        /** @var string|null */
        public ?string $course_title=null,
        /** @var string|null */
        public ?string $course_short_title=null,
        /** @var string|null */
        public ?string $course_description=null,
        /** @var string|null */
        public ?string $crosslist_description=null,
        /** @var string|null */
        public ?string $crosslist_course_name=null,
        /** @var string|null */
        public ?string $location_long_name=null,
        /** @var string|null */
        public ?string $room=null,
        /** @var array<InstructorResponse>|null */
        public ?array $instructors=null,
        /** @var array<DocumentResponse>|null */
        public ?array $required_documents=null,
        /** @var DateTime|null */
        public ?DateTime $start_date=null,
        /** @var DateTime|null */
        public ?DateTime $end_date=null,
        /** @var DateTime|null */
        public ?DateTime $first_meeting_date=null,
        /** @var DateTime|null */
        public ?DateTime $last_meeting_date=null,
        /** @var string|null */
        public ?string $meeting_days=null,
        /** @var array<string>|null */
        public ?array $start_times=null,
        /** @var array<string>|null */
        public ?array $end_times=null,
        /** @var bool|null */
        public ?bool $is_online_only=null,
        /** @var bool|null */
        public ?bool $is_weekend=null,
        /** @var bool|null */
        public ?bool $is_weekday=null,
        /** @var bool|null */
        public ?bool $is_evening=null,
        /** @var bool|null */
        public ?bool $is_waitlist=null,
        /** @var bool|null */
        public ?bool $has_special_requirements=null,
        /** @var string|null */
        public ?string $special_requirements=null,
        /** @var bool|null */
        public ?bool $is_unlisted=null,
        /** @var array<float>|null */
        public ?array $credit_amounts=null,
        /** @var array<float>|null */
        public ?array $audit_amounts=null,
        /** @var string|null */
        public ?string $audits_short_name=null,
        /** @var string|null */
        public ?string $audits_long_name=null,
        /** @var string|null */
        public ?string $credits_short_name=null,
        /** @var string|null */
        public ?string $credits_long_name=null,
        /** @var string|null */
        public ?string $distance_ed_materials=null,
        /** @var string|null */
        public ?string $prerequisites=null,
        /** @var string|null */
        public ?string $corequisites=null,
        /** @var int|null */
        public ?int $capacity=null,
        /** @var float|null */
        public ?float $flat_fee_amount=null,
        /** @var float|null */
        public ?float $additional_fee_amount=null,
        /** @var int */
        public int $registered_students=0,
        /** @var int */
        public int $three_credit_plus=0,
        /** @var int */
        public int $two_credit=0,
        /** @var int */
        public int $one_credit=0,
        /** @var int */
        public int $three_audit_plus=0,
        /** @var int */
        public int $two_audit=0,
        /** @var int */
        public int $one_audit=0,
        /** @var int */
        public int $crosslist_registered_students=0,
        /** @var int */
        public int $grades_received=0,
        /** @var int */
        public int $crosslist_grades_received=0,
        /** @var DateTime|null */
        public ?DateTime $registration_start_date=null,
        /** @var DateTime|null */
        public ?DateTime $registration_end_date=null,
        /** @var DateTime|null */
        public ?DateTime $add_start_date=null,
        /** @var DateTime|null */
        public ?DateTime $add_end_date=null,
        /** @var DateTime|null */
        public ?DateTime $drop_start_date=null,
        /** @var DateTime|null */
        public ?DateTime $drop_end_date=null,
        /** @var DateTime|null */
        public ?DateTime $grading_end_date=null,
        /** @var string|null */
        public ?string $term=null,
        /** @var string|null */
        public ?string $reporting_term=null,
        /** @var int */
        public int $reporting_year=0,
        /** @var string|null */
        public ?string $current_status=null,
        /** @var string|null */
        public ?string $added_by=null,
        /** @var DateTime|null */
        public ?DateTime $added_date=null,
        /** @var string|null */
        public ?string $changed_by=null,
        /** @var DateTime|null */
        public ?DateTime $changed_date=null,
        /** @var DateTime */
        public DateTime $timestamp=new DateTime()
    ) {
    }

    /** @throws Exception */
    public function fromMap($o): void {
        if (isset($o['responseStatus'])) $this->responseStatus = JsonConverters::from('ResponseStatus', $o['responseStatus']);
        if (isset($o['secUUID'])) $this->secUUID = $o['secUUID'];
        if (isset($o['course_name'])) $this->course_name = $o['course_name'];
        if (isset($o['section_code'])) $this->section_code = $o['section_code'];
        if (isset($o['course_title'])) $this->course_title = $o['course_title'];
        if (isset($o['course_short_title'])) $this->course_short_title = $o['course_short_title'];
        if (isset($o['course_description'])) $this->course_description = $o['course_description'];
        if (isset($o['crosslist_description'])) $this->crosslist_description = $o['crosslist_description'];
        if (isset($o['crosslist_course_name'])) $this->crosslist_course_name = $o['crosslist_course_name'];
        if (isset($o['location_long_name'])) $this->location_long_name = $o['location_long_name'];
        if (isset($o['room'])) $this->room = $o['room'];
        if (isset($o['instructors'])) $this->instructors = JsonConverters::fromArray('InstructorResponse', $o['instructors']);
        if (isset($o['required_documents'])) $this->required_documents = JsonConverters::fromArray('DocumentResponse', $o['required_documents']);
        if (isset($o['start_date'])) $this->start_date = JsonConverters::from('DateTime', $o['start_date']);
        if (isset($o['end_date'])) $this->end_date = JsonConverters::from('DateTime', $o['end_date']);
        if (isset($o['first_meeting_date'])) $this->first_meeting_date = JsonConverters::from('DateTime', $o['first_meeting_date']);
        if (isset($o['last_meeting_date'])) $this->last_meeting_date = JsonConverters::from('DateTime', $o['last_meeting_date']);
        if (isset($o['meeting_days'])) $this->meeting_days = $o['meeting_days'];
        if (isset($o['start_times'])) $this->start_times = JsonConverters::fromArray('string', $o['start_times']);
        if (isset($o['end_times'])) $this->end_times = JsonConverters::fromArray('string', $o['end_times']);
        if (isset($o['is_online_only'])) $this->is_online_only = $o['is_online_only'];
        if (isset($o['is_weekend'])) $this->is_weekend = $o['is_weekend'];
        if (isset($o['is_weekday'])) $this->is_weekday = $o['is_weekday'];
        if (isset($o['is_evening'])) $this->is_evening = $o['is_evening'];
        if (isset($o['is_waitlist'])) $this->is_waitlist = $o['is_waitlist'];
        if (isset($o['has_special_requirements'])) $this->has_special_requirements = $o['has_special_requirements'];
        if (isset($o['special_requirements'])) $this->special_requirements = $o['special_requirements'];
        if (isset($o['is_unlisted'])) $this->is_unlisted = $o['is_unlisted'];
        if (isset($o['credit_amounts'])) $this->credit_amounts = JsonConverters::fromArray('float', $o['credit_amounts']);
        if (isset($o['audit_amounts'])) $this->audit_amounts = JsonConverters::fromArray('float', $o['audit_amounts']);
        if (isset($o['audits_short_name'])) $this->audits_short_name = $o['audits_short_name'];
        if (isset($o['audits_long_name'])) $this->audits_long_name = $o['audits_long_name'];
        if (isset($o['credits_short_name'])) $this->credits_short_name = $o['credits_short_name'];
        if (isset($o['credits_long_name'])) $this->credits_long_name = $o['credits_long_name'];
        if (isset($o['distance_ed_materials'])) $this->distance_ed_materials = $o['distance_ed_materials'];
        if (isset($o['prerequisites'])) $this->prerequisites = $o['prerequisites'];
        if (isset($o['corequisites'])) $this->corequisites = $o['corequisites'];
        if (isset($o['capacity'])) $this->capacity = $o['capacity'];
        if (isset($o['flat_fee_amount'])) $this->flat_fee_amount = $o['flat_fee_amount'];
        if (isset($o['additional_fee_amount'])) $this->additional_fee_amount = $o['additional_fee_amount'];
        if (isset($o['registered_students'])) $this->registered_students = $o['registered_students'];
        if (isset($o['three_credit_plus'])) $this->three_credit_plus = $o['three_credit_plus'];
        if (isset($o['two_credit'])) $this->two_credit = $o['two_credit'];
        if (isset($o['one_credit'])) $this->one_credit = $o['one_credit'];
        if (isset($o['three_audit_plus'])) $this->three_audit_plus = $o['three_audit_plus'];
        if (isset($o['two_audit'])) $this->two_audit = $o['two_audit'];
        if (isset($o['one_audit'])) $this->one_audit = $o['one_audit'];
        if (isset($o['crosslist_registered_students'])) $this->crosslist_registered_students = $o['crosslist_registered_students'];
        if (isset($o['grades_received'])) $this->grades_received = $o['grades_received'];
        if (isset($o['crosslist_grades_received'])) $this->crosslist_grades_received = $o['crosslist_grades_received'];
        if (isset($o['registration_start_date'])) $this->registration_start_date = JsonConverters::from('DateTime', $o['registration_start_date']);
        if (isset($o['registration_end_date'])) $this->registration_end_date = JsonConverters::from('DateTime', $o['registration_end_date']);
        if (isset($o['add_start_date'])) $this->add_start_date = JsonConverters::from('DateTime', $o['add_start_date']);
        if (isset($o['add_end_date'])) $this->add_end_date = JsonConverters::from('DateTime', $o['add_end_date']);
        if (isset($o['drop_start_date'])) $this->drop_start_date = JsonConverters::from('DateTime', $o['drop_start_date']);
        if (isset($o['drop_end_date'])) $this->drop_end_date = JsonConverters::from('DateTime', $o['drop_end_date']);
        if (isset($o['grading_end_date'])) $this->grading_end_date = JsonConverters::from('DateTime', $o['grading_end_date']);
        if (isset($o['term'])) $this->term = $o['term'];
        if (isset($o['reporting_term'])) $this->reporting_term = $o['reporting_term'];
        if (isset($o['reporting_year'])) $this->reporting_year = $o['reporting_year'];
        if (isset($o['current_status'])) $this->current_status = $o['current_status'];
        if (isset($o['added_by'])) $this->added_by = $o['added_by'];
        if (isset($o['added_date'])) $this->added_date = JsonConverters::from('DateTime', $o['added_date']);
        if (isset($o['changed_by'])) $this->changed_by = $o['changed_by'];
        if (isset($o['changed_date'])) $this->changed_date = JsonConverters::from('DateTime', $o['changed_date']);
        if (isset($o['timestamp'])) $this->timestamp = JsonConverters::from('DateTime', $o['timestamp']);
    }
    
    /** @throws Exception */
    public function jsonSerialize(): mixed
    {
        $o = [];
        if (isset($this->responseStatus)) $o['responseStatus'] = JsonConverters::to('ResponseStatus', $this->responseStatus);
        if (isset($this->secUUID)) $o['secUUID'] = $this->secUUID;
        if (isset($this->course_name)) $o['course_name'] = $this->course_name;
        if (isset($this->section_code)) $o['section_code'] = $this->section_code;
        if (isset($this->course_title)) $o['course_title'] = $this->course_title;
        if (isset($this->course_short_title)) $o['course_short_title'] = $this->course_short_title;
        if (isset($this->course_description)) $o['course_description'] = $this->course_description;
        if (isset($this->crosslist_description)) $o['crosslist_description'] = $this->crosslist_description;
        if (isset($this->crosslist_course_name)) $o['crosslist_course_name'] = $this->crosslist_course_name;
        if (isset($this->location_long_name)) $o['location_long_name'] = $this->location_long_name;
        if (isset($this->room)) $o['room'] = $this->room;
        if (isset($this->instructors)) $o['instructors'] = JsonConverters::toArray('InstructorResponse', $this->instructors);
        if (isset($this->required_documents)) $o['required_documents'] = JsonConverters::toArray('DocumentResponse', $this->required_documents);
        if (isset($this->start_date)) $o['start_date'] = JsonConverters::to('DateTime', $this->start_date);
        if (isset($this->end_date)) $o['end_date'] = JsonConverters::to('DateTime', $this->end_date);
        if (isset($this->first_meeting_date)) $o['first_meeting_date'] = JsonConverters::to('DateTime', $this->first_meeting_date);
        if (isset($this->last_meeting_date)) $o['last_meeting_date'] = JsonConverters::to('DateTime', $this->last_meeting_date);
        if (isset($this->meeting_days)) $o['meeting_days'] = $this->meeting_days;
        if (isset($this->start_times)) $o['start_times'] = JsonConverters::toArray('string', $this->start_times);
        if (isset($this->end_times)) $o['end_times'] = JsonConverters::toArray('string', $this->end_times);
        if (isset($this->is_online_only)) $o['is_online_only'] = $this->is_online_only;
        if (isset($this->is_weekend)) $o['is_weekend'] = $this->is_weekend;
        if (isset($this->is_weekday)) $o['is_weekday'] = $this->is_weekday;
        if (isset($this->is_evening)) $o['is_evening'] = $this->is_evening;
        if (isset($this->is_waitlist)) $o['is_waitlist'] = $this->is_waitlist;
        if (isset($this->has_special_requirements)) $o['has_special_requirements'] = $this->has_special_requirements;
        if (isset($this->special_requirements)) $o['special_requirements'] = $this->special_requirements;
        if (isset($this->is_unlisted)) $o['is_unlisted'] = $this->is_unlisted;
        if (isset($this->credit_amounts)) $o['credit_amounts'] = JsonConverters::toArray('float', $this->credit_amounts);
        if (isset($this->audit_amounts)) $o['audit_amounts'] = JsonConverters::toArray('float', $this->audit_amounts);
        if (isset($this->audits_short_name)) $o['audits_short_name'] = $this->audits_short_name;
        if (isset($this->audits_long_name)) $o['audits_long_name'] = $this->audits_long_name;
        if (isset($this->credits_short_name)) $o['credits_short_name'] = $this->credits_short_name;
        if (isset($this->credits_long_name)) $o['credits_long_name'] = $this->credits_long_name;
        if (isset($this->distance_ed_materials)) $o['distance_ed_materials'] = $this->distance_ed_materials;
        if (isset($this->prerequisites)) $o['prerequisites'] = $this->prerequisites;
        if (isset($this->corequisites)) $o['corequisites'] = $this->corequisites;
        if (isset($this->capacity)) $o['capacity'] = $this->capacity;
        if (isset($this->flat_fee_amount)) $o['flat_fee_amount'] = $this->flat_fee_amount;
        if (isset($this->additional_fee_amount)) $o['additional_fee_amount'] = $this->additional_fee_amount;
        if (isset($this->registered_students)) $o['registered_students'] = $this->registered_students;
        if (isset($this->three_credit_plus)) $o['three_credit_plus'] = $this->three_credit_plus;
        if (isset($this->two_credit)) $o['two_credit'] = $this->two_credit;
        if (isset($this->one_credit)) $o['one_credit'] = $this->one_credit;
        if (isset($this->three_audit_plus)) $o['three_audit_plus'] = $this->three_audit_plus;
        if (isset($this->two_audit)) $o['two_audit'] = $this->two_audit;
        if (isset($this->one_audit)) $o['one_audit'] = $this->one_audit;
        if (isset($this->crosslist_registered_students)) $o['crosslist_registered_students'] = $this->crosslist_registered_students;
        if (isset($this->grades_received)) $o['grades_received'] = $this->grades_received;
        if (isset($this->crosslist_grades_received)) $o['crosslist_grades_received'] = $this->crosslist_grades_received;
        if (isset($this->registration_start_date)) $o['registration_start_date'] = JsonConverters::to('DateTime', $this->registration_start_date);
        if (isset($this->registration_end_date)) $o['registration_end_date'] = JsonConverters::to('DateTime', $this->registration_end_date);
        if (isset($this->add_start_date)) $o['add_start_date'] = JsonConverters::to('DateTime', $this->add_start_date);
        if (isset($this->add_end_date)) $o['add_end_date'] = JsonConverters::to('DateTime', $this->add_end_date);
        if (isset($this->drop_start_date)) $o['drop_start_date'] = JsonConverters::to('DateTime', $this->drop_start_date);
        if (isset($this->drop_end_date)) $o['drop_end_date'] = JsonConverters::to('DateTime', $this->drop_end_date);
        if (isset($this->grading_end_date)) $o['grading_end_date'] = JsonConverters::to('DateTime', $this->grading_end_date);
        if (isset($this->term)) $o['term'] = $this->term;
        if (isset($this->reporting_term)) $o['reporting_term'] = $this->reporting_term;
        if (isset($this->reporting_year)) $o['reporting_year'] = $this->reporting_year;
        if (isset($this->current_status)) $o['current_status'] = $this->current_status;
        if (isset($this->added_by)) $o['added_by'] = $this->added_by;
        if (isset($this->added_date)) $o['added_date'] = JsonConverters::to('DateTime', $this->added_date);
        if (isset($this->changed_by)) $o['changed_by'] = $this->changed_by;
        if (isset($this->changed_date)) $o['changed_date'] = JsonConverters::to('DateTime', $this->changed_date);
        if (isset($this->timestamp)) $o['timestamp'] = JsonConverters::to('DateTime', $this->timestamp);
        return empty($o) ? new class(){} : $o;
    }
}

class StudentSectionResponse extends SectionResponse implements JsonSerializable
{
    /**
     * @param ResponseStatus|null $responseStatus
     * @param string|null $secUUID
     * @param string|null $course_name
     * @param string|null $section_code
     * @param string|null $course_title
     * @param string|null $course_short_title
     * @param string|null $course_description
     * @param string|null $crosslist_description
     * @param string|null $crosslist_course_name
     * @param string|null $location_long_name
     * @param string|null $room
     * @param array<InstructorResponse>|null $instructors
     * @param array<DocumentResponse>|null $required_documents
     * @param DateTime|null $start_date
     * @param DateTime|null $end_date
     * @param DateTime|null $first_meeting_date
     * @param DateTime|null $last_meeting_date
     * @param string|null $meeting_days
     * @param array<string>|null $start_times
     * @param array<string>|null $end_times
     * @param bool|null $is_online_only
     * @param bool|null $is_weekend
     * @param bool|null $is_weekday
     * @param bool|null $is_evening
     * @param bool|null $is_waitlist
     * @param bool|null $has_special_requirements
     * @param string|null $special_requirements
     * @param bool|null $is_unlisted
     * @param array<float>|null $credit_amounts
     * @param array<float>|null $audit_amounts
     * @param string|null $audits_short_name
     * @param string|null $audits_long_name
     * @param string|null $credits_short_name
     * @param string|null $credits_long_name
     * @param string|null $distance_ed_materials
     * @param string|null $prerequisites
     * @param string|null $corequisites
     * @param int|null $capacity
     * @param float|null $flat_fee_amount
     * @param float|null $additional_fee_amount
     * @param int $registered_students
     * @param int $three_credit_plus
     * @param int $two_credit
     * @param int $one_credit
     * @param int $three_audit_plus
     * @param int $two_audit
     * @param int $one_audit
     * @param int $crosslist_registered_students
     * @param int $grades_received
     * @param int $crosslist_grades_received
     * @param DateTime|null $registration_start_date
     * @param DateTime|null $registration_end_date
     * @param DateTime|null $add_start_date
     * @param DateTime|null $add_end_date
     * @param DateTime|null $drop_start_date
     * @param DateTime|null $drop_end_date
     * @param DateTime|null $grading_end_date
     * @param string|null $term
     * @param string|null $reporting_term
     * @param int $reporting_year
     * @param string|null $current_status
     * @param string|null $added_by
     * @param DateTime|null $added_date
     * @param string|null $changed_by
     * @param DateTime|null $changed_date
     * @param DateTime $timestamp
     */
    public function __construct(
        ?ResponseStatus $responseStatus=null,
        ?string $secUUID=null,
        ?string $course_name=null,
        ?string $section_code=null,
        ?string $course_title=null,
        ?string $course_short_title=null,
        ?string $course_description=null,
        ?string $crosslist_description=null,
        ?string $crosslist_course_name=null,
        ?string $location_long_name=null,
        ?string $room=null,
        ?array $instructors=null,
        ?array $required_documents=null,
        ?DateTime $start_date=null,
        ?DateTime $end_date=null,
        ?DateTime $first_meeting_date=null,
        ?DateTime $last_meeting_date=null,
        ?string $meeting_days=null,
        ?array $start_times=null,
        ?array $end_times=null,
        ?bool $is_online_only=null,
        ?bool $is_weekend=null,
        ?bool $is_weekday=null,
        ?bool $is_evening=null,
        ?bool $is_waitlist=null,
        ?bool $has_special_requirements=null,
        ?string $special_requirements=null,
        ?bool $is_unlisted=null,
        ?array $credit_amounts=null,
        ?array $audit_amounts=null,
        ?string $audits_short_name=null,
        ?string $audits_long_name=null,
        ?string $credits_short_name=null,
        ?string $credits_long_name=null,
        ?string $distance_ed_materials=null,
        ?string $prerequisites=null,
        ?string $corequisites=null,
        ?int $capacity=null,
        ?float $flat_fee_amount=null,
        ?float $additional_fee_amount=null,
        int $registered_students=0,
        int $three_credit_plus=0,
        int $two_credit=0,
        int $one_credit=0,
        int $three_audit_plus=0,
        int $two_audit=0,
        int $one_audit=0,
        int $crosslist_registered_students=0,
        int $grades_received=0,
        int $crosslist_grades_received=0,
        ?DateTime $registration_start_date=null,
        ?DateTime $registration_end_date=null,
        ?DateTime $add_start_date=null,
        ?DateTime $add_end_date=null,
        ?DateTime $drop_start_date=null,
        ?DateTime $drop_end_date=null,
        ?DateTime $grading_end_date=null,
        ?string $term=null,
        ?string $reporting_term=null,
        int $reporting_year=0,
        ?string $current_status=null,
        ?string $added_by=null,
        ?DateTime $added_date=null,
        ?string $changed_by=null,
        ?DateTime $changed_date=null,
        DateTime $timestamp=new DateTime(),
        /** @var string|null */
        public ?string $studentSectionUUID=null,
        /** @var float */
        public float $registered_amount=0.0,
        /** @var bool|null */
        public ?bool $is_provisional=null,
        /** @var bool|null */
        public ?bool $is_audit=null
    ) {
        parent::__construct($responseStatus,$secUUID,$course_name,$section_code,$course_title,$course_short_title,$course_description,$crosslist_description,$crosslist_course_name,$location_long_name,$room,$instructors,$required_documents,$start_date,$end_date,$first_meeting_date,$last_meeting_date,$meeting_days,$start_times,$end_times,$is_online_only,$is_weekend,$is_weekday,$is_evening,$is_waitlist,$has_special_requirements,$special_requirements,$is_unlisted,$credit_amounts,$audit_amounts,$audits_short_name,$audits_long_name,$credits_short_name,$credits_long_name,$distance_ed_materials,$prerequisites,$corequisites,$capacity,$flat_fee_amount,$additional_fee_amount,$registered_students,$three_credit_plus,$two_credit,$one_credit,$three_audit_plus,$two_audit,$one_audit,$crosslist_registered_students,$grades_received,$crosslist_grades_received,$registration_start_date,$registration_end_date,$add_start_date,$add_end_date,$drop_start_date,$drop_end_date,$grading_end_date,$term,$reporting_term,$reporting_year,$current_status,$added_by,$added_date,$changed_by,$changed_date,$timestamp);
    }

    /** @throws Exception */
    public function fromMap($o): void {
        parent::fromMap($o);
        if (isset($o['studentSectionUUID'])) $this->studentSectionUUID = $o['studentSectionUUID'];
        if (isset($o['registered_amount'])) $this->registered_amount = $o['registered_amount'];
        if (isset($o['is_provisional'])) $this->is_provisional = $o['is_provisional'];
        if (isset($o['is_audit'])) $this->is_audit = $o['is_audit'];
    }
    
    /** @throws Exception */
    public function jsonSerialize(): mixed
    {
        $o = parent::jsonSerialize();
        if (isset($this->studentSectionUUID)) $o['studentSectionUUID'] = $this->studentSectionUUID;
        if (isset($this->registered_amount)) $o['registered_amount'] = $this->registered_amount;
        if (isset($this->is_provisional)) $o['is_provisional'] = $this->is_provisional;
        if (isset($this->is_audit)) $o['is_audit'] = $this->is_audit;
        return empty($o) ? new class(){} : $o;
    }
}

class StudentSectionInvoiceItemResponse extends InvoiceItemResponse implements JsonSerializable
{
    /**
     * @param ResponseStatus|null $responseStatus
     * @param string|null $invoiceItemUUID
     * @param int $rate_id
     * @param string|null $rate_code
     * @param string|null $rate_description
     * @param float|null $charge
     * @param float|null $credit
     */
    public function __construct(
        ?ResponseStatus $responseStatus=null,
        ?string $invoiceItemUUID=null,
        int $rate_id=0,
        ?string $rate_code=null,
        ?string $rate_description=null,
        ?float $charge=null,
        ?float $credit=null,
        /** @var StudentSectionResponse|null */
        public ?StudentSectionResponse $studentSection=null
    ) {
        parent::__construct($responseStatus,$invoiceItemUUID,$rate_id,$rate_code,$rate_description,$charge,$credit);
    }

    /** @throws Exception */
    public function fromMap($o): void {
        parent::fromMap($o);
        if (isset($o['studentSection'])) $this->studentSection = JsonConverters::from('StudentSectionResponse', $o['studentSection']);
    }
    
    /** @throws Exception */
    public function jsonSerialize(): mixed
    {
        $o = parent::jsonSerialize();
        if (isset($this->studentSection)) $o['studentSection'] = JsonConverters::to('StudentSectionResponse', $this->studentSection);
        return empty($o) ? new class(){} : $o;
    }
}

class FinanceInvoiceAndCashReceiptsResponse implements JsonSerializable
{
    public function __construct(
        /** @var string|null */
        public ?string $invoiceUUID=null,
        /** @var string|null */
        public ?string $document_id=null,
        /** @var string|null */
        public ?string $document_description=null,
        /** @var DateTime */
        public DateTime $document_date=new DateTime(),
        /** @var int */
        public int $regent_id=0,
        /** @var string|null */
        public ?string $uuid=null,
        /** @var string|null */
        public ?string $reporting_term=null,
        /** @var float|null */
        public ?float $total_charges=null,
        /** @var float|null */
        public ?float $total_credits=null,
        /** @var string|null */
        public ?string $current_status=null,
        /** @var DateTime */
        public DateTime $timestamp=new DateTime(),
        /** @var array<StudentSectionInvoiceItemResponse>|null */
        public ?array $studentSectionInvoiceItems=null,
        /** @var array<InvoiceItemResponse>|null */
        public ?array $otherInvoiceItems=null
    ) {
    }

    /** @throws Exception */
    public function fromMap($o): void {
        if (isset($o['invoiceUUID'])) $this->invoiceUUID = $o['invoiceUUID'];
        if (isset($o['document_id'])) $this->document_id = $o['document_id'];
        if (isset($o['document_description'])) $this->document_description = $o['document_description'];
        if (isset($o['document_date'])) $this->document_date = JsonConverters::from('DateTime', $o['document_date']);
        if (isset($o['regent_id'])) $this->regent_id = $o['regent_id'];
        if (isset($o['uuid'])) $this->uuid = $o['uuid'];
        if (isset($o['reporting_term'])) $this->reporting_term = $o['reporting_term'];
        if (isset($o['total_charges'])) $this->total_charges = $o['total_charges'];
        if (isset($o['total_credits'])) $this->total_credits = $o['total_credits'];
        if (isset($o['current_status'])) $this->current_status = $o['current_status'];
        if (isset($o['timestamp'])) $this->timestamp = JsonConverters::from('DateTime', $o['timestamp']);
        if (isset($o['studentSectionInvoiceItems'])) $this->studentSectionInvoiceItems = JsonConverters::fromArray('StudentSectionInvoiceItemResponse', $o['studentSectionInvoiceItems']);
        if (isset($o['otherInvoiceItems'])) $this->otherInvoiceItems = JsonConverters::fromArray('InvoiceItemResponse', $o['otherInvoiceItems']);
    }
    
    /** @throws Exception */
    public function jsonSerialize(): mixed
    {
        $o = [];
        if (isset($this->invoiceUUID)) $o['invoiceUUID'] = $this->invoiceUUID;
        if (isset($this->document_id)) $o['document_id'] = $this->document_id;
        if (isset($this->document_description)) $o['document_description'] = $this->document_description;
        if (isset($this->document_date)) $o['document_date'] = JsonConverters::to('DateTime', $this->document_date);
        if (isset($this->regent_id)) $o['regent_id'] = $this->regent_id;
        if (isset($this->uuid)) $o['uuid'] = $this->uuid;
        if (isset($this->reporting_term)) $o['reporting_term'] = $this->reporting_term;
        if (isset($this->total_charges)) $o['total_charges'] = $this->total_charges;
        if (isset($this->total_credits)) $o['total_credits'] = $this->total_credits;
        if (isset($this->current_status)) $o['current_status'] = $this->current_status;
        if (isset($this->timestamp)) $o['timestamp'] = JsonConverters::to('DateTime', $this->timestamp);
        if (isset($this->studentSectionInvoiceItems)) $o['studentSectionInvoiceItems'] = JsonConverters::toArray('StudentSectionInvoiceItemResponse', $this->studentSectionInvoiceItems);
        if (isset($this->otherInvoiceItems)) $o['otherInvoiceItems'] = JsonConverters::toArray('InvoiceItemResponse', $this->otherInvoiceItems);
        return empty($o) ? new class(){} : $o;
    }
}

class FinanceAccountReportResponse implements JsonSerializable
{
    public function __construct(
        /** @var ResponseStatus|null */
        public ?ResponseStatus $responseStatus=null,
        /** @var string|null */
        public ?string $first_name=null,
        /** @var string|null */
        public ?string $last_name=null,
        /** @var string|null */
        public ?string $name=null,
        /** @var string|null */
        public ?string $academic_program=null,
        /** @var string|null */
        public ?string $addr1=null,
        /** @var string|null */
        public ?string $addr2=null,
        /** @var string|null */
        public ?string $city=null,
        /** @var string|null */
        public ?string $state=null,
        /** @var string|null */
        public ?string $country=null,
        /** @var string|null */
        public ?string $code=null,
        /** @var int */
        public int $regent_id=0,
        /** @var string|null */
        public ?string $uuid=null,
        /** @var float */
        public float $balance=0.0,
        /** @var array<FinanceInvoiceAndCashReceiptsResponse>|null */
        public ?array $invoices_and_cash_receipts=null,
        /** @var float */
        public float $previous_balance=0.0,
        /** @var float */
        public float $future_balance=0.0,
        /** @var DateTime */
        public DateTime $from_date=new DateTime(),
        /** @var DateTime */
        public DateTime $to_date=new DateTime()
    ) {
    }

    /** @throws Exception */
    public function fromMap($o): void {
        if (isset($o['responseStatus'])) $this->responseStatus = JsonConverters::from('ResponseStatus', $o['responseStatus']);
        if (isset($o['first_name'])) $this->first_name = $o['first_name'];
        if (isset($o['last_name'])) $this->last_name = $o['last_name'];
        if (isset($o['name'])) $this->name = $o['name'];
        if (isset($o['academic_program'])) $this->academic_program = $o['academic_program'];
        if (isset($o['addr1'])) $this->addr1 = $o['addr1'];
        if (isset($o['addr2'])) $this->addr2 = $o['addr2'];
        if (isset($o['city'])) $this->city = $o['city'];
        if (isset($o['state'])) $this->state = $o['state'];
        if (isset($o['country'])) $this->country = $o['country'];
        if (isset($o['code'])) $this->code = $o['code'];
        if (isset($o['regent_id'])) $this->regent_id = $o['regent_id'];
        if (isset($o['uuid'])) $this->uuid = $o['uuid'];
        if (isset($o['balance'])) $this->balance = $o['balance'];
        if (isset($o['invoices_and_cash_receipts'])) $this->invoices_and_cash_receipts = JsonConverters::fromArray('FinanceInvoiceAndCashReceiptsResponse', $o['invoices_and_cash_receipts']);
        if (isset($o['previous_balance'])) $this->previous_balance = $o['previous_balance'];
        if (isset($o['future_balance'])) $this->future_balance = $o['future_balance'];
        if (isset($o['from_date'])) $this->from_date = JsonConverters::from('DateTime', $o['from_date']);
        if (isset($o['to_date'])) $this->to_date = JsonConverters::from('DateTime', $o['to_date']);
    }
    
    /** @throws Exception */
    public function jsonSerialize(): mixed
    {
        $o = [];
        if (isset($this->responseStatus)) $o['responseStatus'] = JsonConverters::to('ResponseStatus', $this->responseStatus);
        if (isset($this->first_name)) $o['first_name'] = $this->first_name;
        if (isset($this->last_name)) $o['last_name'] = $this->last_name;
        if (isset($this->name)) $o['name'] = $this->name;
        if (isset($this->academic_program)) $o['academic_program'] = $this->academic_program;
        if (isset($this->addr1)) $o['addr1'] = $this->addr1;
        if (isset($this->addr2)) $o['addr2'] = $this->addr2;
        if (isset($this->city)) $o['city'] = $this->city;
        if (isset($this->state)) $o['state'] = $this->state;
        if (isset($this->country)) $o['country'] = $this->country;
        if (isset($this->code)) $o['code'] = $this->code;
        if (isset($this->regent_id)) $o['regent_id'] = $this->regent_id;
        if (isset($this->uuid)) $o['uuid'] = $this->uuid;
        if (isset($this->balance)) $o['balance'] = $this->balance;
        if (isset($this->invoices_and_cash_receipts)) $o['invoices_and_cash_receipts'] = JsonConverters::toArray('FinanceInvoiceAndCashReceiptsResponse', $this->invoices_and_cash_receipts);
        if (isset($this->previous_balance)) $o['previous_balance'] = $this->previous_balance;
        if (isset($this->future_balance)) $o['future_balance'] = $this->future_balance;
        if (isset($this->from_date)) $o['from_date'] = JsonConverters::to('DateTime', $this->from_date);
        if (isset($this->to_date)) $o['to_date'] = JsonConverters::to('DateTime', $this->to_date);
        return empty($o) ? new class(){} : $o;
    }
}

class FinanceAccountReportRequest implements JsonSerializable
{
    public function __construct(
        /** @var string|null */
        public ?string $uuid=null,
        /** @var DateTime|null */
        public ?DateTime $from_date=null,
        /** @var DateTime|null */
        public ?DateTime $to_date=null
    ) {
    }

    /** @throws Exception */
    public function fromMap($o): void {
        if (isset($o['uuid'])) $this->uuid = $o['uuid'];
        if (isset($o['from_date'])) $this->from_date = JsonConverters::from('DateTime', $o['from_date']);
        if (isset($o['to_date'])) $this->to_date = JsonConverters::from('DateTime', $o['to_date']);
    }
    
    /** @throws Exception */
    public function jsonSerialize(): mixed
    {
        $o = [];
        if (isset($this->uuid)) $o['uuid'] = $this->uuid;
        if (isset($this->from_date)) $o['from_date'] = JsonConverters::to('DateTime', $this->from_date);
        if (isset($this->to_date)) $o['to_date'] = JsonConverters::to('DateTime', $this->to_date);
        return empty($o) ? new class(){} : $o;
    }
}

PHP FinanceAccountReportRequest DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /Finance/AccountReport/{uuid} HTTP/1.1 
Host: data.regent-college.edu 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	uuid: String,
	from_date: 0001-01-01,
	to_date: 0001-01-01
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	responseStatus: 
	{
		errorCode: String,
		message: String,
		stackTrace: String,
		errors: 
		[
			{
				errorCode: String,
				fieldName: String,
				message: String,
				meta: 
				{
					String: String
				}
			}
		],
		meta: 
		{
			String: String
		}
	},
	first_name: String,
	last_name: String,
	name: String,
	academic_program: String,
	addr1: String,
	addr2: String,
	city: String,
	state: String,
	country: String,
	code: String,
	regent_id: 0,
	uuid: String,
	balance: 0,
	invoices_and_cash_receipts: 
	[
		{
			invoiceUUID: String,
			document_id: String,
			document_description: String,
			document_date: 0001-01-01,
			regent_id: 0,
			uuid: String,
			reporting_term: String,
			total_charges: 0,
			total_credits: 0,
			current_status: String,
			timestamp: 0001-01-01,
			studentSectionInvoiceItems: 
			[
				{
					studentSection: 
					{
						studentSectionUUID: String,
						registered_amount: 0,
						is_provisional: False,
						is_audit: False,
						responseStatus: 
						{
							errorCode: String,
							message: String,
							stackTrace: String,
							errors: 
							[
								{
									errorCode: String,
									fieldName: String,
									message: String,
									meta: 
									{
										String: String
									}
								}
							],
							meta: 
							{
								String: String
							}
						},
						secUUID: String,
						course_name: String,
						section_code: String,
						course_title: String,
						course_short_title: String,
						course_description: String,
						crosslist_description: String,
						crosslist_course_name: String,
						location_long_name: String,
						room: String,
						instructors: 
						[
							{
								responseStatus: 
								{
									errorCode: String,
									message: String,
									stackTrace: String,
									errors: 
									[
										{
											errorCode: String,
											fieldName: String,
											message: String,
											meta: 
											{
												String: String
											}
										}
									],
									meta: 
									{
										String: String
									}
								},
								regent_id: 0,
								regent_login: String,
								preferred_name: String,
								first_name: String,
								last_name: String,
								full_name: String,
								email: String,
								image_base64: String
							}
						],
						required_documents: 
						[
							{
								code: String,
								document_name: String,
								document_description: String
							}
						],
						start_date: 0001-01-01,
						end_date: 0001-01-01,
						first_meeting_date: 0001-01-01,
						last_meeting_date: 0001-01-01,
						meeting_days: String,
						start_times: 
						[
							String
						],
						end_times: 
						[
							String
						],
						is_online_only: False,
						is_weekend: False,
						is_weekday: False,
						is_evening: False,
						is_waitlist: False,
						has_special_requirements: False,
						special_requirements: String,
						is_unlisted: False,
						credit_amounts: 
						[
							0
						],
						audit_amounts: 
						[
							0
						],
						audits_short_name: String,
						audits_long_name: String,
						credits_short_name: String,
						credits_long_name: String,
						distance_ed_materials: String,
						prerequisites: String,
						corequisites: String,
						capacity: 0,
						flat_fee_amount: 0,
						additional_fee_amount: 0,
						registered_students: 0,
						three_credit_plus: 0,
						two_credit: 0,
						one_credit: 0,
						three_audit_plus: 0,
						two_audit: 0,
						one_audit: 0,
						crosslist_registered_students: 0,
						grades_received: 0,
						crosslist_grades_received: 0,
						registration_start_date: 0001-01-01,
						registration_end_date: 0001-01-01,
						add_start_date: 0001-01-01,
						add_end_date: 0001-01-01,
						drop_start_date: 0001-01-01,
						drop_end_date: 0001-01-01,
						grading_end_date: 0001-01-01,
						term: String,
						reporting_term: String,
						reporting_year: 0,
						current_status: String,
						added_by: String,
						added_date: 0001-01-01,
						changed_by: String,
						changed_date: 0001-01-01,
						timestamp: 0001-01-01
					},
					responseStatus: 
					{
						errorCode: String,
						message: String,
						stackTrace: String,
						errors: 
						[
							{
								errorCode: String,
								fieldName: String,
								message: String,
								meta: 
								{
									String: String
								}
							}
						],
						meta: 
						{
							String: String
						}
					},
					invoiceItemUUID: String,
					rate_id: 0,
					rate_code: String,
					rate_description: String,
					charge: 0,
					credit: 0
				}
			],
			otherInvoiceItems: 
			[
				{
					responseStatus: 
					{
						errorCode: String,
						message: String,
						stackTrace: String,
						errors: 
						[
							{
								errorCode: String,
								fieldName: String,
								message: String,
								meta: 
								{
									String: String
								}
							}
						],
						meta: 
						{
							String: String
						}
					},
					invoiceItemUUID: String,
					rate_id: 0,
					rate_code: String,
					rate_description: String,
					charge: 0,
					credit: 0
				}
			]
		}
	],
	previous_balance: 0,
	future_balance: 0,
	from_date: 0001-01-01,
	to_date: 0001-01-01
}