/* Options: Date: 2025-10-28 01:25:07 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://duengageapi.uat.scadsoftware.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: SCADFiles.* //ExcludeTypes: //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.*; public class dtos { @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") public static class SCADFiles { /** * File path */ @ApiMember(Description="File path") public String Path = 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") public String TextContents = null; /** * Whether or not you want to download the file. */ @ApiMember(Description="Whether or not you want to download the file.") public Boolean ForDownload = 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") public String Source = null; public String getPath() { return Path; } public SCADFiles setPath(String value) { this.Path = value; return this; } public String getTextContents() { return TextContents; } public SCADFiles setTextContents(String value) { this.TextContents = value; return this; } public Boolean isForDownload() { return ForDownload; } public SCADFiles setForDownload(Boolean value) { this.ForDownload = value; return this; } public String getSource() { return Source; } public SCADFiles setSource(String value) { this.Source = value; return this; } } }