(* Options: Date: 2025-12-17 03:19:06 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: PutUserLinkRequest.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Geniuslink.Shortlinks.Constants open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] [] type V4BaseRequest() = class end type LinkType = | None = 0 | Simple = 1 | Split = 2 | Interstitial = 3 | Advanced = 4 | Collection = 5 [] type IPutUserLinkRequest = abstract Id:String with get,set abstract LinkType:LinkType with get,set abstract TypeDefinitionPublicId:String with get,set [] [] type V4BaseResponse() = [] member val ResponseStatus:ResponseStatus = null with get,set [] [] type PutUserLinkResponse() = inherit V4BaseResponse() [] [] [] [] type PutUserLinkRequest() = inherit V4BaseRequest() interface IReturn [] member val Id:String = null with get,set [] member val LinkType:LinkType = new LinkType() with get,set [] member val TypeDefinitionPublicId:String = null with get,set