(* Options: Date: 2025-12-06 06:05:43 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: NotificationAttachmentRequest.* //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 NotificationAttachment() = member val NotificationAttachmentId:Int32 = new Int32() with get,set member val NotificationMessageId:Int32 = new Int32() with get,set member val Attachment:Byte[] = [||] with get,set member val FileName:String = null with get,set member val MimeType:String = null with get,set member val FileSizeInKB:Double = new Double() with get,set member val DateCreated:DateTime = new DateTime() 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 NotificationAttachmentResponse() = member val ResponseStatus:ResponseStatus = null with get,set member val NotificationAttachment:ResizeArray = new ResizeArray() with get,set [] [] [] type NotificationAttachmentRequest() = interface IReturn member val NotificationAttachment:ResizeArray = new ResizeArray() with get,set