' Options: 'Date: 2026-06-27 20:27:48 '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: PmJobRequest.* '''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 PmJob Public Overridable Property JobID As Integer Public Overridable Property Name As String Public Overridable Property Description As String Public Overridable Property Status As String Public Overridable Property StartDate As String Public Overridable Property EndDate As String Public Overridable Property CrewCount As Integer Public Overridable Property BudgetedHours As Double Public Overridable Property EquipmentCount As Integer Public Overridable Property MaterialCount As Integer Public Overridable Property CrewCost As Double Public Overridable Property EquipCost As Double Public Overridable Property MatCost As Double Public Overridable Property Cost As Double Public Overridable Property NoCrew As Boolean Public Overridable Property EquipConflict As Boolean Public Overridable Property MaterialGap As Boolean Public Overridable Property ReadyPct As Integer Public Overridable Property Priority As String Public Overridable Property Tags As List(Of String) = New List(Of String) Public Overridable Property Crew As List(Of PmJobCrew) = New List(Of PmJobCrew) Public Overridable Property Equipment As List(Of PmJobResource) = New List(Of PmJobResource) Public Overridable Property Materials As List(Of PmJobResource) = New List(Of PmJobResource) End Class Public Partial Class PmJobCrew Public Overridable Property ContactID As Integer Public Overridable Property Name As String Public Overridable Property Rate As Double Public Overridable Property BudgetedHours As Double Public Overridable Property IsOpen As Boolean End Class Public Partial Class PmJobRequest Implements IReturn(Of PmJobResponse) Public Overridable Property JobID As Integer End Class Public Partial Class PmJobResource Public Overridable Property Id As Integer Public Overridable Property Name As String Public Overridable Property Amount As Double Public Overridable Property Qty As Integer Public Overridable Property Unit As String End Class Public Partial Class PmJobResponse Public Overridable Property Job As PmJob Public Overridable Property ResponseStatus As ResponseStatus 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