/* Options: Date: 2025-10-27 22:46:56 SwiftVersion: 6.0 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://duengageapi.uat.scadsoftware.com //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: DeleteTableRecordRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/scadmeta/tables/{TablesId}/delete", "DELETE") public class DeleteTableRecordRequest : IReturn, Codable { public typealias Return = Bool /** * Table id */ // @ApiMember(Description="Table id", IsRequired=true) public var tablesId:Int? /** * Parameter list */ // @ApiMember(Description="Parameter list") public var parameterList:[String:String]? /** * Global parameter list */ // @ApiMember(Description="Global parameter list") public var globalParamList:[String:String]? /** * View id */ // @ApiMember(Description="View id") public var viewId:Int? /** * Whether or not to refresh the cache */ // @ApiMember(Description="Whether or not to refresh the cache") public var refreshCache:Bool? required public init(){} }