(* Options: Date: 2024-12-23 11:49:40 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://consumer-api.brovs.com //GlobalNamespace: ConsumerApi //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: AndroidPwaInstallPromptOutcomeRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace ConsumerApi open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations type AndroidPwaInstallPromptOutcome = | Accepted = 0 | Dismissed = 1 type AndroidPwaInstallPromptOutcomeHandled = | Stored = 0 | Cleared = 1 | NoChange = 2 [] type AndroidPwaInstallPromptOutcomeResponse() = member val Handling:AndroidPwaInstallPromptOutcomeHandled = new AndroidPwaInstallPromptOutcomeHandled() with get,set [] [] type AndroidPwaInstallPromptOutcomeRequest() = interface IReturn interface IPost [] member val Outcome:Nullable = new Nullable() with get,set