(* Options: Date: 2026-04-15 21:24:19 Version: 8.60 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://api.booklinker.com //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: PostPendingLinkRequest.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Booklinker.API.ServiceModel.V1.DTOs open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] [] type ProductMetadata() = [] member val Title:String = null with get,set [] member val Author:String = null with get,set [] member val Url:Uri = null with get,set [] member val Description:String = null with get,set [] member val Retailer:String = null with get,set [] member val ProductImages:IDictionary = null with get,set [] [] type ProductMetadata() = inherit ProductMetadata() [] [] type PostPendingLinkResponse() = [] member val Url:String = null with get,set [] member val ProductMetadata:ProductMetadata = null with get,set [] member val Domain:String = null with get,set [] member val Code:String = null with get,set [] member val BaseDomain:String = null with get,set [] member val BaseCode:String = null with get,set [] member val ResponseStatus:ResponseStatus = null with get,set [] [] [] type PostPendingLinkRequest() = interface IReturn [] [] member val Token:String = null with get,set