(* Options: Date: 2025-09-22 21:01:59 Version: 6.21 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://accounts.dev.healthmonix.com/api/ //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetApplications.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Hmx.Accounts.Models open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type Application() = member val Id:String = null with get,set member val Name:String = null with get,set member val Token:String = null with get,set member val PurchaseUrl:String = null with get,set member val IsActive:Boolean = new Boolean() with get,set [] type GetApplicationsResponse() = member val Results:ResizeArray = new ResizeArray() with get,set [] [] type GetApplications() = interface IReturn member val IsActive:Nullable = new Nullable() with get,set