(* Options: Date: 2025-09-03 20:01:22 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: GetOrganisationMembershipRequest.* //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 ITenantedRequest = abstract OrganisationId:String with get,set [] type GetOperationTenanted<'TResponse>() = inherit GetOperationUnTenanted() member val OrganisationId:String = null with get,set type AccountType = | Person = 0 | Machine = 1 [] type OrganisationMembership() = member val UserEmailAddress:String = null with get,set member val UserId:String = null with get,set member val OrganisationId:String = null with get,set member val AccountType:AccountType = new AccountType() with get,set member val IsOwner:Boolean = new Boolean() with get,set member val IsConfirmed:Boolean = new Boolean() with get,set member val Roles:ResizeArray = new ResizeArray() with get,set member val Id:String = null with get,set [] type IIdentifiableResource = abstract Id:String with get,set [] type GetOrganisationMembershipResponse() = member val ResponseStatus:ResponseStatus = null with get,set member val Membership:OrganisationMembership = null with get,set [] [] type GetOrganisationMembershipRequest() = inherit GetOperationTenanted() interface IReturn member val UserId:String = null with get,set