(* 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: GetLinkAffiliationOptionsRequest.* //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 IGetLinkAffiliationOptionsRequest = abstract LinkId:String with get,set [] type LinkAffiliationOptionsResponse() = member val Id:String = null with get,set member val Type:String = null with get,set member val LinkId:String = null with get,set member val AffiliationDisabled:Nullable = new Nullable() with get,set member val CreatedDate:Nullable = new Nullable() with get,set [] type IGetLinkAffiliationOptionsResponse = abstract Data:LinkAffiliationOptionsResponse with get,set [] type ILinkAffiliationOptionsResponse = abstract Id:String with get,set abstract LinkId:String with get,set abstract AffiliationDisabled:Nullable with get,set abstract CreatedDate:Nullable with get,set [] type GetLinkAffiliationOptionsResponse() = member val Data:LinkAffiliationOptionsResponse = null with get,set member val ResponseStatus:ResponseStatus = null with get,set [] [] [] type GetLinkAffiliationOptionsRequest() = interface IReturn [] member val LinkId:String = null with get,set