(* Options: Date: 2026-04-15 21:18: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: GetIsbnMetadataRequest.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Booklinker.API.Contracts.V1.Requests open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type GetIsbnMetadataRequestBase() = [] member val Isbn:String = null with get,set [] type IGetIsbnMetadataRequest = abstract Isbn:String with get,set [] [] 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 GetProductMetadataResponse() = [] member val ProductMetadata:ProductMetadata = null with get,set [] member val IsSupported:Boolean = new Boolean() with get,set [] member val ResponseStatus:ResponseStatus = null with get,set [] [] [] type GetIsbnMetadataRequest() = inherit GetIsbnMetadataRequestBase() interface IReturn [] [] member val Isbn:String = null with get,set