/* Options: Date: 2025-10-27 21:34:05 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://duengageapi.uat.scadsoftware.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SCADFiles.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/files", Verbs="GET") // @Route(Path="/files", Verbs="POST") // @Route(Path="/files/{Path*}", Verbs="GET") // @Route(Path="/files/{Path*}", Verbs="POST") // @Route(Path="/files/{Path*}", Verbs="DELETE") open class SCADFiles { /** * File path */ @ApiMember(Description="File path") open var Path:String? = null /** * Contents of a file. NOTE: This is not yet supported in the API */ @ApiMember(Description="Contents of a file. NOTE: This is not yet supported in the API") open var TextContents:String? = null /** * Whether or not you want to download the file. */ @ApiMember(Description="Whether or not you want to download the file.") open var ForDownload:Boolean? = null /** * Where the files are hosted. If the source is not specified, your default source will be used */ @ApiMember(Description="Where the files are hosted. If the source is not specified, your default source will be used") open var Source:String? = null }