(* Options: Date: 2025-12-17 04:54:13 Version: 8.60 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://shortlinks-api.qa.platform.georiot.com //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: PostAutopilotOptionsRequest.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Geniuslink.Shortlinks.Contracts.Autopilot open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations type AutopilotFrequency = | Daily = 0 | Hourly = 1 | Once = 2 type AutopilotLevel = | ShortLink = 0 | Group = 1 | Account = 2 [] type IPostAutopilotOptionsRequest = abstract Frequency:Nullable with get,set abstract Level:Nullable with get,set abstract Enabled:Boolean with get,set abstract Identifier:String with get,set abstract ChoicePageOptions:Dictionary with get,set [] type IPostAutopilotOptionsResponse = abstract Success:Boolean with get,set [] [] type PostAutopilotOptionsResponse() = [] member val ResponseStatus:ResponseStatus = null with get,set [] member val Success:Boolean = new Boolean() with get,set [] [] [] type PostAutopilotOptionsRequest() = interface IReturn [] [] member val Frequency:Nullable = new Nullable() with get,set [] [] member val Level:Nullable = new Nullable() with get,set [] [] member val Enabled:Boolean = new Boolean() with get,set [] [] member val Identifier:String = null with get,set [] [] member val ChoicePageOptions:Dictionary = null with get,set