(* Options: Date: 2025-12-06 05:56:33 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: PostLinkAffiliationOptionsRequest.* //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 IPostLinkAffiliationOptionsRequest = abstract LinkId:String with get,set abstract AffiliationDisabled:Boolean with get,set [] type IPostLinkAffiliationOptionsResponse = abstract Id:String with get,set [] type PostLinkAffiliationOptionsResponse() = [] member val Id:String = null with get,set member val ResponseStatus:ResponseStatus = null with get,set [] [] [] type PostLinkAffiliationOptionsRequest() = interface IReturn [] member val LinkId:String = null with get,set [] member val AffiliationDisabled:Boolean = new Boolean() with get,set