/* Options: Date: 2026-09-01 02:42:12 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api-stage.smartfarmertech.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: RolesSystemFunctionsAutoQueryDelete.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class RolesSystemFunctions implements IConvertible { // @DataMember(Order=1) // @required() int? id; // @DataMember(Order=2) // @required() // @References(typeof(Roles)) int? rolesId; // @DataMember(Order=3) // @required() // @References(typeof(SystemFunctions)) int? systemFunctionsId; RolesSystemFunctions({this.id,this.rolesId,this.systemFunctionsId}); RolesSystemFunctions.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; rolesId = json['rolesId']; systemFunctionsId = json['systemFunctionsId']; return this; } Map toJson() => { 'id': id, 'rolesId': rolesId, 'systemFunctionsId': systemFunctionsId }; getTypeName() => "RolesSystemFunctions"; TypeContext? context = _ctx; } class RolesSystemFunctionsAutoQueryDelete implements IReturnVoid, IDeleteDb, IConvertible, IDelete { // @DataMember(Order=1) int? id; // @DataMember(Order=5) ResponseStatus? responseStatus; RolesSystemFunctionsAutoQueryDelete({this.id,this.responseStatus}); RolesSystemFunctionsAutoQueryDelete.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!) }; createResponse() {} getTypeName() => "RolesSystemFunctionsAutoQueryDelete"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api_stage.smartfarmertech.com', types: { 'RolesSystemFunctions': TypeInfo(TypeOf.Class, create:() => RolesSystemFunctions()), 'RolesSystemFunctionsAutoQueryDelete': TypeInfo(TypeOf.Class, create:() => RolesSystemFunctionsAutoQueryDelete()), });