(* Options: Date: 2025-12-06 05:31:24 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: PostAffiliateTokensSetRequest.* //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 IAffiliateProgram = abstract ProgramGuid:String with get,set abstract AffiliateTokens:IDictionary with get,set [] [] type PostAffiliateTokensSetResponse() = [] member val Success:Boolean = new Boolean() with get,set [] member val AffiliateTokensSetGuid:Guid = new Guid() with get,set [] member val ResponseStatus:ResponseStatus = null with get,set [] [] [] type PostAffiliateTokensSetRequest() = interface IReturn [] member val Username:String = null with get,set [] member val AffiliatePrograms:ResizeArray = null with get,set