(* Options: Date: 2025-04-04 17:08:38 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: GetFeatureFlagRequest.* //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 [] type GetOperationUnTenanted<'TResponse>() = interface IGet member val Embed:String = null with get,set [] type IHasGetOptions = abstract Embed:String with get,set [] type GetFeatureFlagResponse() = member val ResponseStatus:ResponseStatus = null with get,set member val Flag:String = null with get,set member val IsEnabled:Boolean = new Boolean() with get,set [] [] type GetFeatureFlagRequest() = inherit GetOperationUnTenanted() interface IReturn member val Name:String = null with get,set