/* Options: Date: 2025-10-21 20:36:19 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: False //ExportValueTypes: False IncludeTypes: DeleteReferenceWithReferenceType.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.IO; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using System.Globalization; using ServiceStack.Data; using System.Net; using System.Net.Http.Headers; using BokaMera.API.ServiceModel.Dtos; namespace BokaMera.API.ServiceModel.Dtos { [Route("/references/{CompanyId}/{OwnerId}/{ReferenceType}", "DELETE")] public partial class DeleteReferenceWithReferenceType : IReturn { /// ///The company id /// [ApiMember(Description="The company id", IsRequired=true, ParameterType="path")] public virtual Guid CompanyId { get; set; } /// ///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")] public virtual Guid OwnerId { get; set; } /// ///Reference type of the reference /// [ApiMember(Description="Reference type of the reference", ParameterType="path")] public virtual string ReferenceType { get; set; } } public partial class ReferenceQueryResponse { public virtual Guid CompanyId { get; set; } public virtual Guid Id { get; set; } public virtual Guid OwnerId { get; set; } public virtual string ReferenceType { get; set; } public virtual int ReferenceTypeId { get; set; } public virtual string ExternalData { get; set; } public virtual DateTime Updated { get; set; } public virtual DateTime Created { get; set; } public virtual string CreatedBy { get; set; } public virtual string UpdatedBy { get; set; } public virtual ResponseStatus ResponseStatus { get; set; } } }