/* Options: Date: 2025-04-05 01:29:38 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CommentsSuperAdminUserQuery.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class BaseModel implements IConvertible { BaseModel(); BaseModel.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; getTypeName() => "BaseModel"; TypeContext? context = _ctx; } class CommentsType extends BaseModel implements IConvertible { int? Id; String? Name; String? Description; DateTime? ModifiedDate; CommentsType({this.Id,this.Name,this.Description,this.ModifiedDate}); CommentsType.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); Id = json['Id']; Name = json['Name']; Description = json['Description']; ModifiedDate = JsonConverters.fromJson(json['ModifiedDate'],'DateTime',context!); return this; } Map toJson() => super.toJson()..addAll({ 'Id': Id, 'Name': Name, 'Description': Description, 'ModifiedDate': JsonConverters.toJson(ModifiedDate,'DateTime',context!) }); getTypeName() => "CommentsType"; TypeContext? context = _ctx; } class CompanyComment extends BaseModel implements IConvertible { CommentsType? CommentsType; // @Required() String? CompanyId; int? Id; int? CommentsTypeId; String? Comments; String? CreatedBy; // @Required() DateTime? Created; // @Required() DateTime? Updated; DateTime? ModifiedDate; CompanyComment({this.CommentsType,this.CompanyId,this.Id,this.CommentsTypeId,this.Comments,this.CreatedBy,this.Created,this.Updated,this.ModifiedDate}); CompanyComment.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); CommentsType = JsonConverters.fromJson(json['CommentsType'],'CommentsType',context!); CompanyId = json['CompanyId']; Id = json['Id']; CommentsTypeId = json['CommentsTypeId']; Comments = json['Comments']; CreatedBy = json['CreatedBy']; Created = JsonConverters.fromJson(json['Created'],'DateTime',context!); Updated = JsonConverters.fromJson(json['Updated'],'DateTime',context!); ModifiedDate = JsonConverters.fromJson(json['ModifiedDate'],'DateTime',context!); return this; } Map toJson() => super.toJson()..addAll({ 'CommentsType': JsonConverters.toJson(CommentsType,'CommentsType',context!), 'CompanyId': CompanyId, 'Id': Id, 'CommentsTypeId': CommentsTypeId, 'Comments': Comments, 'CreatedBy': CreatedBy, 'Created': JsonConverters.toJson(Created,'DateTime',context!), 'Updated': JsonConverters.toJson(Updated,'DateTime',context!), 'ModifiedDate': JsonConverters.toJson(ModifiedDate,'DateTime',context!) }); getTypeName() => "CompanyComment"; TypeContext? context = _ctx; } enum CommentsType { NormalComment, CallBackPhoneComment, CallBackEmailComment, CallBackMeetingBookedComment, CallBackNotInterestedComment, } class CommentsTypeResponse implements IConvertible { int? Id; String? Name; String? Description; CommentsTypeResponse({this.Id,this.Name,this.Description}); CommentsTypeResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Id = json['Id']; Name = json['Name']; Description = json['Description']; return this; } Map toJson() => { 'Id': Id, 'Name': Name, 'Description': Description }; getTypeName() => "CommentsTypeResponse"; TypeContext? context = _ctx; } class CompanyCommentsResponse implements IConvertible { // @ApiMember() String? CompanyId; // @ApiMember() int? Id; // @ApiMember(IsRequired=true) String? Comment; // @ApiMember(IsRequired=true) CommentsType? CommentTypeId; // @ApiMember(IsRequired=true) CommentsTypeResponse? CommentType; /** * The updated date */ // @ApiMember(Description="The updated date") DateTime? Updated; /** * The created date */ // @ApiMember(Description="The created date") DateTime? Created; /** * The created by */ // @ApiMember(Description="The created by") String? CreatedBy; CompanyCommentsResponse({this.CompanyId,this.Id,this.Comment,this.CommentTypeId,this.CommentType,this.Updated,this.Created,this.CreatedBy}); CompanyCommentsResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { CompanyId = json['CompanyId']; Id = json['Id']; Comment = json['Comment']; CommentTypeId = JsonConverters.fromJson(json['CommentTypeId'],'CommentsType',context!); CommentType = JsonConverters.fromJson(json['CommentType'],'CommentsTypeResponse',context!); Updated = JsonConverters.fromJson(json['Updated'],'DateTime',context!); Created = JsonConverters.fromJson(json['Created'],'DateTime',context!); CreatedBy = json['CreatedBy']; return this; } Map toJson() => { 'CompanyId': CompanyId, 'Id': Id, 'Comment': Comment, 'CommentTypeId': JsonConverters.toJson(CommentTypeId,'CommentsType',context!), 'CommentType': JsonConverters.toJson(CommentType,'CommentsTypeResponse',context!), 'Updated': JsonConverters.toJson(Updated,'DateTime',context!), 'Created': JsonConverters.toJson(Created,'DateTime',context!), 'CreatedBy': CreatedBy }; getTypeName() => "CompanyCommentsResponse"; TypeContext? context = _ctx; } // @Route("/superadmin/company/{CompanyId}/comments", "GET") // @ApiResponse(Description="", StatusCode=400) // @ApiResponse(Description="Returned if the current user is not allowed to perform the action", StatusCode=401) class CommentsSuperAdminUserQuery extends QueryDb2 implements IReturn>, IConvertible, IGet { /** * Enter the companyId for the customer */ // @ApiMember(Description="Enter the companyId for the customer", IsRequired=true, ParameterType="query") String? CompanyId; // @ApiMember() int? CommentsTypeId; CommentsSuperAdminUserQuery({this.CompanyId,this.CommentsTypeId}); CommentsSuperAdminUserQuery.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); CompanyId = json['CompanyId']; CommentsTypeId = json['CommentsTypeId']; return this; } Map toJson() => super.toJson()..addAll({ 'CompanyId': CompanyId, 'CommentsTypeId': CommentsTypeId }); createResponse() => QueryResponse(); getResponseTypeName() => "QueryResponse"; getTypeName() => "CommentsSuperAdminUserQuery"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'testapi.bokamera.se', types: { 'BaseModel': TypeInfo(TypeOf.Class, create:() => BaseModel()), 'CommentsType': TypeInfo(TypeOf.Class, create:() => CommentsType()), 'CompanyComment': TypeInfo(TypeOf.Class, create:() => CompanyComment()), 'CommentsTypeResponse': TypeInfo(TypeOf.Class, create:() => CommentsTypeResponse()), 'CompanyCommentsResponse': TypeInfo(TypeOf.Class, create:() => CompanyCommentsResponse()), 'QueryResponse': TypeInfo(TypeOf.Class, create:() => QueryResponse()), 'CommentsSuperAdminUserQuery': TypeInfo(TypeOf.Class, create:() => CommentsSuperAdminUserQuery()), 'List': TypeInfo(TypeOf.Class, create:() => []), });