' Options: 'Date: 2024-12-15 20:53:08 'Version: 6.10 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://staging-api.billiecart.com.au ' '''GlobalNamespace: '''MakePartial: True '''MakeVirtual: True '''MakeDataContractsExtensible: False '''AddReturnMarker: True '''AddDescriptionAsComments: True '''AddDataContractAttributes: False '''AddIndexesToDataMembers: False '''AddGeneratedCodeAttributes: False '''AddResponseStatus: False '''AddImplicitVersion: '''InitializeCollections: True '''ExportValueTypes: False 'IncludeTypes: CreateBookingRequest.* '''ExcludeTypes: '''AddNamespaces: '''AddDefaultXmlNamespace: http://schemas.servicestack.net/types Imports System Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports Infrastructure.Api.Interfaces.ServiceOperations Imports Application.Interfaces.Resources Imports Infrastructure.Api.Interfaces.ServiceOperations.Bookings Namespace Global Namespace Application.Interfaces.Resources Public Partial Class Booking Implements IIdentifiableResource Public Overridable Property StartUtc As Date Public Overridable Property EndUtc As Date Public Overridable Property BorrowerId As String Public Overridable Property CarId As String Public Overridable Property Id As String End Class Public Interface IIdentifiableResource Property Id As String End Interface End Namespace Namespace Infrastructure.Api.Interfaces.ServiceOperations Public Interface ITenantedRequest Property OrganisationId As String End Interface Public Partial Class PostOperationTenanted(Of TResponse) Inherits PostOperationUnTenanted(Of TResponse) Implements ITenantedRequest Public Overridable Property OrganisationId As String End Class Public Partial Class PostOperationUnTenanted(Of TResponse) Implements IPost End Class End Namespace Namespace Infrastructure.Api.Interfaces.ServiceOperations.Bookings Public Partial Class CreateBookingRequest Inherits PostOperationTenanted(Of CreateBookingResponse) Implements IReturn(Of CreateBookingResponse) Public Overridable Property CarId As String Public Overridable Property StartUtc As Date Public Overridable Property EndUtc As Nullable(Of Date) End Class Public Partial Class CreateBookingResponse Public Overridable Property ResponseStatus As ResponseStatus Public Overridable Property Booking As Booking End Class End Namespace End Namespace