/* Options:
Date: 2025-04-11 20:42:18
Version: 6.40
Tip: To override a DTO option, remove "//" prefix before updating
BaseUrl: https://cip-reporting.chargeitpro.com

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

import 'package:servicestack/servicestack.dart';

// @Route("/Log/Request/{CID}")
// @Route("/Log/Request/{CID}/{SendLogs}")
class LogRequestRequest implements IConvertible
{
    String? CID;
    bool? SendLogs;

    LogRequestRequest({this.CID,this.SendLogs});
    LogRequestRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }

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

    Map<String, dynamic> toJson() => {
        'CID': CID,
        'SendLogs': SendLogs
    };

    getTypeName() => "LogRequestRequest";
    TypeContext? context = _ctx;
}

TypeContext _ctx = TypeContext(library: 'cip_reporting.chargeitpro.com', types: <String, TypeInfo> {
    'LogRequestRequest': TypeInfo(TypeOf.Class, create:() => LogRequestRequest()),
});