/* Options:
Date: 2025-04-12 17:49:52
Version: 8.22
Tip: To override a DTO option, remove "//" prefix before updating
BaseUrl: https://data.regent-college.edu

//GlobalNamespace: 
//AddServiceStackTypes: True
//AddResponseStatus: False
//AddImplicitVersion: 
//AddDescriptionAsComments: True
IncludeTypes: TranscriptNoteDeleteRequest.*
//ExcludeTypes: 
//DefaultImports: package:servicestack/servicestack.dart,dart:typed_data
*/

import 'package:servicestack/servicestack.dart';
import 'dart:typed_data';

// @Route("/Transcript/{uuid}/Note/{note_id}/Delete", "POST")
class TranscriptNoteDeleteRequest implements IReturn<ResponseStatus>, IConvertible, IPost
{
    String? uuid;
    int? note_id;

    TranscriptNoteDeleteRequest({this.uuid,this.note_id});
    TranscriptNoteDeleteRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        uuid = json['uuid'];
        note_id = json['note_id'];
        return this;
    }

    Map<String, dynamic> toJson() => {
        'uuid': uuid,
        'note_id': note_id
    };

    createResponse() => ResponseStatus();
    getResponseTypeName() => "ResponseStatus";
    getTypeName() => "TranscriptNoteDeleteRequest";
    TypeContext? context = _ctx;
}

TypeContext _ctx = TypeContext(library: 'data.regent_college.edu', types: <String, TypeInfo> {
    'TranscriptNoteDeleteRequest': TypeInfo(TypeOf.Class, create:() => TranscriptNoteDeleteRequest()),
});