(* Options: Date: 2026-04-15 21:40:38 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: GetAppleServicesSettingsRequest.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Booklinker.API.ServiceModel.DTOs.AppleServices open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] [] type V2BaseResponse() = [] member val ResponseStatus:ResponseStatus = null with get,set [] [] type V2BaseRequest() = class end type AffiliateSettingsOption = | None = 0 | Custom = 1 | Booklinker = 2 type EnrollmentState = | None = 0 | Pending = 1 | Approved = 2 | Rejected = 3 [] [] type GetAppleServicesSettingsResponseData() = [] member val SelectedOption:AffiliateSettingsOption = new AffiliateSettingsOption() with get,set [] member val Username:String = null with get,set [] member val UserEmail:String = null with get,set [] member val BooklinkerToken:String = null with get,set [] member val CustomToken:String = null with get,set [] member val EnrollmentState:EnrollmentState = new EnrollmentState() with get,set [] [] type GetAppleServicesSettingsResponse() = inherit V2BaseResponse() [] member val Data:GetAppleServicesSettingsResponseData = null with get,set [] [] [] type GetAppleServicesSettingsRequest() = inherit V2BaseRequest() interface IReturn