(* Options: Date: 2024-12-15 20:55:50 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: CreateEmployerRequest.* //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 BusinessDetails() = member val TradingName:String = null with get,set member val AustralianBusinessNumber:String = null with get,set member val AustralianCompanyNumber:String = null with get,set [] type Contact() = member val ContactName:String = null with get,set member val Email:String = null with get,set member val PhoneNumber:String = null with get,set member val PreferredContactMethod:String = null with get,set [] type Address() = member val AddressLine1:String = null with get,set member val AddressLine2:String = null with get,set member val Suburb:String = null with get,set member val StateTerritory:String = null with get,set member val Postcode:String = null with get,set [] type Employer() = member val Name:String = null with get,set member val BusinessDetails:BusinessDetails = null with get,set member val Contact:Contact = null with get,set member val PostalAddress:Address = null with get,set member val PhysicalAddress:Address = null with get,set member val Id:String = null with get,set [] type IIdentifiableResource = abstract Id:String with get,set [] type CreateEmployerResponse() = member val ResponseStatus:ResponseStatus = null with get,set member val Employer:Employer = null with get,set [] [] type CreateEmployerRequest() = inherit PostOperationTenanted() interface IReturn member val Name:String = null with get,set