(* Options: Date: 2025-12-06 05:29:30 Version: 8.60 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://affiliation-api-zane.dev.platform.georiot.com //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetAffiliateTokensSetRequest.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace AffiliationAPI.ServiceModel.DomainModel open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] [] type AffiliateProgram() = [] member val ProgramGuid:String = null with get,set [] member val AffiliateTokens:IDictionary = null with get,set [] type AffiliateTokens() = member val Id:String = null with get,set member val Programs:ResizeArray = null with get,set member val CreatedAtUtc:DateTime = new DateTime() with get,set member val UpdatedAtUtc:DateTime = new DateTime() with get,set [] type AffiliateTokensSet() = inherit AffiliateTokens() [] member val SetGuid:String = null with get,set [] member val Username:String = null with get,set [] type IAffiliateProgram = abstract ProgramGuid:String with get,set abstract AffiliateTokens:IDictionary with get,set [] type IAffiliateTokens = abstract Id:String with get,set abstract CreatedAtUtc:DateTime with get,set abstract UpdatedAtUtc:DateTime with get,set [] type IAffiliateTokensSet = abstract Username:String with get,set [] [] type GetAffiliateTokensSetResponse() = [] member val AffiliateTokensSet:AffiliateTokensSet = null with get,set [] member val ResponseStatus:ResponseStatus = null with get,set [] [] [] type GetAffiliateTokensSetRequest() = interface IReturn [] member val SetGuid:Guid = new Guid() with get,set