(* Options: Date: 2025-12-17 01:02:04 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: GetUserLinkRequest.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Geniuslink.Common.Mongo.Models 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 RefreshableMetadata() = member val CreatedDate:DateTime = new DateTime() with get,set member val UpdatedDate:DateTime = new DateTime() with get,set [] type VersionedRefreshableMetadata() = inherit RefreshableMetadata() member val VersionCreatedDate:DateTime = new DateTime() with get,set [] type IUserLink = abstract Url:String with get,set abstract BaseCode:String with get,set abstract LinkType:LinkType with get,set abstract TypeDefinitionPublicId:String with get,set abstract Metadata:VersionedRefreshableMetadata with get,set [] [] type V4BaseResponse() = [] member val ResponseStatus:ResponseStatus = null with get,set [] type IGetUserLinkResponse = abstract Data:IUserLink with get,set [] type IRefreshableMetadata = abstract CreatedDate:DateTime with get,set abstract UpdatedDate:DateTime with get,set [] [] type GetUserLinkResponse() = inherit V4BaseResponse() [] member val Data:IUserLink = null with get,set [] [] [] [] type GetUserLinkRequest() = inherit V4BaseRequest() interface IReturn [] member val Id:String = null with get,set [] member val Username:String = null with get,set [] member val GroupId:UInt32 = new UInt32() with get,set