(* Options: Date: 2024-12-15 19:49:47 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://staging-api.billiecart.com.au //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: DeletePaymentRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Infrastructure.Api.Interfaces.ServiceOperations open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type ITenantedRequest = abstract OrganisationId:String with get,set [] type DeleteOperationUnTenanted<'TResponse>() = interface IDelete [] type DeleteOperationTenanted<'TResponse>() = inherit DeleteOperationUnTenanted() member val OrganisationId:String = null with get,set [] type DeletePaymentResponse() = member val ResponseStatus:ResponseStatus = null with get,set [] [] type DeletePaymentRequest() = inherit DeleteOperationTenanted() interface IReturn member val Id:String = null with get,set