(* Options: Date: 2026-04-04 04:54:21 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetTermsDetails.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Eros.Subtle.Canvara.WebAPIModel.ServiceModel open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] [] type ResponseStatus() = [] member val ErrorCode:String = null with get,set [] member val Message:String = null with get,set [] member val StackTrace:String = null with get,set [] member val Errors:ResizeArray = null with get,set [] member val Meta:Dictionary = null with get,set [] type GetTermsDetailsResponse() = /// ///Should Commitment to Safety be displayed? /// [] member val DisplaySafetyCommitment:Boolean = new Boolean() with get,set /// ///Commitment to Safety HTML content. /// [] member val SafetyCommitmentContent:String = null with get,set member val ResponseStatus:ResponseStatus = null with get,set /// ///Retrieve details of the specified terms for the specified licensee and contact. /// [] [] [] [] type GetTermsDetails() = interface IReturn /// ///Accept terms for the specified licensee contact id. /// [] member val LicenseeContactId:Guid = new Guid() with get,set /// ///Terms are being accepted by the specified contact id. /// [] member val ContactId:Guid = new Guid() with get,set /// ///Contact Type e.g Real Person or Real Organisation. Defaults to real person. /// [] member val ContactTypeId:Guid = new Guid() with get,set /// ///Accept terms for the specified appliance id. This is not required for Safety Commitment. /// [] member val ApplianceId:Guid = new Guid() with get,set