(* Options: Date: 2025-10-27 21:30:47 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://duengageapi.uat.scadsoftware.com //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetTablePrimaryKeysRequest.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace digitaluapi.ServiceModel open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Net open System.Net.Http.Headers [] type Paging() = member val PageNumber:Int32 = new Int32() with get,set member val PageSize:Int32 = new Int32() with get,set [] [] type GetTablePrimaryKeysRequest() = interface IReturn> /// ///Table id /// [] member val TablesId:Int32 = new Int32() with get,set /// ///Parameter list /// [] member val ParameterList:Dictionary = null with get,set /// ///Filter list /// [] member val FilterList:Dictionary = null with get,set /// ///Number of items to be returned per page /// [] member val Paging:Paging = null with get,set member val FromId:Int32 = new Int32() with get,set /// ///Drill down filter list /// [] member val DrillDownFilterList:Dictionary = null with get,set /// ///Global parameter list /// [] member val GlobalParamList:Dictionary = null with get,set /// ///View id /// [] member val ViewId:Nullable = new Nullable() with get,set /// ///Whether or not to refresh the cache /// [] member val RefreshCache:Boolean = new Boolean() with get,set