' Options: 'Date: 2026-08-01 07:54:24 'Version: 8.80 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://api.dev.dynamics.trendsic.com ' '''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: ProjectEquipmentRequest.* '''ExcludeTypes: '''AddNamespaces: '''AddDefaultXmlNamespace: http://schemas.servicestack.net/types Imports System Imports System.IO Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports System.Net Imports CRM.AgencyPlatform.API.Internal Namespace Global Namespace CRM.AgencyPlatform.API.Internal Public Partial Class Equipment Public Overridable Property EquipmentID As Integer Public Overridable Property EquipmentName As String Public Overridable Property EquipmentTypeID As Short Public Overridable Property Manufacturer As String Public Overridable Property EquipmentType As String Public Overridable Property SerialNumber As String Public Overridable Property BarCode As String Public Overridable Property EquipmentLocation As String Public Overridable Property ImageURL As String Public Overridable Property ProductDetailsURL As String Public Overridable Property RecordCreatedDate As Date Public Overridable Property CreatedByUID As Guid Public Overridable Property Active As Boolean Public Overridable Property Notes As String Public Overridable Property Rate As Decimal Public Overridable Property BranchId As Guid Public Overridable Property BranchName As String Public Overridable Property Ownership As String Public Overridable Property RentalVendor As String Public Overridable Property RentalStart As Date? Public Overridable Property RentalEnd As Date? Public Overridable Property Projects As List(Of Project) = New List(Of Project) End Class Public Partial Class Location Public Overridable Property Id As Guid Public Overridable Property ClientId As Guid Public Overridable Property Name As String Public Overridable Property Address1 As String Public Overridable Property Address2 As String Public Overridable Property City As String Public Overridable Property State As String Public Overridable Property Zip As String Public Overridable Property Phone As String Public Overridable Property Fax As String Public Overridable Property URL As String Public Overridable Property Email As String Public Overridable Property TimeZone As String Public Overridable Property Active As Boolean Public Overridable Property EntDate As Date Public Overridable Property ModDate As Date Public Overridable Property LocationImage As String End Class Public Partial Class Project Public Overridable Property ProjectID As Integer Public Overridable Property ProjectUID As Guid Public Overridable Property ProjectName As String Public Overridable Property ImageURL As String Public Overridable Property ImageKey As String Public Overridable Property ClientName As String Public Overridable Property ClientPhone As String Public Overridable Property ClientEmail As String Public Overridable Property NotifyCustomerOnVisitCompletion As Boolean Public Overridable Property ClientContactID As Integer? Public Overridable Property ProjectManagerID As Integer Public Overridable Property ProjectManagerName As String Public Overridable Property StartDate As Date? Public Overridable Property EndDate As Date? Public Overridable Property ActualStartDate As Date? Public Overridable Property ActualEndDate As Date? Public Overridable Property JobCount As Integer Public Overridable Property CrewMemberCount As Integer Public Overridable Property CrewAvatarsJson As String Public Overridable Property CrewNamesSearch As String Public Overridable Property EquipmentCount As Integer Public Overridable Property MaterialCount As Integer Public Overridable Property ProjectStatusID As Short Public Overridable Property ProjectStatusDescription As String Public Overridable Property Budget As Decimal Public Overridable Property CostToDate As Decimal Public Overridable Property ProjectLocation As String Public Overridable Property ProjectType As String Public Overridable Property ProjectSponsor As String Public Overridable Property CreatedBy As String Public Overridable Property CreatedAt As Date? Public Overridable Property UpdatedAt As Date? Public Overridable Property ProjectDescription As String Public Overridable Property Scope As String Public Overridable Property StatusId As Integer Public Overridable Property BranchId As Guid Public Overridable Property BranchName As String Public Overridable Property Location As Location End Class Public Partial Class ProjectEquipment Inherits Equipment Public Overridable Property ProjectEquipmentID As Integer Public Overridable Property ProjectID As Integer Public Overridable Property ProjectEndDate As Date Public Overridable Property FirstJobUseDate As Date Public Overridable Property LastJobUseDate As Date Public Overridable Property EquipmentRate As Decimal Public Overridable Property JobID As Integer Public Overridable Property BilledEquipmentRate As Decimal Public Overridable Property Status As String Public Overridable Property Source As String Public Overridable Property OverlapBookings As Integer Public Overridable Property HasBookingConflict As Boolean Public Overridable Property ConflictJobs As String End Class Public Partial Class ProjectEquipmentRequest Implements IReturn(Of ProjectEquipmentResponse) Public Overridable Property ProjectEquipmentID As Integer Public Overridable Property ProjectEquipment As List(Of ProjectEquipment) = New List(Of ProjectEquipment) End Class Public Partial Class ProjectEquipmentResponse Public Overridable Property ResponseStatus As ResponseStatus Public Overridable Property ProjectEquipment As List(Of ProjectEquipment) = New List(Of ProjectEquipment) End Class End Namespace Namespace ServiceStack Public Partial Class ResponseStatus Implements IMeta Public Overridable Property ErrorCode As String Public Overridable Property Message As String Public Overridable Property StackTrace As String Public Overridable Property Errors As List(Of ResponseError) = New List(Of ResponseError) Public Overridable Property Meta As Dictionary(Of String, String) Implements IMeta.Meta = New Dictionary(Of String, String) End Class End Namespace End Namespace