(* Options: Date: 2024-12-15 21:31:22 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: DistributeContributionRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Application.Interfaces.Resources open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type PostOperationUnTenanted<'TResponse>() = interface IPost [] type PostOperationTenanted<'TResponse>() = inherit PostOperationUnTenanted() member val OrganisationId:String = null with get,set [] type ITenantedRequest = abstract OrganisationId:String with get,set [] type SalarySacrificeBreakdown() = member val LeaseAmount:Nullable = new Nullable() with get,set member val AdministrationFee:Nullable = new Nullable() with get,set member val Fuel:Nullable = new Nullable() with get,set member val Servicing:Nullable = new Nullable() with get,set member val Tyres:Nullable = new Nullable() with get,set member val Insurance:Nullable = new Nullable() with get,set member val CarWash:Nullable = new Nullable() with get,set member val Registration:Nullable = new Nullable() with get,set member val RoadSideAssistance:Nullable = new Nullable() with get,set member val AnythingExtra:Nullable = new Nullable() with get,set [] type ContributionSalaryPackage() = member val PreTaxDeduction:Nullable = new Nullable() with get,set member val PostTaxDeduction:Nullable = new Nullable() with get,set member val SalarySacrificeBreakdown:SalarySacrificeBreakdown = null with get,set member val Id:String = null with get,set [] type IIdentifiableResource = abstract Id:String with get,set [] type DistributeContributionResponse() = member val ResponseStatus:ResponseStatus = null with get,set [] [] type DistributeContributionRequest() = inherit PostOperationTenanted() interface IReturn member val Id:String = null with get,set member val SalaryPackages:ResizeArray = new ResizeArray() with get,set