(* Options: Date: 2025-12-06 05:58:27 Version: 8.60 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://affiliation-api-pr-4587.qa.platform.georiot.com //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: PutUserAffiliateTokensRequest.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace AffiliationAPI.ServiceModel.V4.Requests open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type AffiliateTokensRequestBase() = [] member val Username:String = null with get,set [] member val Parameters:Dictionary = null with get,set [] [] type BaseResponse() = [] member val ResponseStatus:ResponseStatus = null with get,set [] [] type PutUserAffiliateTokensResponse() = inherit BaseResponse() [] member val Success:Boolean = new Boolean() with get,set [] member val AffiliateTokensId:String = null with get,set [] [] [] type PutUserAffiliateTokensRequest() = inherit AffiliateTokensRequestBase() interface IReturn [] member val Guid:String = null with get,set