/* Options: Date: 2025-12-06 12:12:02 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://sfgboxapi.dev.scadsoftware.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: RolesSystemFunctionsById.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class RolesSystemFunctionsByIdResponse implements IConvertible { // @DataMember(Order=1) int? id; // @DataMember(Order=5) ResponseStatus? responseStatus; RolesSystemFunctionsByIdResponse({this.id,this.responseStatus}); RolesSystemFunctionsByIdResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; responseStatus = JsonConverters.fromJson(json['responseStatus'],'ResponseStatus',context!); return this; } Map toJson() => { 'id': id, 'responseStatus': JsonConverters.toJson(responseStatus,'ResponseStatus',context!) }; getTypeName() => "RolesSystemFunctionsByIdResponse"; TypeContext? context = _ctx; } // @Route("/roles_system_functions/{Id}", "GET") // @DataContract class RolesSystemFunctionsById implements IReturn, IConvertible, IGet { // @DataMember(Order=1) // @Validate(Validator="NotNull") int? id; RolesSystemFunctionsById({this.id}); RolesSystemFunctionsById.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; return this; } Map toJson() => { 'id': id }; createResponse() => RolesSystemFunctionsByIdResponse(); getResponseTypeName() => "RolesSystemFunctionsByIdResponse"; getTypeName() => "RolesSystemFunctionsById"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'sfgboxapi.dev.scadsoftware.com', types: { 'RolesSystemFunctionsByIdResponse': TypeInfo(TypeOf.Class, create:() => RolesSystemFunctionsByIdResponse()), 'RolesSystemFunctionsById': TypeInfo(TypeOf.Class, create:() => RolesSystemFunctionsById()), });