/* Options: Date: 2025-10-27 21:33:47 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://duengageapi.uat.scadsoftware.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SCADFiles.* //ExcludeTypes: //DefaultImports: */ // @Route("/files", "GET") // @Route("/files", "POST") // @Route("/files/{Path*}", "GET") // @Route("/files/{Path*}", "POST") // @Route("/files/{Path*}", "DELETE") export class SCADFiles { /** @description File path */ // @ApiMember(Description="File path") public Path: string; /** @description 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") public TextContents: string; /** @description Whether or not you want to download the file. */ // @ApiMember(Description="Whether or not you want to download the file.") public ForDownload: boolean; /** @description 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") public Source: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'SCADFiles'; } public getMethod() { return 'GET'; } public createResponse() {} }