(* Options: Date: 2025-12-06 08:47:00 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: ReportManagerModuleSaveRequest.* //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 ReportManagerModule() = member val id:Int32 = new Int32() with get,set member val name:String = null with get,set member val text:String = null with get,set member val updated:DateTime = new DateTime() with get,set [] type IReportManagerDocument = interface end [] type ReportManagerSaveDeleteResponse() = member val id:Int32 = new Int32() with get,set [] [] [] type ReportManagerModuleSaveRequest() = inherit ReportManagerModule() interface IReturn