(* Options: Date: 2025-12-18 01:59:33 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: GetAffiliateTokenSetRequest.* //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 RefreshableMetadata() = member val CreatedDate:DateTime = new DateTime() with get,set member val UpdatedDate:DateTime = new DateTime() with get,set [] type ShortLink() = member val BaseCode:String = null with get,set member val Domain:String = null with get,set member val Username:String = null with get,set member val AffiliateTokensSet:Nullable = new Nullable() with get,set member val Metadata:RefreshableMetadata = null with get,set [] type IShortLink = abstract BaseCode:String with get,set abstract Domain:String with get,set abstract Username:String with get,set abstract AffiliateTokensSet:Nullable with get,set [] type IRefreshableMetadata = abstract CreatedDate:DateTime with get,set abstract UpdatedDate:DateTime with get,set [] [] type GetAffiliateTokenSetResponse() = [] member val Result:ShortLink = null with get,set [] member val ResponseStatus:ResponseStatus = null with get,set [] [] [] type GetAffiliateTokenSetRequest() = interface IReturn [] member val BaseCode:String = null with get,set