(* Options: Date: 2025-09-01 05:47:47 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://foundrystage-api-app.azurewebsites.net //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetProfileRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Application.Interfaces open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.IO [] type GetOperationUnTenanted<'TResponse>() = interface IGet member val Embed:String = null with get,set [] type IHasGetOptions = abstract Embed:String with get,set [] type PersonName() = member val FirstName:String = null with get,set member val LastName:String = null with get,set [] type ProfileBasic() = member val Name:PersonName = null with get,set member val DisplayName:String = null with get,set member val EmailAddress:String = null with get,set member val PhoneNumber:String = null with get,set member val Timezone:String = null with get,set member val Id:String = null with get,set [] type Profile() = inherit ProfileBasic() member val DefaultOrganisationId:String = null with get,set [] type IIdentifiableResource = abstract Id:String with get,set [] type GetProfileResponse() = member val ResponseStatus:ResponseStatus = null with get,set member val Profile:Profile = null with get,set [] [] type GetProfileRequest() = inherit GetOperationUnTenanted() interface IReturn member val Id:String = null with get,set