/* Options: Date: 2026-02-05 04:38:11 Version: 10.05 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteReferenceWithReferenceType.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class ReferenceQueryResponse implements IConvertible { String CompanyId = ""; String Id = ""; String OwnerId = ""; String ReferenceType = ""; int ReferenceTypeId = 0; String ExternalData = ""; DateTime Updated = DateTime(0); DateTime Created = DateTime(0); String CreatedBy = ""; String UpdatedBy = ""; ResponseStatus ResponseStatus; ReferenceQueryResponse({this.CompanyId,this.Id,this.OwnerId,this.ReferenceType,this.ReferenceTypeId,this.ExternalData,this.Updated,this.Created,this.CreatedBy,this.UpdatedBy,this.ResponseStatus}); ReferenceQueryResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { CompanyId = json['CompanyId']; Id = json['Id']; OwnerId = json['OwnerId']; ReferenceType = json['ReferenceType']; ReferenceTypeId = json['ReferenceTypeId']; ExternalData = json['ExternalData']; Updated = JsonConverters.fromJson(json['Updated'],'DateTime',context!); Created = JsonConverters.fromJson(json['Created'],'DateTime',context!); CreatedBy = json['CreatedBy']; UpdatedBy = json['UpdatedBy']; ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!); return this; } Map toJson() => { 'CompanyId': CompanyId, 'Id': Id, 'OwnerId': OwnerId, 'ReferenceType': ReferenceType, 'ReferenceTypeId': ReferenceTypeId, 'ExternalData': ExternalData, 'Updated': JsonConverters.toJson(Updated,'DateTime',context!), 'Created': JsonConverters.toJson(Created,'DateTime',context!), 'CreatedBy': CreatedBy, 'UpdatedBy': UpdatedBy, 'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!) }; getTypeName() => "ReferenceQueryResponse"; TypeContext? context = _ctx; } // @Route("/references/{CompanyId}/{OwnerId}/{ReferenceType}", "DELETE") class DeleteReferenceWithReferenceType implements IReturn, IConvertible, IDelete { /** * The company id */ // @ApiMember(Description="The company id", IsRequired=true, ParameterType="path") String CompanyId = ""; /** * Internal Id of the reference. Example could be the Booking Id */ // @ApiMember(Description="Internal Id of the reference. Example could be the Booking Id", ParameterType="path") String OwnerId = ""; /** * Reference type of the reference */ // @ApiMember(Description="Reference type of the reference", ParameterType="path") String ReferenceType = ""; DeleteReferenceWithReferenceType({this.CompanyId,this.OwnerId,this.ReferenceType}); DeleteReferenceWithReferenceType.fromJson(Map json) { fromMap(json); } fromMap(Map json) { CompanyId = json['CompanyId']; OwnerId = json['OwnerId']; ReferenceType = json['ReferenceType']; return this; } Map toJson() => { 'CompanyId': CompanyId, 'OwnerId': OwnerId, 'ReferenceType': ReferenceType }; createResponse() => ReferenceQueryResponse(); getResponseTypeName() => "ReferenceQueryResponse"; getTypeName() => "DeleteReferenceWithReferenceType"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.bokamera.se', types: { 'ReferenceQueryResponse': TypeInfo(TypeOf.Class, create:() => ReferenceQueryResponse()), 'DeleteReferenceWithReferenceType': TypeInfo(TypeOf.Class, create:() => DeleteReferenceWithReferenceType()), });