(* Options: Date: 2026-08-10 20:15:33 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: ApplicationPrefillRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace CRM.AgencyPlatform.API.Internal open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Net [] type ApplicationProduct() = member val MaterialID:Int32 = new Int32() with get,set member val ProductName:String = null with get,set member val EpaRegistrationNumber:String = null with get,set member val IsRestrictedUse:Boolean = new Boolean() with get,set member val SignalWord:String = null with get,set member val ReEntryIntervalHours:Nullable = new Nullable() with get,set member val DefaultRate:Nullable = new Nullable() with get,set member val RateUnit:String = null with get,set [] [] 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 = new ResizeArray() with get,set [] member val Meta:Dictionary = new Dictionary() with get,set [] type ApplicationPrefillResponse() = member val Products:ResizeArray = new ResizeArray() with get,set member val ApplicatorContactID:Int32 = new Int32() with get,set member val ApplicatorName:String = null with get,set member val ApplicatorLicence:String = null with get,set member val ResponseStatus:ResponseStatus = null with get,set [] [] type ApplicationPrefillRequest() = interface IReturn member val AgreementJobID:Int32 = new Int32() with get,set member val JobID:Int32 = new Int32() with get,set member val ProjectID:Int32 = new Int32() with get,set