' Options: 'Date: 2026-04-30 21:08:47 'Version: 6.110 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://etc-api.vsmlab.vn ' '''GlobalNamespace: '''MakePartial: True '''MakeVirtual: True '''MakeDataContractsExtensible: False '''AddReturnMarker: True '''AddDescriptionAsComments: True '''AddDataContractAttributes: False '''AddIndexesToDataMembers: False '''AddGeneratedCodeAttributes: False '''AddResponseStatus: False '''AddImplicitVersion: '''InitializeCollections: True '''ExportValueTypes: False 'IncludeTypes: SearchPurchaseHistoryRequest.* '''ExcludeTypes: '''AddNamespaces: '''AddDefaultXmlNamespace: http://schemas.servicestack.net/types Imports System Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports ServiceStack.Web Imports System.IO Imports tvpl.api.ServiceModel Namespace Global Namespace tvpl.api.ServiceModel Public Partial Class PageResponse(Of PurchaseHistory) Implements IResponseRequest Public Sub New() Data = New List(Of PurchaseHistory) End Sub Public Overridable Property Code As Integer Public Overridable Property Message As String Public Overridable Property Data As List(Of PurchaseHistory) Public Overridable Property Pagination As Pagination End Class Public Partial Class PagingRequest Public Overridable Property Page As Integer Public Overridable Property Limit As Integer End Class Public Partial Class SearchPurchaseHistoryRequest Inherits PagingRequest Implements IReturn(Of PageResponse(Of PurchaseHistory)) Public Overridable Property Name As String Public Overridable Property WorkflowId As Nullable(Of Integer) Public Overridable Property EquipmentId As Nullable(Of Integer) Public Overridable Property ProviderId As Nullable(Of Integer) Public Overridable Property CreatedFrom As Nullable(Of Date) Public Overridable Property CreatedTo As Nullable(Of Date) Public Overridable Property OnlyMissingEquipment As Nullable(Of Boolean) End Class End Namespace End Namespace