' Options: 'Date: 2025-10-27 21:55:21 'Version: 8.80 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://duengageapi.uat.scadsoftware.com ' '''GlobalNamespace: '''MakePartial: True '''MakeVirtual: True '''MakeDataContractsExtensible: False '''AddReturnMarker: True '''AddDescriptionAsComments: True '''AddDataContractAttributes: False '''AddIndexesToDataMembers: False '''AddGeneratedCodeAttributes: False '''AddResponseStatus: False '''AddImplicitVersion: '''InitializeCollections: False '''ExportValueTypes: False 'IncludeTypes: Files.* '''ExcludeTypes: '''AddNamespaces: '''AddDefaultXmlNamespace: http://schemas.servicestack.net/types Imports System Imports System.IO Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports System.Net Imports System.Net.Http.Headers Imports digitaluapi.ServiceInterface Namespace Global Namespace digitaluapi.ServiceInterface Public Partial Class File Public Overridable Property Name As String Public Overridable Property Extension As String Public Overridable Property FileSizeBytes As Long Public Overridable Property ModifiedDate As Date Public Overridable Property IsTextFile As Boolean End Class Public Partial Class FileResult Public Overridable Property Name As String Public Overridable Property Extension As String Public Overridable Property FileSizeBytes As Long Public Overridable Property ModifiedDate As Date Public Overridable Property IsTextFile As Boolean Public Overridable Property Contents As String End Class Public Partial Class Files Implements IReturn(Of FilesResponse) Public Overridable Property Path As String Public Overridable Property TextContents As String Public Overridable Property ForDownload As Boolean End Class Public Partial Class FilesResponse Public Overridable Property Directory As FolderResult Public Overridable Property File As FileResult Public Overridable Property ResponseStatus As ResponseStatus End Class Public Partial Class Folder Public Overridable Property Name As String Public Overridable Property ModifiedDate As Date Public Overridable Property FileCount As Integer End Class Public Partial Class FolderResult Public Overridable Property Folders As List(Of Folder) Public Overridable Property Files As List(Of File) End Class End Namespace End Namespace