├── .editorconfig ├── README.md ├── VERSION ├── composer.json ├── pint.json └── src ├── Api ├── Client.php └── Token.php ├── Exceptions ├── MalformedRequest.php └── NoLoggedInUser.php ├── Laravel ├── ConnectWiseMemberIdFromEmail.php ├── Facades │ └── ConnectWise.php └── ServiceProvider.php ├── Models ├── v2018_4 │ ├── Company │ │ ├── ActivityStatusReference.php │ │ ├── ActivityTypeReference.php │ │ ├── AddressFormat.php │ │ ├── AddressFormatReference.php │ │ ├── AgreementReference.php │ │ ├── AgreementTypeReference.php │ │ ├── BillingDeliveryReference.php │ │ ├── BillingTermsReference.php │ │ ├── CalendarReference.php │ │ ├── CatalogItemReference.php │ │ ├── ClearPickerRequest.php │ │ ├── CommunicationTypeReference.php │ │ ├── Company.php │ │ ├── CompanyCustomNote.php │ │ ├── CompanyGroup.php │ │ ├── CompanyManagementSummary.php │ │ ├── CompanyMerge.php │ │ ├── CompanyNote.php │ │ ├── CompanyPickerItem.php │ │ ├── CompanyReference.php │ │ ├── CompanySite.php │ │ ├── CompanyStatus.php │ │ ├── CompanyStatusReference.php │ │ ├── CompanyTeam.php │ │ ├── CompanyType.php │ │ ├── CompanyTypeReference.php │ │ ├── Configuration.php │ │ ├── ConfigurationQuestion.php │ │ ├── ConfigurationStatus.php │ │ ├── ConfigurationStatusReference.php │ │ ├── ConfigurationType.php │ │ ├── ConfigurationTypeQuestion.php │ │ ├── ConfigurationTypeQuestionReference.php │ │ ├── ConfigurationTypeQuestionValue.php │ │ ├── ConfigurationTypeReference.php │ │ ├── Contact.php │ │ ├── ContactCommunication.php │ │ ├── ContactCommunicationItem.php │ │ ├── ContactDepartment.php │ │ ├── ContactDepartmentReference.php │ │ ├── ContactGroup.php │ │ ├── ContactNote.php │ │ ├── ContactReference.php │ │ ├── ContactRelationship.php │ │ ├── ContactType.php │ │ ├── ContactTypeReference.php │ │ ├── Count.php │ │ ├── Country.php │ │ ├── CountryReference.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── EntityType.php │ │ ├── EntityTypeReference.php │ │ ├── Error.php │ │ ├── GroupReference.php │ │ ├── Guid.php │ │ ├── IntegratorLoginReference.php │ │ ├── InvoiceTemplateReference.php │ │ ├── IvItemReference.php │ │ ├── KaseyaKey.php │ │ ├── ManagedDevicesIntegration.php │ │ ├── ManagedDevicesIntegrationCrossReference.php │ │ ├── ManagedDevicesIntegrationLogin.php │ │ ├── ManagedDevicesIntegrationNotification.php │ │ ├── ManagedDevicesIntegrationReference.php │ │ ├── Management.php │ │ ├── ManagementBackup.php │ │ ├── ManagementItSolution.php │ │ ├── ManagementItSolutionAgreementInterfaceParameter.php │ │ ├── ManagementLogDocumentInfo.php │ │ ├── ManagementReportNotification.php │ │ ├── ManagementSolutionReference.php │ │ ├── ManufacturerReference.php │ │ ├── MarketDescription.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── NoteType.php │ │ ├── NoteTypeReference.php │ │ ├── NotificationRecipientReference.php │ │ ├── OpportunityStatusReference.php │ │ ├── OwnershipType.php │ │ ├── OwnershipTypeReference.php │ │ ├── PatchOperation.php │ │ ├── PortalConfiguration.php │ │ ├── PortalConfigurationInvoiceSetup.php │ │ ├── PortalConfigurationOpportunitySetup.php │ │ ├── PortalConfigurationPasswordEmailSetup.php │ │ ├── PortalConfigurationPaymentProcessor.php │ │ ├── PortalConfigurationPaymentProcessorReference.php │ │ ├── PortalConfigurationProjectSetup.php │ │ ├── PortalConfigurationReference.php │ │ ├── PortalConfigurationServiceSetup.php │ │ ├── PortalSecurity.php │ │ ├── PortalSecurityLevel.php │ │ ├── PortalSecuritySetting.php │ │ ├── PricingScheduleReference.php │ │ ├── RelationshipReference.php │ │ ├── RequestPasswordRequest.php │ │ ├── SLAReference.php │ │ ├── ServiceSignoffReference.php │ │ ├── ServiceTemplateReference.php │ │ ├── SicCodeReference.php │ │ ├── SiteReference.php │ │ ├── State.php │ │ ├── SuccessResponse.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TaxCodeReference.php │ │ ├── TeamRole.php │ │ ├── TeamRoleReference.php │ │ ├── TimeZoneSetupReference.php │ │ ├── Track.php │ │ ├── TrackAction.php │ │ ├── TrackReference.php │ │ ├── ValidatePortalRequest.php │ │ ├── ValidatePortalResponse.php │ │ └── ValidationError.php │ ├── Expense │ │ ├── AgreementReference.php │ │ ├── AuditSource.php │ │ ├── AuditType.php │ │ ├── Classification.php │ │ ├── ClassificationReference.php │ │ ├── CompanyReference.php │ │ ├── Count.php │ │ ├── CustomFieldValue.php │ │ ├── Error.php │ │ ├── ExpenseEntry.php │ │ ├── ExpenseEntryAudit.php │ │ ├── ExpenseReport.php │ │ ├── ExpenseReportAudit.php │ │ ├── ExpenseReportReference.php │ │ ├── ExpenseTax.php │ │ ├── ExpenseTaxTypeReference.php │ │ ├── ExpenseType.php │ │ ├── ExpenseTypeExternalIntegrationReference.php │ │ ├── ExpenseTypeReference.php │ │ ├── ExternalExpenseTypeIntegrationReference.php │ │ ├── Guid.php │ │ ├── InvoiceReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── PatchOperation.php │ │ ├── PaymentMethodReference.php │ │ ├── PaymentType.php │ │ ├── SuccessResponse.php │ │ └── ValidationError.php │ ├── Finance │ │ ├── AccountingBatch.php │ │ ├── AccountingPackage.php │ │ ├── Addition.php │ │ ├── Adjustment.php │ │ ├── Agreement.php │ │ ├── AgreementBatchSetup.php │ │ ├── AgreementReference.php │ │ ├── AgreementSite.php │ │ ├── AgreementType.php │ │ ├── AgreementTypeBoardDefault.php │ │ ├── AgreementTypeReference.php │ │ ├── AgreementTypeWorkRole.php │ │ ├── AgreementTypeWorkRoleExclusion.php │ │ ├── AgreementTypeWorkType.php │ │ ├── AgreementTypeWorkTypeExclusion.php │ │ ├── AgreementWorkRole.php │ │ ├── AgreementWorkRoleExclusion.php │ │ ├── AgreementWorkType.php │ │ ├── AgreementWorkTypeExclusion.php │ │ ├── BillingCycle.php │ │ ├── BillingCycleReference.php │ │ ├── BillingSetup.php │ │ ├── BillingSetupRouting.php │ │ ├── BillingStatus.php │ │ ├── BillingStatusReference.php │ │ ├── BillingTerm.php │ │ ├── BillingTermsReference.php │ │ ├── BoardDefault.php │ │ ├── BoardReference.php │ │ ├── ChargeCodeReference.php │ │ ├── ClassificationReference.php │ │ ├── ClosedInvoice.php │ │ ├── CompanyReference.php │ │ ├── CompanyTypeReference.php │ │ ├── ConfigurationReference.php │ │ ├── ContactReference.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── CreateAccountingBatchRequest.php │ │ ├── Currency.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── DeliveryMethod.php │ │ ├── EmailTemplateReference.php │ │ ├── Error.php │ │ ├── ExpenseTypeExemption.php │ │ ├── ExpenseTypeReference.php │ │ ├── ExportAccountingBatchRequest.php │ │ ├── GLExport.php │ │ ├── GLExportAdjustmentTransaction.php │ │ ├── GLExportAdjustmentTransactionDetail.php │ │ ├── GLExportCustomer.php │ │ ├── GLExportExpense.php │ │ ├── GLExportExpenseBill.php │ │ ├── GLExportExpenseBillDetail.php │ │ ├── GLExportExpenseOffset.php │ │ ├── GLExportInventoryTransfer.php │ │ ├── GLExportInventoryTransferOffset.php │ │ ├── GLExportPurchaseTransaction.php │ │ ├── GLExportPurchaseTransactionDetail.php │ │ ├── GLExportPurchaseTransactionDetailTax.php │ │ ├── GLExportSettings.php │ │ ├── GLExportTransaction.php │ │ ├── GLExportTransactionDetail.php │ │ ├── GLExportVendor.php │ │ ├── Invoice.php │ │ ├── InvoiceEmailTemplate.php │ │ ├── InvoiceReference.php │ │ ├── InvoiceTemplate.php │ │ ├── InvoiceTemplateReference.php │ │ ├── InvoiceTemplateSetup.php │ │ ├── IvItemReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── OpportunityReference.php │ │ ├── PatchOperation.php │ │ ├── Payment.php │ │ ├── PaymentMethodReference.php │ │ ├── ProductReference.php │ │ ├── ProductSubCategoryReference.php │ │ ├── ProductTypeExemption.php │ │ ├── ProductTypeReference.php │ │ ├── ProjectPhaseReference.php │ │ ├── ProjectReference.php │ │ ├── ProjectTypeReference.php │ │ ├── PurchaseOrderReference.php │ │ ├── SLAReference.php │ │ ├── ServiceSurveyReference.php │ │ ├── ServiceTypeReference.php │ │ ├── ShipmentMethodReference.php │ │ ├── SiteReference.php │ │ ├── StateReference.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TaxCode.php │ │ ├── TaxCodeReference.php │ │ ├── TaxCodeXRef.php │ │ ├── TaxIntegration.php │ │ ├── TicketReference.php │ │ ├── TimeEntryReference.php │ │ ├── UnitOfMeasureReference.php │ │ ├── UnpostedExpense.php │ │ ├── UnpostedInvoice.php │ │ ├── UnpostedProcurement.php │ │ ├── ValidationError.php │ │ ├── WarehouseBinReference.php │ │ ├── WarehouseReference.php │ │ ├── WorkRoleExemption.php │ │ ├── WorkRoleReference.php │ │ └── WorkTypeReference.php │ ├── Internal │ │ ├── AgreementReference.php │ │ ├── AuditTrailEntryInsertRequest.php │ │ ├── AuditTrailObjects.php │ │ ├── ChargeToReference.php │ │ ├── ClassificationReference.php │ │ ├── CompanyReference.php │ │ ├── Count.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── Error.php │ │ ├── ExpenseEntryInternal.php │ │ ├── ExpenseReportReference.php │ │ ├── ExpenseTax.php │ │ ├── ExpenseTaxTypeReference.php │ │ ├── ExpenseTypeReference.php │ │ ├── Guid.php │ │ ├── IntegrationRequest.php │ │ ├── InvoiceReference.php │ │ ├── JObject.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── PatchOperation.php │ │ ├── PaymentMethodReference.php │ │ ├── Product.php │ │ ├── Session.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TicketReference.php │ │ ├── TimeEntryInternal.php │ │ ├── TimeSheetReference.php │ │ ├── UploadToMarketplaceRequest.php │ │ ├── ValidationError.php │ │ ├── WorkRoleReference.php │ │ └── WorkTypeReference.php │ ├── Marketing │ │ ├── ActivityReference.php │ │ ├── Campaign.php │ │ ├── CampaignAudit.php │ │ ├── CampaignStatus.php │ │ ├── CampaignStatusReference.php │ │ ├── CampaignSubType.php │ │ ├── CampaignSubTypeReference.php │ │ ├── CampaignType.php │ │ ├── CampaignTypeReference.php │ │ ├── Count.php │ │ ├── EmailOpened.php │ │ ├── Error.php │ │ ├── FormSubmitted.php │ │ ├── Group.php │ │ ├── GroupReference.php │ │ ├── LinkClicked.php │ │ ├── MarketingCompany.php │ │ ├── MarketingContact.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── OpportunityReference.php │ │ ├── PatchOperation.php │ │ └── ValidationError.php │ ├── Procurement │ │ ├── Adjustment.php │ │ ├── AdjustmentDetail.php │ │ ├── AdjustmentReference.php │ │ ├── AdjustmentType.php │ │ ├── AdjustmentTypeReference.php │ │ ├── AgreementReference.php │ │ ├── BillingCycleReference.php │ │ ├── BillingTermsReference.php │ │ ├── CatalogComponent.php │ │ ├── CatalogItem.php │ │ ├── CatalogItemReference.php │ │ ├── Category.php │ │ ├── CompanyReference.php │ │ ├── ContactReference.php │ │ ├── Conversion.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── EntityTypeReference.php │ │ ├── Error.php │ │ ├── InventoryByWarehouse.php │ │ ├── IvItemReference.php │ │ ├── LegacySubCategory.php │ │ ├── Manufacturer.php │ │ ├── ManufacturerReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── NotificationRecipientReference.php │ │ ├── OpportunityStatusReference.php │ │ ├── PatchOperation.php │ │ ├── PricingBreak.php │ │ ├── PricingDetail.php │ │ ├── PricingSchedule.php │ │ ├── ProcurementSetting.php │ │ ├── ProductCategoryReference.php │ │ ├── ProductComponent.php │ │ ├── ProductDetach.php │ │ ├── ProductItem.php │ │ ├── ProductItemReference.php │ │ ├── ProductPickingShippingDetail.php │ │ ├── ProductRecurring.php │ │ ├── ProductSubCategoryReference.php │ │ ├── ProductType.php │ │ ├── ProductTypeReference.php │ │ ├── PurchaseOrder.php │ │ ├── PurchaseOrderLineItem.php │ │ ├── PurchaseOrderStatus.php │ │ ├── PurchaseOrderStatusEmailTemplate.php │ │ ├── PurchaseOrderStatusEmailTemplateReference.php │ │ ├── PurchaseOrderStatusNotification.php │ │ ├── PurchaseOrderStatusReference.php │ │ ├── RmaAction.php │ │ ├── RmaDisposition.php │ │ ├── RmaStatus.php │ │ ├── RmaStatusEmailTemplate.php │ │ ├── RmaStatusEmailTemplateReference.php │ │ ├── RmaStatusNotification.php │ │ ├── RmaStatusReference.php │ │ ├── SLAReference.php │ │ ├── ShipmentMethod.php │ │ ├── ShipmentMethodReference.php │ │ ├── SiteReference.php │ │ ├── SubCategory.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TaxCodeReference.php │ │ ├── UnitOfMeasure.php │ │ ├── UnitOfMeasureReference.php │ │ ├── ValidationError.php │ │ ├── Warehouse.php │ │ ├── WarehouseBin.php │ │ ├── WarehouseBinReference.php │ │ └── WarehouseReference.php │ ├── Project │ │ ├── AgreementReference.php │ │ ├── BillingTermsReference.php │ │ ├── CompanyReference.php │ │ ├── ContactReference.php │ │ ├── Count.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── Error.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── NoteTypeReference.php │ │ ├── OpportunityReference.php │ │ ├── PatchOperation.php │ │ ├── PhaseStatusReference.php │ │ ├── Project.php │ │ ├── ProjectBoardReference.php │ │ ├── ProjectBoardTeam.php │ │ ├── ProjectBoardTeamMember.php │ │ ├── ProjectContact.php │ │ ├── ProjectNote.php │ │ ├── ProjectPhase.php │ │ ├── ProjectPhaseReference.php │ │ ├── ProjectRoleReference.php │ │ ├── ProjectSecurityRole.php │ │ ├── ProjectSecurityRoleSetting.php │ │ ├── ProjectStatus.php │ │ ├── ProjectStatusReference.php │ │ ├── ProjectTeamMember.php │ │ ├── ProjectType.php │ │ ├── ProjectTypeReference.php │ │ ├── SiteReference.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TaxCodeReference.php │ │ ├── ValidationError.php │ │ └── WorkRoleReference.php │ ├── Sales │ │ ├── Activity.php │ │ ├── ActivityStatus.php │ │ ├── ActivityStatusReference.php │ │ ├── ActivityType.php │ │ ├── ActivityTypeReference.php │ │ ├── Agreement.php │ │ ├── AgreementReference.php │ │ ├── AgreementTypeReference.php │ │ ├── BillingTermsReference.php │ │ ├── BoardReference.php │ │ ├── CampaignReference.php │ │ ├── Commission.php │ │ ├── CompanyReference.php │ │ ├── ContactReference.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── Error.php │ │ ├── Forecast.php │ │ ├── Guid.php │ │ ├── IvItemReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── NoteTypeReference.php │ │ ├── NotificationRecipientReference.php │ │ ├── Opportunity.php │ │ ├── OpportunityContact.php │ │ ├── OpportunityNote.php │ │ ├── OpportunityPriorityReference.php │ │ ├── OpportunityProbabilityReference.php │ │ ├── OpportunityRating.php │ │ ├── OpportunityRatingReference.php │ │ ├── OpportunityReference.php │ │ ├── OpportunitySalesRoleReference.php │ │ ├── OpportunityStage.php │ │ ├── OpportunityStageReference.php │ │ ├── OpportunityStatus.php │ │ ├── OpportunityStatusReference.php │ │ ├── OpportunityToAgreementConversion.php │ │ ├── OpportunityToProjectConversion.php │ │ ├── OpportunityToSalesOrderConversion.php │ │ ├── OpportunityToServiceTicketConversion.php │ │ ├── OpportunityType.php │ │ ├── OpportunityTypeReference.php │ │ ├── Order.php │ │ ├── OrderStatus.php │ │ ├── OrderStatusEmailTemplate.php │ │ ├── OrderStatusEmailTemplateReference.php │ │ ├── OrderStatusNotification.php │ │ ├── OrderStatusReference.php │ │ ├── PatchOperation.php │ │ ├── PriorityReference.php │ │ ├── ProductCategoryReference.php │ │ ├── ProductRecurring.php │ │ ├── ProductSubCategoryReference.php │ │ ├── Project.php │ │ ├── ProjectBoardReference.php │ │ ├── ProjectPhaseReference.php │ │ ├── ProjectReference.php │ │ ├── ProjectStatusReference.php │ │ ├── ProjectTypeReference.php │ │ ├── ReminderReference.php │ │ ├── Role.php │ │ ├── SLAReference.php │ │ ├── SalesProbability.php │ │ ├── SalesQuota.php │ │ ├── SalesTeam.php │ │ ├── SalesTeamMember.php │ │ ├── SalesTeamReference.php │ │ ├── ScheduleStatusReference.php │ │ ├── ServiceItemReference.php │ │ ├── ServiceLocationReference.php │ │ ├── ServiceSourceReference.php │ │ ├── ServiceStatusReference.php │ │ ├── ServiceSubTypeReference.php │ │ ├── ServiceTeamReference.php │ │ ├── ServiceTypeReference.php │ │ ├── SiteReference.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TaxCodeReference.php │ │ ├── Team.php │ │ ├── Ticket.php │ │ ├── TicketReference.php │ │ ├── ValidationError.php │ │ ├── WorkRoleReference.php │ │ └── WorkTypeReference.php │ ├── Schedule │ │ ├── Calendar.php │ │ ├── ChargeCodeReference.php │ │ ├── Count.php │ │ ├── Error.php │ │ ├── Guid.php │ │ ├── Holiday.php │ │ ├── HolidayList.php │ │ ├── HolidayListReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── PatchOperation.php │ │ ├── PortalCalendar.php │ │ ├── ReminderReference.php │ │ ├── ScheduleColor.php │ │ ├── ScheduleDetail.php │ │ ├── ScheduleEntry.php │ │ ├── ScheduleEntryDetail.php │ │ ├── ScheduleEntryReference.php │ │ ├── ScheduleReminderTime.php │ │ ├── ScheduleSpanReference.php │ │ ├── ScheduleStatus.php │ │ ├── ScheduleStatusReference.php │ │ ├── ScheduleType.php │ │ ├── ScheduleTypeReference.php │ │ ├── ServiceLocationReference.php │ │ ├── Usage.php │ │ └── ValidationError.php │ ├── Service │ │ ├── ActivityReference.php │ │ ├── AgreementReference.php │ │ ├── Board.php │ │ ├── BoardAutoAssignResource.php │ │ ├── BoardAutoTemplate.php │ │ ├── BoardCopy.php │ │ ├── BoardExcludedMember.php │ │ ├── BoardItem.php │ │ ├── BoardItemAssociation.php │ │ ├── BoardNotification.php │ │ ├── BoardReference.php │ │ ├── BoardStatus.php │ │ ├── BoardStatusNotification.php │ │ ├── BoardSubType.php │ │ ├── BoardTeam.php │ │ ├── BoardType.php │ │ ├── BoardTypeSubTypeItemAssociation.php │ │ ├── CalendarReference.php │ │ ├── Code.php │ │ ├── CompanyReference.php │ │ ├── ConfigurationReference.php │ │ ├── ContactReference.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── DocumentReference.php │ │ ├── Error.php │ │ ├── ExternalIntegrationStatusReference.php │ │ ├── FilterValues.php │ │ ├── GenericIdIdentifierReference.php │ │ ├── Guid.php │ │ ├── Impact.php │ │ ├── IntegratorLoginReference.php │ │ ├── KnowledgeBaseArticle.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── NotificationRecipientReference.php │ │ ├── OpportunityReference.php │ │ ├── PatchOperation.php │ │ ├── Priority.php │ │ ├── PriorityReference.php │ │ ├── ProductReference.php │ │ ├── ProjectPhaseReference.php │ │ ├── ProjectReference.php │ │ ├── SLA.php │ │ ├── SLAPriority.php │ │ ├── SLAReference.php │ │ ├── ScheduleEntryReference.php │ │ ├── ServiceCodeReference.php │ │ ├── ServiceEmailTemplate.php │ │ ├── ServiceEmailTemplateReference.php │ │ ├── ServiceItemReference.php │ │ ├── ServiceLocation.php │ │ ├── ServiceLocationReference.php │ │ ├── ServiceNote.php │ │ ├── ServiceSignoff.php │ │ ├── ServiceSignoffReference.php │ │ ├── ServiceSourceReference.php │ │ ├── ServiceStatusReference.php │ │ ├── ServiceSubTypeReference.php │ │ ├── ServiceSurvey.php │ │ ├── ServiceSurveyQuestion.php │ │ ├── ServiceSurveyQuestionOption.php │ │ ├── ServiceSurveyReference.php │ │ ├── ServiceTeam.php │ │ ├── ServiceTeamReference.php │ │ ├── ServiceTemplate.php │ │ ├── ServiceTemplateReference.php │ │ ├── ServiceTypeReference.php │ │ ├── Severity.php │ │ ├── SiteReference.php │ │ ├── Source.php │ │ ├── StatusExternalIntegrationReference.php │ │ ├── SuccessResponse.php │ │ ├── SurveyOption.php │ │ ├── SurveyResult.php │ │ ├── SurveyResultDetail.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── Task.php │ │ ├── TeamMember.php │ │ ├── TemplateGeneratedCountsModel.php │ │ ├── Ticket.php │ │ ├── TicketMerge.php │ │ ├── TicketPipeline.php │ │ ├── TicketReference.php │ │ ├── TicketSync.php │ │ ├── TicketsPipeline.php │ │ ├── TimeEntryReference.php │ │ ├── ValidationError.php │ │ ├── WorkRoleReference.php │ │ └── WorkTypeReference.php │ ├── System │ │ ├── ActivityStatusReference.php │ │ ├── ActivityTypeReference.php │ │ ├── AddressFormatReference.php │ │ ├── AuditTrailEntry.php │ │ ├── AuthAnvil.php │ │ ├── AutomateScriptReference.php │ │ ├── BatchRequest.php │ │ ├── BatchResponse.php │ │ ├── BoardReference.php │ │ ├── CalendarReference.php │ │ ├── CalendarSetupReference.php │ │ ├── CallbackEntry.php │ │ ├── CentralServiceEula.php │ │ ├── Certification.php │ │ ├── CertificationReference.php │ │ ├── CompanyReference.php │ │ ├── CompanyStatusReference.php │ │ ├── CompanyTeam.php │ │ ├── ConnectWiseHostedScreen.php │ │ ├── ConnectWiseHostedSetup.php │ │ ├── ContactReference.php │ │ ├── CorporateStructure.php │ │ ├── CorporateStructureLevel.php │ │ ├── CorporateStructureLevelReference.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── Crm.php │ │ ├── CurrencyReference.php │ │ ├── CustomReport.php │ │ ├── CustomReportParameter.php │ │ ├── CustomReportReference.php │ │ ├── Department.php │ │ ├── DepartmentLocation.php │ │ ├── DepartmentMananager.php │ │ ├── DispatchMember.php │ │ ├── DocumentInfo.php │ │ ├── DocumentReference.php │ │ ├── DocumentSetup.php │ │ ├── DutyManager.php │ │ ├── EPayConfiguration.php │ │ ├── EmailConnector.php │ │ ├── EmailConnectorParsingRule.php │ │ ├── EmailConnectorParsingStyle.php │ │ ├── EmailConnectorParsingStyleReference.php │ │ ├── EmailConnectorParsingTypeReference.php │ │ ├── EmailConnectorParsingVariableReference.php │ │ ├── EmailConnectorReference.php │ │ ├── EmailToken.php │ │ ├── EndpointRequest.php │ │ ├── EndpointResponse.php │ │ ├── Error.php │ │ ├── Eula.php │ │ ├── GroupReference.php │ │ ├── Imap.php │ │ ├── ImapSetupReference.php │ │ ├── ImportMassMaintenance.php │ │ ├── InOutBoard.php │ │ ├── InOutType.php │ │ ├── InOutTypeReference.php │ │ ├── Info.php │ │ ├── IntegratorLogin.php │ │ ├── JArray.php │ │ ├── JObject.php │ │ ├── KPI.php │ │ ├── KPICategory.php │ │ ├── KPICategoryReference.php │ │ ├── KPIReference.php │ │ ├── KnowledgebaseArticle.php │ │ ├── Lab.php │ │ ├── LdapConfiguration.php │ │ ├── LdapConfigurationReference.php │ │ ├── LicenseBit.php │ │ ├── Link.php │ │ ├── Location.php │ │ ├── LocationDepartment.php │ │ ├── LocationWorkRole.php │ │ ├── ManagementNetworkSecurity.php │ │ ├── Member.php │ │ ├── MemberAccrual.php │ │ ├── MemberCertification.php │ │ ├── MemberDeactivation.php │ │ ├── MemberDelegation.php │ │ ├── MemberInfo.php │ │ ├── MemberReference.php │ │ ├── MemberSkill.php │ │ ├── MemberTypeReference.php │ │ ├── MenuEntry.php │ │ ├── MenuEntryLocation.php │ │ ├── MenuLocationReference.php │ │ ├── Metadata.php │ │ ├── MyCompanyCOORole.php │ │ ├── MyCompanyControllerRole.php │ │ ├── MyCompanyDispatchRole.php │ │ ├── MyCompanyDutyManagerRole.php │ │ ├── MyCompanyPresidentRole.php │ │ ├── MyCompanyServiceManagerRole.php │ │ ├── MyMember.php │ │ ├── MySecurity.php │ │ ├── NotificationRecipient.php │ │ ├── NotificationRecipientReference.php │ │ ├── NotifyTypeReference.php │ │ ├── Opportunity.php │ │ ├── OrderStatusReference.php │ │ ├── OsGradeWeight.php │ │ ├── Other.php │ │ ├── ParsingType.php │ │ ├── ParsingVariable.php │ │ ├── PatchOperation.php │ │ ├── PortalConfigurationReference.php │ │ ├── PortalReport.php │ │ ├── PriorityReference.php │ │ ├── ProjectBoardReference.php │ │ ├── ProjectManager.php │ │ ├── ProjectStatusReference.php │ │ ├── Report.php │ │ ├── ReportCard.php │ │ ├── ReportCardDetail.php │ │ ├── ReportCardReference.php │ │ ├── ReportDataResponse.php │ │ ├── ReportingService.php │ │ ├── SalesActivity.php │ │ ├── SalesTeam.php │ │ ├── SecurityRole.php │ │ ├── SecurityRoleReference.php │ │ ├── SecurityRoleSetting.php │ │ ├── Service.php │ │ ├── ServiceItemReference.php │ │ ├── ServiceLocationReference.php │ │ ├── ServiceManger.php │ │ ├── ServiceSourceReference.php │ │ ├── ServiceStatusReference.php │ │ ├── ServiceSubTypeReference.php │ │ ├── ServiceTeam.php │ │ ├── ServiceTemplate.php │ │ ├── ServiceTemplateReference.php │ │ ├── ServiceTypeReference.php │ │ ├── SetupScreen.php │ │ ├── Skill.php │ │ ├── SkillCategory.php │ │ ├── SkillCategoryReference.php │ │ ├── SkillReference.php │ │ ├── SsoConfiguration.php │ │ ├── StatusWorkflow.php │ │ ├── StructureReference.php │ │ ├── SuccessResponse.php │ │ ├── Survey.php │ │ ├── SurveyQuestion.php │ │ ├── SurveyQuestionReference.php │ │ ├── SurveyQuestionValue.php │ │ ├── SurveyReference.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── SystemMenuEntryReference.php │ │ ├── TeamRoleReference.php │ │ ├── TimeExpense.php │ │ ├── TimeZone.php │ │ ├── TimeZoneReference.php │ │ ├── TimeZoneSetup.php │ │ ├── TimeZoneSetupReference.php │ │ ├── TodayPageCategory.php │ │ ├── Token.php │ │ ├── TrackReference.php │ │ ├── Type.php │ │ ├── Usage.php │ │ ├── UserDefinedField.php │ │ ├── UserDefinedFieldOption.php │ │ ├── UserDefinedFieldReference.php │ │ ├── ValidationError.php │ │ ├── WarehouseBinReference.php │ │ ├── WarehouseReference.php │ │ ├── WorkRoleReference.php │ │ ├── WorkTypeReference.php │ │ ├── Workflow.php │ │ ├── WorkflowAction.php │ │ ├── WorkflowActionAutomateParameter.php │ │ ├── WorkflowAttachment.php │ │ ├── WorkflowEvent.php │ │ ├── WorkflowNotifyType.php │ │ ├── WorkflowTableType.php │ │ ├── WorkflowTableTypeReference.php │ │ ├── WorkflowTrigger.php │ │ └── WorkflowTriggerOption.php │ ├── Time │ │ ├── ActivityStopwatch.php │ │ ├── AgreementReference.php │ │ ├── AuditSource.php │ │ ├── AuditType.php │ │ ├── ChargeCode.php │ │ ├── ChargeCodeExpenseType.php │ │ ├── ChargeCodeReference.php │ │ ├── CompanyReference.php │ │ ├── Count.php │ │ ├── CustomFieldValue.php │ │ ├── Error.php │ │ ├── ExpenseTypeReference.php │ │ ├── ExternalWorkTypeIntegrationReference.php │ │ ├── Guid.php │ │ ├── InvoiceReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── PatchOperation.php │ │ ├── ScheduleStopwatch.php │ │ ├── ServiceStatusReference.php │ │ ├── SuccessResponse.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TicketReference.php │ │ ├── TicketStopwatch.php │ │ ├── TimeAccrual.php │ │ ├── TimeAccrualDetail.php │ │ ├── TimeAccrualReference.php │ │ ├── TimeEntry.php │ │ ├── TimeEntryAudit.php │ │ ├── TimePeriod.php │ │ ├── TimePeriodSetup.php │ │ ├── TimePeriodSetupDefaults.php │ │ ├── TimePeriodSetupReference.php │ │ ├── TimeSheet.php │ │ ├── TimeSheetAudit.php │ │ ├── TimeSheetReference.php │ │ ├── ValidationError.php │ │ ├── WorkRole.php │ │ ├── WorkRoleLocation.php │ │ ├── WorkRoleReference.php │ │ ├── WorkType.php │ │ ├── WorkTypeExternalIntegrationReference.php │ │ └── WorkTypeReference.php │ └── map.json ├── v2018_5 │ ├── Company │ │ ├── ActivityStatusReference.php │ │ ├── ActivityTypeReference.php │ │ ├── AddressFormat.php │ │ ├── AddressFormatReference.php │ │ ├── AgreementReference.php │ │ ├── AgreementTypeReference.php │ │ ├── BillingDeliveryReference.php │ │ ├── BillingTermsReference.php │ │ ├── CalendarReference.php │ │ ├── CatalogItemReference.php │ │ ├── ClearPickerRequest.php │ │ ├── CommunicationTypeReference.php │ │ ├── Company.php │ │ ├── CompanyCustomNote.php │ │ ├── CompanyGroup.php │ │ ├── CompanyManagementSummary.php │ │ ├── CompanyMerge.php │ │ ├── CompanyNote.php │ │ ├── CompanyPickerItem.php │ │ ├── CompanyReference.php │ │ ├── CompanySite.php │ │ ├── CompanyStatus.php │ │ ├── CompanyStatusReference.php │ │ ├── CompanyTeam.php │ │ ├── CompanyType.php │ │ ├── CompanyTypeReference.php │ │ ├── Configuration.php │ │ ├── ConfigurationQuestion.php │ │ ├── ConfigurationStatus.php │ │ ├── ConfigurationStatusReference.php │ │ ├── ConfigurationType.php │ │ ├── ConfigurationTypeQuestion.php │ │ ├── ConfigurationTypeQuestionReference.php │ │ ├── ConfigurationTypeQuestionValue.php │ │ ├── ConfigurationTypeReference.php │ │ ├── Contact.php │ │ ├── ContactCommunication.php │ │ ├── ContactCommunicationItem.php │ │ ├── ContactDepartment.php │ │ ├── ContactDepartmentReference.php │ │ ├── ContactGroup.php │ │ ├── ContactNote.php │ │ ├── ContactReference.php │ │ ├── ContactRelationship.php │ │ ├── ContactType.php │ │ ├── ContactTypeReference.php │ │ ├── Count.php │ │ ├── Country.php │ │ ├── CountryReference.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── EntityType.php │ │ ├── EntityTypeReference.php │ │ ├── Error.php │ │ ├── GroupReference.php │ │ ├── Guid.php │ │ ├── IntegratorLoginReference.php │ │ ├── InvoiceTemplateReference.php │ │ ├── IvItemReference.php │ │ ├── KaseyaKey.php │ │ ├── ManagedDevicesIntegration.php │ │ ├── ManagedDevicesIntegrationCrossReference.php │ │ ├── ManagedDevicesIntegrationLogin.php │ │ ├── ManagedDevicesIntegrationNotification.php │ │ ├── ManagedDevicesIntegrationReference.php │ │ ├── Management.php │ │ ├── ManagementBackup.php │ │ ├── ManagementItSolution.php │ │ ├── ManagementItSolutionAgreementInterfaceParameter.php │ │ ├── ManagementLogDocumentInfo.php │ │ ├── ManagementReportNotification.php │ │ ├── ManagementSolutionReference.php │ │ ├── ManufacturerReference.php │ │ ├── MarketDescription.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── NoteType.php │ │ ├── NoteTypeReference.php │ │ ├── NotificationRecipientReference.php │ │ ├── OpportunityStatusReference.php │ │ ├── OwnershipType.php │ │ ├── OwnershipTypeReference.php │ │ ├── PatchOperation.php │ │ ├── PortalConfiguration.php │ │ ├── PortalConfigurationInvoiceSetup.php │ │ ├── PortalConfigurationOpportunitySetup.php │ │ ├── PortalConfigurationPasswordEmailSetup.php │ │ ├── PortalConfigurationPaymentProcessor.php │ │ ├── PortalConfigurationPaymentProcessorReference.php │ │ ├── PortalConfigurationProjectSetup.php │ │ ├── PortalConfigurationReference.php │ │ ├── PortalConfigurationServiceSetup.php │ │ ├── PortalSecurity.php │ │ ├── PortalSecurityLevel.php │ │ ├── PortalSecuritySetting.php │ │ ├── PricingScheduleReference.php │ │ ├── RelationshipReference.php │ │ ├── RequestPasswordRequest.php │ │ ├── SLAReference.php │ │ ├── ServiceSignoffReference.php │ │ ├── ServiceTemplateReference.php │ │ ├── SicCodeReference.php │ │ ├── SiteReference.php │ │ ├── State.php │ │ ├── SuccessResponse.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TaxCodeReference.php │ │ ├── TeamRole.php │ │ ├── TeamRoleReference.php │ │ ├── TimeZoneSetupReference.php │ │ ├── Track.php │ │ ├── TrackAction.php │ │ ├── TrackReference.php │ │ ├── Usage.php │ │ ├── ValidatePortalRequest.php │ │ ├── ValidatePortalResponse.php │ │ └── ValidationError.php │ ├── Expense │ │ ├── AgreementReference.php │ │ ├── AuditSource.php │ │ ├── AuditType.php │ │ ├── Classification.php │ │ ├── ClassificationReference.php │ │ ├── CompanyReference.php │ │ ├── Count.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── Error.php │ │ ├── ExpenseEntry.php │ │ ├── ExpenseEntryAudit.php │ │ ├── ExpenseReport.php │ │ ├── ExpenseReportAudit.php │ │ ├── ExpenseReportReference.php │ │ ├── ExpenseTax.php │ │ ├── ExpenseTaxTypeReference.php │ │ ├── ExpenseType.php │ │ ├── ExpenseTypeExternalIntegrationReference.php │ │ ├── ExpenseTypeReference.php │ │ ├── ExternalExpenseTypeIntegrationReference.php │ │ ├── Guid.php │ │ ├── InvoiceReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── PatchOperation.php │ │ ├── PaymentMethodReference.php │ │ ├── PaymentType.php │ │ ├── SuccessResponse.php │ │ └── ValidationError.php │ ├── Finance │ │ ├── AccountingBatch.php │ │ ├── AccountingPackage.php │ │ ├── Addition.php │ │ ├── Adjustment.php │ │ ├── Agreement.php │ │ ├── AgreementBatchSetup.php │ │ ├── AgreementReference.php │ │ ├── AgreementSite.php │ │ ├── AgreementType.php │ │ ├── AgreementTypeBoardDefault.php │ │ ├── AgreementTypeReference.php │ │ ├── AgreementTypeWorkRole.php │ │ ├── AgreementTypeWorkRoleExclusion.php │ │ ├── AgreementTypeWorkType.php │ │ ├── AgreementTypeWorkTypeExclusion.php │ │ ├── AgreementWorkRole.php │ │ ├── AgreementWorkRoleExclusion.php │ │ ├── AgreementWorkType.php │ │ ├── AgreementWorkTypeExclusion.php │ │ ├── BillingCycle.php │ │ ├── BillingCycleReference.php │ │ ├── BillingSetup.php │ │ ├── BillingSetupRouting.php │ │ ├── BillingStatus.php │ │ ├── BillingStatusReference.php │ │ ├── BillingTerm.php │ │ ├── BillingTermsReference.php │ │ ├── BoardDefault.php │ │ ├── BoardReference.php │ │ ├── ChargeCodeReference.php │ │ ├── ClassificationReference.php │ │ ├── ClosedInvoice.php │ │ ├── CompanyReference.php │ │ ├── CompanyTypeReference.php │ │ ├── ConfigurationReference.php │ │ ├── ContactReference.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── CreateAccountingBatchRequest.php │ │ ├── Currency.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── DeliveryMethod.php │ │ ├── EmailTemplateReference.php │ │ ├── Error.php │ │ ├── ExpenseTypeExemption.php │ │ ├── ExpenseTypeReference.php │ │ ├── ExportAccountingBatchRequest.php │ │ ├── GLExport.php │ │ ├── GLExportAdjustmentTransaction.php │ │ ├── GLExportAdjustmentTransactionDetail.php │ │ ├── GLExportCustomer.php │ │ ├── GLExportCustomerTaxLevel.php │ │ ├── GLExportExpense.php │ │ ├── GLExportExpenseBill.php │ │ ├── GLExportExpenseBillDetail.php │ │ ├── GLExportExpenseOffset.php │ │ ├── GLExportInventoryTransfer.php │ │ ├── GLExportInventoryTransferOffset.php │ │ ├── GLExportPurchaseTransaction.php │ │ ├── GLExportPurchaseTransactionDetail.php │ │ ├── GLExportPurchaseTransactionDetailTax.php │ │ ├── GLExportPurchaseTransactionTaxLevel.php │ │ ├── GLExportSettings.php │ │ ├── GLExportTransaction.php │ │ ├── GLExportTransactionDetail.php │ │ ├── GLExportTransactionDetailTaxLevel.php │ │ ├── GLExportTransactionTaxLevel.php │ │ ├── GLExportVendor.php │ │ ├── Invoice.php │ │ ├── InvoiceEmailTemplate.php │ │ ├── InvoiceReference.php │ │ ├── InvoiceTemplate.php │ │ ├── InvoiceTemplateReference.php │ │ ├── InvoiceTemplateSetup.php │ │ ├── IvItemReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── OpportunityReference.php │ │ ├── PatchOperation.php │ │ ├── Payment.php │ │ ├── PaymentMethodReference.php │ │ ├── ProductReference.php │ │ ├── ProductSubCategoryReference.php │ │ ├── ProductTypeExemption.php │ │ ├── ProductTypeReference.php │ │ ├── ProjectPhaseReference.php │ │ ├── ProjectReference.php │ │ ├── ProjectTypeReference.php │ │ ├── PurchaseOrderReference.php │ │ ├── SLAReference.php │ │ ├── ServiceSurveyReference.php │ │ ├── ServiceTypeReference.php │ │ ├── ShipmentMethodReference.php │ │ ├── SiteReference.php │ │ ├── StateReference.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TaxCode.php │ │ ├── TaxCodeLevel.php │ │ ├── TaxCodeLevelReference.php │ │ ├── TaxCodeReference.php │ │ ├── TaxCodeXRef.php │ │ ├── TaxIntegration.php │ │ ├── TaxIntegrationInfo.php │ │ ├── TaxableExpenseTypeLevel.php │ │ ├── TaxableProductTypeLevel.php │ │ ├── TaxableWorkRoleLevel.php │ │ ├── TaxableXRefLevel.php │ │ ├── TicketReference.php │ │ ├── TimeEntryReference.php │ │ ├── UnitOfMeasureReference.php │ │ ├── UnpostedExpense.php │ │ ├── UnpostedExpenseTaxableLevel.php │ │ ├── UnpostedInvoice.php │ │ ├── UnpostedInvoiceTaxableLevel.php │ │ ├── UnpostedProcurement.php │ │ ├── UnpostedProcurementTaxableLevel.php │ │ ├── Usage.php │ │ ├── ValidationError.php │ │ ├── WarehouseBinReference.php │ │ ├── WarehouseReference.php │ │ ├── WorkRoleExemption.php │ │ ├── WorkRoleReference.php │ │ └── WorkTypeReference.php │ ├── Internal │ │ ├── AgreementReference.php │ │ ├── AuditTrailEntryInsertRequest.php │ │ ├── AuditTrailObjects.php │ │ ├── ChargeToReference.php │ │ ├── ClassificationReference.php │ │ ├── CompanyReference.php │ │ ├── Count.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── Error.php │ │ ├── ExpenseEntryInternal.php │ │ ├── ExpenseReportReference.php │ │ ├── ExpenseTax.php │ │ ├── ExpenseTaxTypeReference.php │ │ ├── ExpenseTypeReference.php │ │ ├── Guid.php │ │ ├── IntegrationRequest.php │ │ ├── InvoiceReference.php │ │ ├── JObject.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── PatchOperation.php │ │ ├── PaymentMethodReference.php │ │ ├── Product.php │ │ ├── Session.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TicketReference.php │ │ ├── TimeEntryInternal.php │ │ ├── TimeSheetReference.php │ │ ├── UploadToMarketplaceRequest.php │ │ ├── ValidationError.php │ │ ├── WorkRoleReference.php │ │ └── WorkTypeReference.php │ ├── Marketing │ │ ├── ActivityReference.php │ │ ├── Campaign.php │ │ ├── CampaignAudit.php │ │ ├── CampaignStatus.php │ │ ├── CampaignStatusReference.php │ │ ├── CampaignSubType.php │ │ ├── CampaignSubTypeReference.php │ │ ├── CampaignType.php │ │ ├── CampaignTypeReference.php │ │ ├── Count.php │ │ ├── EmailOpened.php │ │ ├── Error.php │ │ ├── FormSubmitted.php │ │ ├── Group.php │ │ ├── GroupReference.php │ │ ├── LinkClicked.php │ │ ├── MarketingCompany.php │ │ ├── MarketingContact.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── OpportunityReference.php │ │ ├── PatchOperation.php │ │ ├── Usage.php │ │ └── ValidationError.php │ ├── Procurement │ │ ├── Adjustment.php │ │ ├── AdjustmentDetail.php │ │ ├── AdjustmentReference.php │ │ ├── AdjustmentType.php │ │ ├── AdjustmentTypeReference.php │ │ ├── AgreementReference.php │ │ ├── BillingCycleReference.php │ │ ├── BillingTermsReference.php │ │ ├── CatalogComponent.php │ │ ├── CatalogItem.php │ │ ├── CatalogItemReference.php │ │ ├── Category.php │ │ ├── CompanyReference.php │ │ ├── ContactReference.php │ │ ├── Conversion.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── EntityTypeReference.php │ │ ├── Error.php │ │ ├── InventoryByWarehouse.php │ │ ├── IvItemReference.php │ │ ├── LegacySubCategory.php │ │ ├── Manufacturer.php │ │ ├── ManufacturerReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── MinimumStockByWarehouse.php │ │ ├── NotificationRecipientReference.php │ │ ├── OpportunityStatusReference.php │ │ ├── PatchOperation.php │ │ ├── PricingBreak.php │ │ ├── PricingDetail.php │ │ ├── PricingSchedule.php │ │ ├── ProcurementSetting.php │ │ ├── ProductCategoryReference.php │ │ ├── ProductComponent.php │ │ ├── ProductDetach.php │ │ ├── ProductItem.php │ │ ├── ProductItemReference.php │ │ ├── ProductPickingShippingDetail.php │ │ ├── ProductRecurring.php │ │ ├── ProductSubCategoryReference.php │ │ ├── ProductType.php │ │ ├── ProductTypeReference.php │ │ ├── PurchaseOrder.php │ │ ├── PurchaseOrderLineItem.php │ │ ├── PurchaseOrderStatus.php │ │ ├── PurchaseOrderStatusEmailTemplate.php │ │ ├── PurchaseOrderStatusEmailTemplateReference.php │ │ ├── PurchaseOrderStatusNotification.php │ │ ├── PurchaseOrderStatusReference.php │ │ ├── RmaAction.php │ │ ├── RmaDisposition.php │ │ ├── RmaStatus.php │ │ ├── RmaStatusEmailTemplate.php │ │ ├── RmaStatusEmailTemplateReference.php │ │ ├── RmaStatusNotification.php │ │ ├── RmaStatusReference.php │ │ ├── SLAReference.php │ │ ├── ShipmentMethod.php │ │ ├── ShipmentMethodReference.php │ │ ├── SiteReference.php │ │ ├── SubCategory.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TaxCodeReference.php │ │ ├── UnitOfMeasure.php │ │ ├── UnitOfMeasureReference.php │ │ ├── Usage.php │ │ ├── ValidationError.php │ │ ├── Warehouse.php │ │ ├── WarehouseBin.php │ │ ├── WarehouseBinReference.php │ │ └── WarehouseReference.php │ ├── Project │ │ ├── AgreementReference.php │ │ ├── BillingTermsReference.php │ │ ├── CompanyReference.php │ │ ├── ContactReference.php │ │ ├── Count.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── Error.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── NoteTypeReference.php │ │ ├── OpportunityReference.php │ │ ├── PatchOperation.php │ │ ├── PhaseStatus.php │ │ ├── PhaseStatusReference.php │ │ ├── Project.php │ │ ├── ProjectBoardReference.php │ │ ├── ProjectBoardTeam.php │ │ ├── ProjectBoardTeamMember.php │ │ ├── ProjectContact.php │ │ ├── ProjectNote.php │ │ ├── ProjectPhase.php │ │ ├── ProjectPhaseReference.php │ │ ├── ProjectRoleReference.php │ │ ├── ProjectSecurityRole.php │ │ ├── ProjectSecurityRoleSetting.php │ │ ├── ProjectStatus.php │ │ ├── ProjectStatusReference.php │ │ ├── ProjectTeamMember.php │ │ ├── ProjectType.php │ │ ├── ProjectTypeReference.php │ │ ├── SiteReference.php │ │ ├── StatusIndicator.php │ │ ├── StatusIndicatorReference.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TaxCodeReference.php │ │ ├── ValidationError.php │ │ └── WorkRoleReference.php │ ├── Sales │ │ ├── Activity.php │ │ ├── ActivityStatus.php │ │ ├── ActivityStatusReference.php │ │ ├── ActivityType.php │ │ ├── ActivityTypeReference.php │ │ ├── Agreement.php │ │ ├── AgreementReference.php │ │ ├── AgreementTypeReference.php │ │ ├── BillingTermsReference.php │ │ ├── BoardReference.php │ │ ├── CampaignReference.php │ │ ├── Commission.php │ │ ├── CompanyReference.php │ │ ├── ContactReference.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── Error.php │ │ ├── Forecast.php │ │ ├── Guid.php │ │ ├── IvItemReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── NoteTypeReference.php │ │ ├── NotificationRecipientReference.php │ │ ├── Opportunity.php │ │ ├── OpportunityContact.php │ │ ├── OpportunityNote.php │ │ ├── OpportunityPriorityReference.php │ │ ├── OpportunityProbabilityReference.php │ │ ├── OpportunityRating.php │ │ ├── OpportunityRatingReference.php │ │ ├── OpportunityReference.php │ │ ├── OpportunitySalesRoleReference.php │ │ ├── OpportunityStage.php │ │ ├── OpportunityStageReference.php │ │ ├── OpportunityStatus.php │ │ ├── OpportunityStatusReference.php │ │ ├── OpportunityToAgreementConversion.php │ │ ├── OpportunityToProjectConversion.php │ │ ├── OpportunityToSalesOrderConversion.php │ │ ├── OpportunityToServiceTicketConversion.php │ │ ├── OpportunityType.php │ │ ├── OpportunityTypeReference.php │ │ ├── Order.php │ │ ├── OrderStatus.php │ │ ├── OrderStatusEmailTemplate.php │ │ ├── OrderStatusEmailTemplateReference.php │ │ ├── OrderStatusNotification.php │ │ ├── OrderStatusReference.php │ │ ├── PatchOperation.php │ │ ├── PriorityReference.php │ │ ├── ProductCategoryReference.php │ │ ├── ProductRecurring.php │ │ ├── ProductSubCategoryReference.php │ │ ├── Project.php │ │ ├── ProjectBoardReference.php │ │ ├── ProjectPhaseReference.php │ │ ├── ProjectReference.php │ │ ├── ProjectStatusReference.php │ │ ├── ProjectTypeReference.php │ │ ├── ReminderReference.php │ │ ├── Role.php │ │ ├── SLAReference.php │ │ ├── SalesProbability.php │ │ ├── SalesQuota.php │ │ ├── SalesTeam.php │ │ ├── SalesTeamMember.php │ │ ├── SalesTeamReference.php │ │ ├── ScheduleStatusReference.php │ │ ├── ServiceItemReference.php │ │ ├── ServiceLocationReference.php │ │ ├── ServiceSourceReference.php │ │ ├── ServiceStatusReference.php │ │ ├── ServiceSubTypeReference.php │ │ ├── ServiceTeamReference.php │ │ ├── ServiceTypeReference.php │ │ ├── SiteReference.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TaxCodeReference.php │ │ ├── Team.php │ │ ├── Ticket.php │ │ ├── TicketReference.php │ │ ├── Usage.php │ │ ├── ValidationError.php │ │ ├── WorkRoleReference.php │ │ └── WorkTypeReference.php │ ├── Schedule │ │ ├── Calendar.php │ │ ├── ChargeCodeReference.php │ │ ├── Count.php │ │ ├── Error.php │ │ ├── Guid.php │ │ ├── Holiday.php │ │ ├── HolidayList.php │ │ ├── HolidayListReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── PatchOperation.php │ │ ├── PortalCalendar.php │ │ ├── ReminderReference.php │ │ ├── ScheduleColor.php │ │ ├── ScheduleDetail.php │ │ ├── ScheduleEntry.php │ │ ├── ScheduleEntryDetail.php │ │ ├── ScheduleEntryReference.php │ │ ├── ScheduleReminderTime.php │ │ ├── ScheduleSpanReference.php │ │ ├── ScheduleStatus.php │ │ ├── ScheduleStatusReference.php │ │ ├── ScheduleType.php │ │ ├── ScheduleTypeReference.php │ │ ├── ServiceLocationReference.php │ │ ├── Usage.php │ │ └── ValidationError.php │ ├── Service │ │ ├── ActivityReference.php │ │ ├── AgreementReference.php │ │ ├── Board.php │ │ ├── BoardAutoAssignResource.php │ │ ├── BoardAutoTemplate.php │ │ ├── BoardCopy.php │ │ ├── BoardExcludedMember.php │ │ ├── BoardInfo.php │ │ ├── BoardItem.php │ │ ├── BoardItemAssociation.php │ │ ├── BoardNotification.php │ │ ├── BoardReference.php │ │ ├── BoardStatus.php │ │ ├── BoardStatusNotification.php │ │ ├── BoardSubType.php │ │ ├── BoardTeam.php │ │ ├── BoardType.php │ │ ├── BoardTypeSubTypeItemAssociation.php │ │ ├── CalendarReference.php │ │ ├── Code.php │ │ ├── CompanyReference.php │ │ ├── ConfigurationReference.php │ │ ├── ContactReference.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── DocumentReference.php │ │ ├── Error.php │ │ ├── ExternalIntegrationStatusReference.php │ │ ├── FilterValues.php │ │ ├── GenericIdIdentifierReference.php │ │ ├── Guid.php │ │ ├── Impact.php │ │ ├── IntegratorLoginReference.php │ │ ├── KnowledgeBaseArticle.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── NotificationRecipientReference.php │ │ ├── OpportunityReference.php │ │ ├── PatchOperation.php │ │ ├── Priority.php │ │ ├── PriorityReference.php │ │ ├── ProductReference.php │ │ ├── ProjectPhaseReference.php │ │ ├── ProjectReference.php │ │ ├── SLA.php │ │ ├── SLAPriority.php │ │ ├── SLAReference.php │ │ ├── ScheduleEntryReference.php │ │ ├── ServiceCodeReference.php │ │ ├── ServiceEmailTemplate.php │ │ ├── ServiceEmailTemplateReference.php │ │ ├── ServiceItemReference.php │ │ ├── ServiceLocation.php │ │ ├── ServiceLocationReference.php │ │ ├── ServiceNote.php │ │ ├── ServiceSignoff.php │ │ ├── ServiceSignoffReference.php │ │ ├── ServiceSourceReference.php │ │ ├── ServiceStatusReference.php │ │ ├── ServiceSubTypeReference.php │ │ ├── ServiceSurvey.php │ │ ├── ServiceSurveyQuestion.php │ │ ├── ServiceSurveyQuestionOption.php │ │ ├── ServiceSurveyReference.php │ │ ├── ServiceTeam.php │ │ ├── ServiceTeamReference.php │ │ ├── ServiceTemplate.php │ │ ├── ServiceTemplateReference.php │ │ ├── ServiceTypeReference.php │ │ ├── Severity.php │ │ ├── SiteReference.php │ │ ├── Source.php │ │ ├── StatusExternalIntegrationReference.php │ │ ├── StatusIndicatorReference.php │ │ ├── SuccessResponse.php │ │ ├── SurveyOption.php │ │ ├── SurveyResult.php │ │ ├── SurveyResultDetail.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── Task.php │ │ ├── TeamMember.php │ │ ├── TemplateGeneratedCountsModel.php │ │ ├── Ticket.php │ │ ├── TicketMerge.php │ │ ├── TicketPipeline.php │ │ ├── TicketReference.php │ │ ├── TicketSync.php │ │ ├── TicketsPipeline.php │ │ ├── TimeEntryReference.php │ │ ├── Usage.php │ │ ├── ValidationError.php │ │ ├── WorkRoleReference.php │ │ └── WorkTypeReference.php │ ├── System │ │ ├── ActivityStatusReference.php │ │ ├── ActivityTypeReference.php │ │ ├── AddressFormatReference.php │ │ ├── ApiMember.php │ │ ├── AuditTrailEntry.php │ │ ├── AuthAnvil.php │ │ ├── AutoSyncTime.php │ │ ├── AutomateScriptReference.php │ │ ├── BatchRequest.php │ │ ├── BatchResponse.php │ │ ├── BoardReference.php │ │ ├── CalendarReference.php │ │ ├── CalendarSetupReference.php │ │ ├── CallbackEntry.php │ │ ├── CentralServiceEula.php │ │ ├── Certification.php │ │ ├── CertificationReference.php │ │ ├── CompanyReference.php │ │ ├── CompanyStatusReference.php │ │ ├── CompanyTeam.php │ │ ├── CompanyTypeInfo.php │ │ ├── ConnectWiseHostedScreen.php │ │ ├── ConnectWiseHostedSetup.php │ │ ├── ContactReference.php │ │ ├── CorporateStructure.php │ │ ├── CorporateStructureLevel.php │ │ ├── CorporateStructureLevelReference.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── Crm.php │ │ ├── CurrencyReference.php │ │ ├── CustomReport.php │ │ ├── CustomReportParameter.php │ │ ├── CustomReportReference.php │ │ ├── Department.php │ │ ├── DepartmentInfo.php │ │ ├── DepartmentLocation.php │ │ ├── DepartmentLocationInfo.php │ │ ├── DepartmentMananager.php │ │ ├── DispatchMember.php │ │ ├── DocumentInfo.php │ │ ├── DocumentReference.php │ │ ├── DocumentSetup.php │ │ ├── DutyManager.php │ │ ├── EPayConfiguration.php │ │ ├── EmailConnector.php │ │ ├── EmailConnectorParsingRule.php │ │ ├── EmailConnectorParsingStyle.php │ │ ├── EmailConnectorParsingStyleReference.php │ │ ├── EmailConnectorParsingTypeReference.php │ │ ├── EmailConnectorParsingVariableReference.php │ │ ├── EmailConnectorReference.php │ │ ├── EmailToken.php │ │ ├── EndpointRequest.php │ │ ├── EndpointResponse.php │ │ ├── Error.php │ │ ├── Eula.php │ │ ├── GroupReference.php │ │ ├── Imap.php │ │ ├── ImapSetupReference.php │ │ ├── ImportMassMaintenance.php │ │ ├── InOutBoard.php │ │ ├── InOutType.php │ │ ├── InOutTypeReference.php │ │ ├── Info.php │ │ ├── IntegratorLogin.php │ │ ├── JArray.php │ │ ├── JObject.php │ │ ├── KPI.php │ │ ├── KPICategory.php │ │ ├── KPICategoryReference.php │ │ ├── KPIReference.php │ │ ├── KnowledgebaseArticle.php │ │ ├── Lab.php │ │ ├── LdapConfiguration.php │ │ ├── LdapConfigurationReference.php │ │ ├── LicenseBit.php │ │ ├── Link.php │ │ ├── LocaleInfo.php │ │ ├── LocaleReference.php │ │ ├── Location.php │ │ ├── LocationDepartment.php │ │ ├── LocationInfo.php │ │ ├── LocationWorkRole.php │ │ ├── ManagementNetworkSecurity.php │ │ ├── Member.php │ │ ├── MemberAccrual.php │ │ ├── MemberCertification.php │ │ ├── MemberDeactivation.php │ │ ├── MemberDelegation.php │ │ ├── MemberInfo.php │ │ ├── MemberReference.php │ │ ├── MemberSkill.php │ │ ├── MemberTypeReference.php │ │ ├── MenuEntry.php │ │ ├── MenuEntryLocation.php │ │ ├── MenuLocationReference.php │ │ ├── Metadata.php │ │ ├── MyCompanyCOORole.php │ │ ├── MyCompanyControllerRole.php │ │ ├── MyCompanyDispatchRole.php │ │ ├── MyCompanyDutyManagerRole.php │ │ ├── MyCompanyPresidentRole.php │ │ ├── MyCompanyServiceManagerRole.php │ │ ├── MyMember.php │ │ ├── MySecurity.php │ │ ├── NotificationRecipient.php │ │ ├── NotificationRecipientReference.php │ │ ├── NotifyTypeReference.php │ │ ├── Opportunity.php │ │ ├── OrderStatusReference.php │ │ ├── OsGradeWeight.php │ │ ├── Other.php │ │ ├── ParsingType.php │ │ ├── ParsingVariable.php │ │ ├── PatchOperation.php │ │ ├── PortalConfigurationReference.php │ │ ├── PortalReport.php │ │ ├── PriorityReference.php │ │ ├── ProjectBoardReference.php │ │ ├── ProjectManager.php │ │ ├── ProjectStatusReference.php │ │ ├── Report.php │ │ ├── ReportCard.php │ │ ├── ReportCardDetail.php │ │ ├── ReportCardReference.php │ │ ├── ReportDataResponse.php │ │ ├── ReportingService.php │ │ ├── SalesActivity.php │ │ ├── SalesTeam.php │ │ ├── SecurityRole.php │ │ ├── SecurityRoleReference.php │ │ ├── SecurityRoleSetting.php │ │ ├── Service.php │ │ ├── ServiceItemReference.php │ │ ├── ServiceLocationReference.php │ │ ├── ServiceManger.php │ │ ├── ServiceSourceReference.php │ │ ├── ServiceStatusReference.php │ │ ├── ServiceSubTypeReference.php │ │ ├── ServiceTeam.php │ │ ├── ServiceTemplate.php │ │ ├── ServiceTemplateReference.php │ │ ├── ServiceTypeReference.php │ │ ├── SetupScreen.php │ │ ├── Skill.php │ │ ├── SkillCategory.php │ │ ├── SkillCategoryReference.php │ │ ├── SkillReference.php │ │ ├── SsoConfiguration.php │ │ ├── StatusWorkflow.php │ │ ├── StructureReference.php │ │ ├── SuccessResponse.php │ │ ├── Survey.php │ │ ├── SurveyQuestion.php │ │ ├── SurveyQuestionReference.php │ │ ├── SurveyQuestionValue.php │ │ ├── SurveyReference.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── SystemMenuEntryReference.php │ │ ├── SystemSetting.php │ │ ├── TeamRoleReference.php │ │ ├── TimeExpense.php │ │ ├── TimeZone.php │ │ ├── TimeZoneReference.php │ │ ├── TimeZoneSetup.php │ │ ├── TimeZoneSetupReference.php │ │ ├── TodayPageCategory.php │ │ ├── Token.php │ │ ├── TrackReference.php │ │ ├── Type.php │ │ ├── Usage.php │ │ ├── UserDefinedField.php │ │ ├── UserDefinedFieldOption.php │ │ ├── UserDefinedFieldReference.php │ │ ├── ValidationError.php │ │ ├── WarehouseBinReference.php │ │ ├── WarehouseReference.php │ │ ├── WorkRoleReference.php │ │ ├── WorkTypeReference.php │ │ ├── Workflow.php │ │ ├── WorkflowAction.php │ │ ├── WorkflowActionAutomateParameter.php │ │ ├── WorkflowAttachment.php │ │ ├── WorkflowEvent.php │ │ ├── WorkflowNotifyType.php │ │ ├── WorkflowTableType.php │ │ ├── WorkflowTableTypeReference.php │ │ ├── WorkflowTrigger.php │ │ └── WorkflowTriggerOption.php │ ├── Time │ │ ├── ActivityStopwatch.php │ │ ├── AgreementReference.php │ │ ├── AuditSource.php │ │ ├── AuditType.php │ │ ├── ChargeCode.php │ │ ├── ChargeCodeExpenseType.php │ │ ├── ChargeCodeReference.php │ │ ├── CompanyReference.php │ │ ├── Count.php │ │ ├── CustomFieldValue.php │ │ ├── Error.php │ │ ├── ExpenseTypeReference.php │ │ ├── ExternalWorkTypeIntegrationReference.php │ │ ├── Guid.php │ │ ├── InvoiceReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── PatchOperation.php │ │ ├── ScheduleStopwatch.php │ │ ├── ServiceStatusReference.php │ │ ├── SuccessResponse.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TicketReference.php │ │ ├── TicketStopwatch.php │ │ ├── TimeAccrual.php │ │ ├── TimeAccrualDetail.php │ │ ├── TimeAccrualReference.php │ │ ├── TimeEntry.php │ │ ├── TimeEntryAudit.php │ │ ├── TimePeriod.php │ │ ├── TimePeriodSetup.php │ │ ├── TimePeriodSetupDefaults.php │ │ ├── TimePeriodSetupReference.php │ │ ├── TimeSheet.php │ │ ├── TimeSheetAudit.php │ │ ├── TimeSheetReference.php │ │ ├── Usage.php │ │ ├── ValidationError.php │ │ ├── WorkRole.php │ │ ├── WorkRoleLocation.php │ │ ├── WorkRoleReference.php │ │ ├── WorkType.php │ │ ├── WorkTypeExternalIntegrationReference.php │ │ └── WorkTypeReference.php │ └── map.json ├── v2018_6 │ ├── Company │ │ ├── ActivityStatusReference.php │ │ ├── ActivityTypeReference.php │ │ ├── AddressFormat.php │ │ ├── AddressFormatReference.php │ │ ├── AgreementReference.php │ │ ├── AgreementTypeReference.php │ │ ├── BillingDeliveryReference.php │ │ ├── BillingTermsReference.php │ │ ├── CalendarReference.php │ │ ├── CatalogItemReference.php │ │ ├── ClearPickerRequest.php │ │ ├── CommunicationTypeReference.php │ │ ├── Company.php │ │ ├── CompanyCustomNote.php │ │ ├── CompanyGroup.php │ │ ├── CompanyManagementSummary.php │ │ ├── CompanyMerge.php │ │ ├── CompanyNote.php │ │ ├── CompanyNoteType.php │ │ ├── CompanyPickerItem.php │ │ ├── CompanyReference.php │ │ ├── CompanySite.php │ │ ├── CompanyStatus.php │ │ ├── CompanyStatusReference.php │ │ ├── CompanyTeam.php │ │ ├── CompanyType.php │ │ ├── CompanyTypeAssociation.php │ │ ├── CompanyTypeInfo.php │ │ ├── CompanyTypeReference.php │ │ ├── Configuration.php │ │ ├── ConfigurationQuestion.php │ │ ├── ConfigurationStatus.php │ │ ├── ConfigurationStatusReference.php │ │ ├── ConfigurationType.php │ │ ├── ConfigurationTypeQuestion.php │ │ ├── ConfigurationTypeQuestionReference.php │ │ ├── ConfigurationTypeQuestionValue.php │ │ ├── ConfigurationTypeReference.php │ │ ├── Contact.php │ │ ├── ContactCommunication.php │ │ ├── ContactCommunicationItem.php │ │ ├── ContactDepartment.php │ │ ├── ContactDepartmentReference.php │ │ ├── ContactGroup.php │ │ ├── ContactNote.php │ │ ├── ContactReference.php │ │ ├── ContactRelationship.php │ │ ├── ContactTrack.php │ │ ├── ContactType.php │ │ ├── ContactTypeAssociation.php │ │ ├── ContactTypeReference.php │ │ ├── Count.php │ │ ├── Country.php │ │ ├── CountryReference.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── EntityType.php │ │ ├── EntityTypeReference.php │ │ ├── Error.php │ │ ├── GroupReference.php │ │ ├── Guid.php │ │ ├── IntegratorLoginReference.php │ │ ├── InvoiceTemplateReference.php │ │ ├── IvItemReference.php │ │ ├── KaseyaKey.php │ │ ├── ManagedDevicesIntegration.php │ │ ├── ManagedDevicesIntegrationCrossReference.php │ │ ├── ManagedDevicesIntegrationLogin.php │ │ ├── ManagedDevicesIntegrationNotification.php │ │ ├── ManagedDevicesIntegrationReference.php │ │ ├── Management.php │ │ ├── ManagementBackup.php │ │ ├── ManagementItSolution.php │ │ ├── ManagementItSolutionAgreementInterfaceParameter.php │ │ ├── ManagementLogDocumentInfo.php │ │ ├── ManagementReportNotification.php │ │ ├── ManagementSolutionReference.php │ │ ├── ManufacturerReference.php │ │ ├── MarketDescription.php │ │ ├── MarketDescriptionReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── NoteTypeReference.php │ │ ├── NotificationRecipientReference.php │ │ ├── OpportunityStatusReference.php │ │ ├── OwnershipType.php │ │ ├── OwnershipTypeReference.php │ │ ├── PatchOperation.php │ │ ├── PortalConfiguration.php │ │ ├── PortalConfigurationInvoiceSetup.php │ │ ├── PortalConfigurationOpportunitySetup.php │ │ ├── PortalConfigurationPasswordEmailSetup.php │ │ ├── PortalConfigurationPaymentProcessor.php │ │ ├── PortalConfigurationPaymentProcessorReference.php │ │ ├── PortalConfigurationProjectSetup.php │ │ ├── PortalConfigurationReference.php │ │ ├── PortalConfigurationServiceSetup.php │ │ ├── PortalSecurity.php │ │ ├── PortalSecurityLevel.php │ │ ├── PortalSecuritySetting.php │ │ ├── PricingScheduleReference.php │ │ ├── RelationshipReference.php │ │ ├── RequestPasswordRequest.php │ │ ├── SLAReference.php │ │ ├── ServiceSignoffReference.php │ │ ├── ServiceTemplateReference.php │ │ ├── SicCodeReference.php │ │ ├── SiteReference.php │ │ ├── State.php │ │ ├── SuccessResponse.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TaxCodeReference.php │ │ ├── TeamRole.php │ │ ├── TeamRoleReference.php │ │ ├── TimeZoneSetupReference.php │ │ ├── Track.php │ │ ├── TrackAction.php │ │ ├── TrackReference.php │ │ ├── Usage.php │ │ ├── ValidatePortalRequest.php │ │ ├── ValidatePortalResponse.php │ │ └── ValidationError.php │ ├── Expense │ │ ├── AgreementReference.php │ │ ├── AuditSource.php │ │ ├── AuditType.php │ │ ├── Classification.php │ │ ├── ClassificationReference.php │ │ ├── CompanyReference.php │ │ ├── Count.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── Error.php │ │ ├── ExpenseEntry.php │ │ ├── ExpenseEntryAudit.php │ │ ├── ExpenseReport.php │ │ ├── ExpenseReportAudit.php │ │ ├── ExpenseReportReference.php │ │ ├── ExpenseTax.php │ │ ├── ExpenseTaxTypeReference.php │ │ ├── ExpenseType.php │ │ ├── ExpenseTypeExternalIntegrationReference.php │ │ ├── ExpenseTypeReference.php │ │ ├── ExternalExpenseTypeIntegrationReference.php │ │ ├── Guid.php │ │ ├── InvoiceReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── PatchOperation.php │ │ ├── PaymentMethodReference.php │ │ ├── PaymentType.php │ │ ├── SuccessResponse.php │ │ └── ValidationError.php │ ├── Finance │ │ ├── AccountingBatch.php │ │ ├── AccountingPackage.php │ │ ├── Addition.php │ │ ├── Adjustment.php │ │ ├── Agreement.php │ │ ├── AgreementBatchSetup.php │ │ ├── AgreementReference.php │ │ ├── AgreementSite.php │ │ ├── AgreementType.php │ │ ├── AgreementTypeBoardDefault.php │ │ ├── AgreementTypeReference.php │ │ ├── AgreementTypeWorkRole.php │ │ ├── AgreementTypeWorkRoleExclusion.php │ │ ├── AgreementTypeWorkType.php │ │ ├── AgreementTypeWorkTypeExclusion.php │ │ ├── AgreementWorkRole.php │ │ ├── AgreementWorkRoleExclusion.php │ │ ├── AgreementWorkType.php │ │ ├── AgreementWorkTypeExclusion.php │ │ ├── BillingCycle.php │ │ ├── BillingCycleReference.php │ │ ├── BillingSetup.php │ │ ├── BillingSetupRouting.php │ │ ├── BillingStatus.php │ │ ├── BillingStatusReference.php │ │ ├── BillingTerm.php │ │ ├── BillingTermsReference.php │ │ ├── BoardDefault.php │ │ ├── BoardReference.php │ │ ├── ChargeCodeReference.php │ │ ├── ClassificationReference.php │ │ ├── ClosedInvoice.php │ │ ├── CompanyReference.php │ │ ├── CompanyTypeReference.php │ │ ├── ConfigurationReference.php │ │ ├── ContactReference.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── CreateAccountingBatchRequest.php │ │ ├── Currency.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── DeliveryMethod.php │ │ ├── EmailTemplateReference.php │ │ ├── Error.php │ │ ├── ExpenseTypeExemption.php │ │ ├── ExpenseTypeReference.php │ │ ├── ExportAccountingBatchRequest.php │ │ ├── GLExport.php │ │ ├── GLExportAdjustmentTransaction.php │ │ ├── GLExportAdjustmentTransactionDetail.php │ │ ├── GLExportCustomer.php │ │ ├── GLExportCustomerTaxLevel.php │ │ ├── GLExportExpense.php │ │ ├── GLExportExpenseBill.php │ │ ├── GLExportExpenseBillDetail.php │ │ ├── GLExportExpenseOffset.php │ │ ├── GLExportInventoryTransfer.php │ │ ├── GLExportInventoryTransferOffset.php │ │ ├── GLExportPurchaseTransaction.php │ │ ├── GLExportPurchaseTransactionDetail.php │ │ ├── GLExportPurchaseTransactionDetailTax.php │ │ ├── GLExportPurchaseTransactionTaxLevel.php │ │ ├── GLExportSettings.php │ │ ├── GLExportTransaction.php │ │ ├── GLExportTransactionDetail.php │ │ ├── GLExportTransactionDetailTaxLevel.php │ │ ├── GLExportTransactionTaxLevel.php │ │ ├── GLExportVendor.php │ │ ├── Invoice.php │ │ ├── InvoiceEmailTemplate.php │ │ ├── InvoiceReference.php │ │ ├── InvoiceTemplate.php │ │ ├── InvoiceTemplateReference.php │ │ ├── InvoiceTemplateSetup.php │ │ ├── IvItemReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── OpportunityReference.php │ │ ├── PatchOperation.php │ │ ├── Payment.php │ │ ├── PaymentMethodReference.php │ │ ├── ProductReference.php │ │ ├── ProductSubCategoryReference.php │ │ ├── ProductTypeExemption.php │ │ ├── ProductTypeReference.php │ │ ├── ProjectPhaseReference.php │ │ ├── ProjectReference.php │ │ ├── ProjectTypeReference.php │ │ ├── PurchaseOrderReference.php │ │ ├── SLAReference.php │ │ ├── ServiceSurveyReference.php │ │ ├── ServiceTypeReference.php │ │ ├── ShipmentMethodReference.php │ │ ├── SiteReference.php │ │ ├── StateReference.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TaxCode.php │ │ ├── TaxCodeLevel.php │ │ ├── TaxCodeLevelReference.php │ │ ├── TaxCodeReference.php │ │ ├── TaxCodeXRef.php │ │ ├── TaxIntegration.php │ │ ├── TaxIntegrationInfo.php │ │ ├── TaxableExpenseTypeLevel.php │ │ ├── TaxableProductTypeLevel.php │ │ ├── TaxableWorkRoleLevel.php │ │ ├── TaxableXRefLevel.php │ │ ├── TicketReference.php │ │ ├── TimeEntryReference.php │ │ ├── UnitOfMeasureReference.php │ │ ├── UnpostedExpense.php │ │ ├── UnpostedExpenseTaxableLevel.php │ │ ├── UnpostedInvoice.php │ │ ├── UnpostedInvoiceTaxableLevel.php │ │ ├── UnpostedProcurement.php │ │ ├── UnpostedProcurementTaxableLevel.php │ │ ├── Usage.php │ │ ├── ValidationError.php │ │ ├── WarehouseBinReference.php │ │ ├── WarehouseReference.php │ │ ├── WorkRoleExemption.php │ │ ├── WorkRoleReference.php │ │ └── WorkTypeReference.php │ ├── Internal │ │ ├── AgreementReference.php │ │ ├── AuditTrailEntryInsertRequest.php │ │ ├── AuditTrailObjects.php │ │ ├── ChargeToReference.php │ │ ├── ClassificationReference.php │ │ ├── CompanyReference.php │ │ ├── Count.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── Error.php │ │ ├── ExpenseEntryInternal.php │ │ ├── ExpenseReportReference.php │ │ ├── ExpenseTax.php │ │ ├── ExpenseTaxTypeReference.php │ │ ├── ExpenseTypeReference.php │ │ ├── Guid.php │ │ ├── IntegrationRequest.php │ │ ├── InvoiceReference.php │ │ ├── JObject.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── PatchOperation.php │ │ ├── PaymentMethodReference.php │ │ ├── Product.php │ │ ├── Session.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TicketReference.php │ │ ├── TimeEntryInternal.php │ │ ├── TimeSheetReference.php │ │ ├── UploadToMarketplaceRequest.php │ │ ├── ValidationError.php │ │ ├── WorkRoleReference.php │ │ └── WorkTypeReference.php │ ├── Marketing │ │ ├── ActivityReference.php │ │ ├── Campaign.php │ │ ├── CampaignAudit.php │ │ ├── CampaignStatus.php │ │ ├── CampaignStatusReference.php │ │ ├── CampaignSubType.php │ │ ├── CampaignSubTypeReference.php │ │ ├── CampaignType.php │ │ ├── CampaignTypeReference.php │ │ ├── Count.php │ │ ├── EmailOpened.php │ │ ├── Error.php │ │ ├── FormSubmitted.php │ │ ├── Group.php │ │ ├── GroupReference.php │ │ ├── LinkClicked.php │ │ ├── MarketingCompany.php │ │ ├── MarketingContact.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── OpportunityReference.php │ │ ├── PatchOperation.php │ │ ├── Usage.php │ │ └── ValidationError.php │ ├── Procurement │ │ ├── Adjustment.php │ │ ├── AdjustmentDetail.php │ │ ├── AdjustmentReference.php │ │ ├── AdjustmentType.php │ │ ├── AdjustmentTypeReference.php │ │ ├── AgreementReference.php │ │ ├── BillingCycleReference.php │ │ ├── BillingTermsReference.php │ │ ├── CatalogComponent.php │ │ ├── CatalogItem.php │ │ ├── CatalogItemReference.php │ │ ├── Category.php │ │ ├── CompanyReference.php │ │ ├── ContactReference.php │ │ ├── Conversion.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── EntityTypeReference.php │ │ ├── Error.php │ │ ├── InventoryByWarehouse.php │ │ ├── InvoiceReference.php │ │ ├── IvItemReference.php │ │ ├── LegacySubCategory.php │ │ ├── Manufacturer.php │ │ ├── ManufacturerReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── MinimumStockByWarehouse.php │ │ ├── NotificationRecipientReference.php │ │ ├── OpportunityReference.php │ │ ├── OpportunityStatusReference.php │ │ ├── PatchOperation.php │ │ ├── PricingBreak.php │ │ ├── PricingDetail.php │ │ ├── PricingSchedule.php │ │ ├── ProcurementSetting.php │ │ ├── ProductCategoryReference.php │ │ ├── ProductComponent.php │ │ ├── ProductDetach.php │ │ ├── ProductItem.php │ │ ├── ProductItemReference.php │ │ ├── ProductPickingShippingDetail.php │ │ ├── ProductRecurring.php │ │ ├── ProductSubCategoryReference.php │ │ ├── ProductType.php │ │ ├── ProductTypeReference.php │ │ ├── ProjectReference.php │ │ ├── PurchaseOrder.php │ │ ├── PurchaseOrderLineItem.php │ │ ├── PurchaseOrderStatus.php │ │ ├── PurchaseOrderStatusEmailTemplate.php │ │ ├── PurchaseOrderStatusEmailTemplateReference.php │ │ ├── PurchaseOrderStatusNotification.php │ │ ├── PurchaseOrderStatusReference.php │ │ ├── RmaAction.php │ │ ├── RmaDisposition.php │ │ ├── RmaStatus.php │ │ ├── RmaStatusEmailTemplate.php │ │ ├── RmaStatusEmailTemplateReference.php │ │ ├── RmaStatusNotification.php │ │ ├── RmaStatusReference.php │ │ ├── SLAReference.php │ │ ├── SalesOrderReference.php │ │ ├── ShipmentMethod.php │ │ ├── ShipmentMethodReference.php │ │ ├── SiteReference.php │ │ ├── SubCategory.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TaxCodeReference.php │ │ ├── TicketReference.php │ │ ├── UnitOfMeasure.php │ │ ├── UnitOfMeasureReference.php │ │ ├── Usage.php │ │ ├── ValidationError.php │ │ ├── Warehouse.php │ │ ├── WarehouseBin.php │ │ ├── WarehouseBinReference.php │ │ └── WarehouseReference.php │ ├── Project │ │ ├── ActivityReference.php │ │ ├── AgreementReference.php │ │ ├── BillingTermsReference.php │ │ ├── BoardReference.php │ │ ├── CompanyReference.php │ │ ├── ConfigurationReference.php │ │ ├── ContactReference.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── DocumentReference.php │ │ ├── Error.php │ │ ├── FilterValues.php │ │ ├── Guid.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── NoteTypeReference.php │ │ ├── OpportunityReference.php │ │ ├── PatchOperation.php │ │ ├── PhaseStatus.php │ │ ├── PhaseStatusReference.php │ │ ├── PriorityReference.php │ │ ├── ProductReference.php │ │ ├── Project.php │ │ ├── ProjectBoardReference.php │ │ ├── ProjectBoardTeam.php │ │ ├── ProjectBoardTeamMember.php │ │ ├── ProjectContact.php │ │ ├── ProjectNote.php │ │ ├── ProjectPhase.php │ │ ├── ProjectPhaseReference.php │ │ ├── ProjectReference.php │ │ ├── ProjectRoleReference.php │ │ ├── ProjectSecurityRole.php │ │ ├── ProjectSecurityRoleSetting.php │ │ ├── ProjectStatus.php │ │ ├── ProjectStatusReference.php │ │ ├── ProjectTeamMember.php │ │ ├── ProjectType.php │ │ ├── ProjectTypeReference.php │ │ ├── ScheduleEntryReference.php │ │ ├── ServiceCodeReference.php │ │ ├── ServiceItemReference.php │ │ ├── ServiceLocationReference.php │ │ ├── ServiceSourceReference.php │ │ ├── ServiceStatusReference.php │ │ ├── ServiceSubTypeReference.php │ │ ├── ServiceTypeReference.php │ │ ├── SiteReference.php │ │ ├── StatusIndicator.php │ │ ├── StatusIndicatorReference.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TaxCodeReference.php │ │ ├── Ticket.php │ │ ├── TicketNote.php │ │ ├── TicketTask.php │ │ ├── TimeEntryReference.php │ │ ├── Usage.php │ │ ├── ValidationError.php │ │ └── WorkRoleReference.php │ ├── Sales │ │ ├── Activity.php │ │ ├── ActivityStatus.php │ │ ├── ActivityStatusReference.php │ │ ├── ActivityType.php │ │ ├── ActivityTypeReference.php │ │ ├── Agreement.php │ │ ├── AgreementReference.php │ │ ├── AgreementTypeReference.php │ │ ├── BillingTermsReference.php │ │ ├── BoardReference.php │ │ ├── CampaignReference.php │ │ ├── Commission.php │ │ ├── CompanyReference.php │ │ ├── ContactReference.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── Error.php │ │ ├── Forecast.php │ │ ├── Guid.php │ │ ├── IvItemReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── NoteTypeReference.php │ │ ├── NotificationRecipientReference.php │ │ ├── Opportunity.php │ │ ├── OpportunityContact.php │ │ ├── OpportunityNote.php │ │ ├── OpportunityPriorityReference.php │ │ ├── OpportunityProbabilityReference.php │ │ ├── OpportunityRating.php │ │ ├── OpportunityRatingReference.php │ │ ├── OpportunityReference.php │ │ ├── OpportunitySalesRoleReference.php │ │ ├── OpportunityStage.php │ │ ├── OpportunityStageReference.php │ │ ├── OpportunityStatus.php │ │ ├── OpportunityStatusReference.php │ │ ├── OpportunityToAgreementConversion.php │ │ ├── OpportunityToProjectConversion.php │ │ ├── OpportunityToSalesOrderConversion.php │ │ ├── OpportunityToServiceTicketConversion.php │ │ ├── OpportunityType.php │ │ ├── OpportunityTypeReference.php │ │ ├── Order.php │ │ ├── OrderStatus.php │ │ ├── OrderStatusEmailTemplate.php │ │ ├── OrderStatusEmailTemplateReference.php │ │ ├── OrderStatusNotification.php │ │ ├── OrderStatusReference.php │ │ ├── PatchOperation.php │ │ ├── PriorityReference.php │ │ ├── ProductCategoryReference.php │ │ ├── ProductRecurring.php │ │ ├── ProductSubCategoryReference.php │ │ ├── Project.php │ │ ├── ProjectBoardReference.php │ │ ├── ProjectReference.php │ │ ├── ProjectStatusReference.php │ │ ├── ProjectTypeReference.php │ │ ├── ReminderReference.php │ │ ├── Role.php │ │ ├── SLAReference.php │ │ ├── SalesProbability.php │ │ ├── SalesQuota.php │ │ ├── SalesTeam.php │ │ ├── SalesTeamMember.php │ │ ├── SalesTeamReference.php │ │ ├── ScheduleStatusReference.php │ │ ├── ServiceItemReference.php │ │ ├── ServiceLocationReference.php │ │ ├── ServiceSourceReference.php │ │ ├── ServiceStatusReference.php │ │ ├── ServiceSubTypeReference.php │ │ ├── ServiceTeamReference.php │ │ ├── ServiceTypeReference.php │ │ ├── SiteReference.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TaxCodeReference.php │ │ ├── Team.php │ │ ├── Ticket.php │ │ ├── TicketReference.php │ │ ├── Usage.php │ │ ├── ValidationError.php │ │ ├── WorkRoleReference.php │ │ └── WorkTypeReference.php │ ├── Schedule │ │ ├── Calendar.php │ │ ├── ChargeCodeReference.php │ │ ├── Count.php │ │ ├── Error.php │ │ ├── Guid.php │ │ ├── Holiday.php │ │ ├── HolidayList.php │ │ ├── HolidayListReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── PatchOperation.php │ │ ├── PortalCalendar.php │ │ ├── ReminderReference.php │ │ ├── ScheduleColor.php │ │ ├── ScheduleDetail.php │ │ ├── ScheduleEntry.php │ │ ├── ScheduleEntryDetail.php │ │ ├── ScheduleEntryReference.php │ │ ├── ScheduleReminderTime.php │ │ ├── ScheduleSpanReference.php │ │ ├── ScheduleStatus.php │ │ ├── ScheduleStatusReference.php │ │ ├── ScheduleType.php │ │ ├── ScheduleTypeReference.php │ │ ├── ServiceLocationReference.php │ │ ├── Usage.php │ │ └── ValidationError.php │ ├── Service │ │ ├── ActivityReference.php │ │ ├── AgreementReference.php │ │ ├── Board.php │ │ ├── BoardAutoAssignResource.php │ │ ├── BoardAutoTemplate.php │ │ ├── BoardCopy.php │ │ ├── BoardExcludedMember.php │ │ ├── BoardInfo.php │ │ ├── BoardItem.php │ │ ├── BoardItemAssociation.php │ │ ├── BoardNotification.php │ │ ├── BoardReference.php │ │ ├── BoardStatus.php │ │ ├── BoardStatusNotification.php │ │ ├── BoardSubType.php │ │ ├── BoardTeam.php │ │ ├── BoardType.php │ │ ├── BoardTypeSubTypeItemAssociation.php │ │ ├── CalendarReference.php │ │ ├── Code.php │ │ ├── CompanyReference.php │ │ ├── ConfigurationReference.php │ │ ├── ContactReference.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── DocumentReference.php │ │ ├── Error.php │ │ ├── ExternalIntegrationStatusReference.php │ │ ├── FilterValues.php │ │ ├── GenericIdIdentifierReference.php │ │ ├── Guid.php │ │ ├── Impact.php │ │ ├── IntegratorLoginReference.php │ │ ├── KnowledgeBaseArticle.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── NotificationRecipientReference.php │ │ ├── OpportunityReference.php │ │ ├── PatchOperation.php │ │ ├── Priority.php │ │ ├── PriorityReference.php │ │ ├── ProductReference.php │ │ ├── SLA.php │ │ ├── SLAPriority.php │ │ ├── SLAReference.php │ │ ├── ScheduleEntryReference.php │ │ ├── ServiceCodeReference.php │ │ ├── ServiceEmailTemplate.php │ │ ├── ServiceEmailTemplateReference.php │ │ ├── ServiceItemReference.php │ │ ├── ServiceLocation.php │ │ ├── ServiceLocationReference.php │ │ ├── ServiceNote.php │ │ ├── ServiceSignoff.php │ │ ├── ServiceSignoffReference.php │ │ ├── ServiceSourceReference.php │ │ ├── ServiceStatusReference.php │ │ ├── ServiceSubTypeReference.php │ │ ├── ServiceSurvey.php │ │ ├── ServiceSurveyQuestion.php │ │ ├── ServiceSurveyQuestionOption.php │ │ ├── ServiceSurveyReference.php │ │ ├── ServiceTeam.php │ │ ├── ServiceTeamReference.php │ │ ├── ServiceTemplate.php │ │ ├── ServiceTemplateReference.php │ │ ├── ServiceTypeReference.php │ │ ├── Severity.php │ │ ├── SiteReference.php │ │ ├── Source.php │ │ ├── StatusExternalIntegrationReference.php │ │ ├── StatusIndicatorReference.php │ │ ├── SuccessResponse.php │ │ ├── SurveyOption.php │ │ ├── SurveyResult.php │ │ ├── SurveyResultDetail.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── Task.php │ │ ├── TeamMember.php │ │ ├── TemplateGeneratedCountsModel.php │ │ ├── Ticket.php │ │ ├── TicketMerge.php │ │ ├── TicketPipeline.php │ │ ├── TicketReference.php │ │ ├── TicketSync.php │ │ ├── TicketsPipeline.php │ │ ├── TimeEntryReference.php │ │ ├── Usage.php │ │ ├── ValidationError.php │ │ ├── WorkRoleReference.php │ │ └── WorkTypeReference.php │ ├── System │ │ ├── ActivityStatusReference.php │ │ ├── ActivityTypeReference.php │ │ ├── AddressFormatReference.php │ │ ├── ApiMember.php │ │ ├── AuditTrailEntry.php │ │ ├── AuthAnvil.php │ │ ├── AutoSyncTime.php │ │ ├── AutomateScriptReference.php │ │ ├── BatchRequest.php │ │ ├── BatchResponse.php │ │ ├── BoardReference.php │ │ ├── CalendarReference.php │ │ ├── CalendarSetupReference.php │ │ ├── CallbackEntry.php │ │ ├── CentralServiceEula.php │ │ ├── Certification.php │ │ ├── CertificationReference.php │ │ ├── CloudBusMessage.php │ │ ├── CompanyReference.php │ │ ├── CompanyStatusReference.php │ │ ├── CompanyTeam.php │ │ ├── ConnectWiseHostedScreen.php │ │ ├── ConnectWiseHostedSetup.php │ │ ├── ContactReference.php │ │ ├── CorporateStructure.php │ │ ├── CorporateStructureLevel.php │ │ ├── CorporateStructureLevelReference.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── Crm.php │ │ ├── CurrencyReference.php │ │ ├── CustomReport.php │ │ ├── CustomReportParameter.php │ │ ├── CustomReportReference.php │ │ ├── Department.php │ │ ├── DepartmentInfo.php │ │ ├── DepartmentLocation.php │ │ ├── DepartmentLocationInfo.php │ │ ├── DepartmentMananager.php │ │ ├── DispatchMember.php │ │ ├── DocumentInfo.php │ │ ├── DocumentReference.php │ │ ├── DocumentSetup.php │ │ ├── DutyManager.php │ │ ├── EPayConfiguration.php │ │ ├── EmailConnector.php │ │ ├── EmailConnectorParsingRule.php │ │ ├── EmailConnectorParsingStyle.php │ │ ├── EmailConnectorParsingStyleReference.php │ │ ├── EmailConnectorParsingTypeReference.php │ │ ├── EmailConnectorParsingVariableReference.php │ │ ├── EmailConnectorReference.php │ │ ├── EmailToken.php │ │ ├── EndpointRequest.php │ │ ├── EndpointResponse.php │ │ ├── Error.php │ │ ├── Eula.php │ │ ├── GenericBoardTeamReference.php │ │ ├── GroupReference.php │ │ ├── Imap.php │ │ ├── ImapSetupReference.php │ │ ├── ImportMassMaintenance.php │ │ ├── InOutBoard.php │ │ ├── InOutType.php │ │ ├── InOutTypeReference.php │ │ ├── Info.php │ │ ├── IntegratorLogin.php │ │ ├── JArray.php │ │ ├── JObject.php │ │ ├── KPI.php │ │ ├── KPICategory.php │ │ ├── KPICategoryReference.php │ │ ├── KPIReference.php │ │ ├── KnowledgebaseArticle.php │ │ ├── Lab.php │ │ ├── LdapConfiguration.php │ │ ├── LdapConfigurationReference.php │ │ ├── LicenseBit.php │ │ ├── Link.php │ │ ├── LocaleInfo.php │ │ ├── LocaleReference.php │ │ ├── Location.php │ │ ├── LocationDepartment.php │ │ ├── LocationInfo.php │ │ ├── LocationWorkRole.php │ │ ├── ManagementNetworkSecurity.php │ │ ├── Member.php │ │ ├── MemberAccrual.php │ │ ├── MemberCertification.php │ │ ├── MemberDeactivation.php │ │ ├── MemberDelegation.php │ │ ├── MemberInfo.php │ │ ├── MemberReference.php │ │ ├── MemberSkill.php │ │ ├── MemberTypeReference.php │ │ ├── MenuEntry.php │ │ ├── MenuEntryLocation.php │ │ ├── MenuLocationReference.php │ │ ├── Metadata.php │ │ ├── MyCompanyCOORole.php │ │ ├── MyCompanyControllerRole.php │ │ ├── MyCompanyDispatchRole.php │ │ ├── MyCompanyDutyManagerRole.php │ │ ├── MyCompanyPresidentRole.php │ │ ├── MyCompanyServiceManagerRole.php │ │ ├── MyMember.php │ │ ├── MySecurity.php │ │ ├── NotificationRecipient.php │ │ ├── NotificationRecipientReference.php │ │ ├── NotifyTypeReference.php │ │ ├── Opportunity.php │ │ ├── OrderStatusReference.php │ │ ├── OsGradeWeight.php │ │ ├── Other.php │ │ ├── ParsingType.php │ │ ├── ParsingVariable.php │ │ ├── PatchOperation.php │ │ ├── PortalConfigurationReference.php │ │ ├── PortalReport.php │ │ ├── PriorityReference.php │ │ ├── ProjectBoardReference.php │ │ ├── ProjectManager.php │ │ ├── ProjectStatusReference.php │ │ ├── Report.php │ │ ├── ReportCard.php │ │ ├── ReportCardDetail.php │ │ ├── ReportCardReference.php │ │ ├── ReportDataResponse.php │ │ ├── ReportingService.php │ │ ├── SalesActivity.php │ │ ├── SalesTeam.php │ │ ├── SecurityRole.php │ │ ├── SecurityRoleReference.php │ │ ├── SecurityRoleSetting.php │ │ ├── Service.php │ │ ├── ServiceItemReference.php │ │ ├── ServiceLocationReference.php │ │ ├── ServiceManger.php │ │ ├── ServiceSourceReference.php │ │ ├── ServiceStatusReference.php │ │ ├── ServiceSubTypeReference.php │ │ ├── ServiceTeam.php │ │ ├── ServiceTemplate.php │ │ ├── ServiceTemplateReference.php │ │ ├── ServiceTypeReference.php │ │ ├── SetupScreen.php │ │ ├── Skill.php │ │ ├── SkillCategory.php │ │ ├── SkillCategoryReference.php │ │ ├── SkillReference.php │ │ ├── SsoConfiguration.php │ │ ├── StandardNoteInfo.php │ │ ├── StatusWorkflow.php │ │ ├── StructureReference.php │ │ ├── SuccessResponse.php │ │ ├── Survey.php │ │ ├── SurveyQuestion.php │ │ ├── SurveyQuestionReference.php │ │ ├── SurveyQuestionValue.php │ │ ├── SurveyReference.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── SystemMenuEntryReference.php │ │ ├── SystemSetting.php │ │ ├── TeamRoleReference.php │ │ ├── TimeExpense.php │ │ ├── TimeZone.php │ │ ├── TimeZoneReference.php │ │ ├── TimeZoneSetup.php │ │ ├── TimeZoneSetupReference.php │ │ ├── TodayPageCategory.php │ │ ├── Token.php │ │ ├── TrackReference.php │ │ ├── Type.php │ │ ├── Usage.php │ │ ├── UserDefinedField.php │ │ ├── UserDefinedFieldOption.php │ │ ├── UserDefinedFieldReference.php │ │ ├── ValidationError.php │ │ ├── WarehouseBinReference.php │ │ ├── WarehouseReference.php │ │ ├── WorkRoleReference.php │ │ ├── WorkTypeReference.php │ │ ├── Workflow.php │ │ ├── WorkflowAction.php │ │ ├── WorkflowActionAutomateParameter.php │ │ ├── WorkflowAttachment.php │ │ ├── WorkflowEvent.php │ │ ├── WorkflowNotifyType.php │ │ ├── WorkflowTableType.php │ │ ├── WorkflowTableTypeReference.php │ │ ├── WorkflowTrigger.php │ │ └── WorkflowTriggerOption.php │ ├── Time │ │ ├── ActivityStopwatch.php │ │ ├── AgreementReference.php │ │ ├── AuditSource.php │ │ ├── AuditType.php │ │ ├── ChargeCode.php │ │ ├── ChargeCodeExpenseType.php │ │ ├── ChargeCodeReference.php │ │ ├── CompanyReference.php │ │ ├── Count.php │ │ ├── CustomFieldValue.php │ │ ├── Error.php │ │ ├── ExpenseTypeReference.php │ │ ├── ExternalWorkTypeIntegrationReference.php │ │ ├── Guid.php │ │ ├── InvoiceReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── PatchOperation.php │ │ ├── ScheduleStopwatch.php │ │ ├── ServiceStatusReference.php │ │ ├── SuccessResponse.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TicketReference.php │ │ ├── TicketStopwatch.php │ │ ├── TimeAccrual.php │ │ ├── TimeAccrualDetail.php │ │ ├── TimeAccrualReference.php │ │ ├── TimeEntry.php │ │ ├── TimeEntryAudit.php │ │ ├── TimePeriod.php │ │ ├── TimePeriodSetup.php │ │ ├── TimePeriodSetupDefaults.php │ │ ├── TimePeriodSetupReference.php │ │ ├── TimeSheet.php │ │ ├── TimeSheetAudit.php │ │ ├── TimeSheetReference.php │ │ ├── Usage.php │ │ ├── ValidationError.php │ │ ├── WorkRole.php │ │ ├── WorkRoleLocation.php │ │ ├── WorkRoleReference.php │ │ ├── WorkType.php │ │ ├── WorkTypeExternalIntegrationReference.php │ │ └── WorkTypeReference.php │ └── map.json ├── v2019_1 │ ├── Company │ │ ├── ActivityStatusReference.php │ │ ├── ActivityTypeReference.php │ │ ├── AddressFormat.php │ │ ├── AddressFormatReference.php │ │ ├── AgreementReference.php │ │ ├── AgreementTypeReference.php │ │ ├── BillingDeliveryReference.php │ │ ├── BillingTermsReference.php │ │ ├── CalendarReference.php │ │ ├── CatalogItemReference.php │ │ ├── ClearPickerRequest.php │ │ ├── CommunicationTypeReference.php │ │ ├── Company.php │ │ ├── CompanyCustomNote.php │ │ ├── CompanyGroup.php │ │ ├── CompanyManagementSummary.php │ │ ├── CompanyMerge.php │ │ ├── CompanyNote.php │ │ ├── CompanyNoteType.php │ │ ├── CompanyPickerItem.php │ │ ├── CompanyReference.php │ │ ├── CompanySite.php │ │ ├── CompanyStatus.php │ │ ├── CompanyStatusReference.php │ │ ├── CompanyTeam.php │ │ ├── CompanyType.php │ │ ├── CompanyTypeAssociation.php │ │ ├── CompanyTypeInfo.php │ │ ├── CompanyTypeReference.php │ │ ├── Configuration.php │ │ ├── ConfigurationQuestion.php │ │ ├── ConfigurationStatus.php │ │ ├── ConfigurationStatusReference.php │ │ ├── ConfigurationType.php │ │ ├── ConfigurationTypeQuestion.php │ │ ├── ConfigurationTypeQuestionReference.php │ │ ├── ConfigurationTypeQuestionValue.php │ │ ├── ConfigurationTypeReference.php │ │ ├── Contact.php │ │ ├── ContactCommunication.php │ │ ├── ContactCommunicationItem.php │ │ ├── ContactDepartment.php │ │ ├── ContactDepartmentReference.php │ │ ├── ContactGroup.php │ │ ├── ContactNote.php │ │ ├── ContactReference.php │ │ ├── ContactRelationship.php │ │ ├── ContactTrack.php │ │ ├── ContactType.php │ │ ├── ContactTypeAssociation.php │ │ ├── ContactTypeReference.php │ │ ├── Count.php │ │ ├── Country.php │ │ ├── CountryReference.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── EntityType.php │ │ ├── EntityTypeReference.php │ │ ├── Error.php │ │ ├── GroupReference.php │ │ ├── Guid.php │ │ ├── IntegratorLoginReference.php │ │ ├── InvoiceTemplateReference.php │ │ ├── IvItemReference.php │ │ ├── KaseyaKey.php │ │ ├── ManagedDevicesIntegration.php │ │ ├── ManagedDevicesIntegrationCrossReference.php │ │ ├── ManagedDevicesIntegrationLogin.php │ │ ├── ManagedDevicesIntegrationNotification.php │ │ ├── ManagedDevicesIntegrationReference.php │ │ ├── Management.php │ │ ├── ManagementBackup.php │ │ ├── ManagementItSolution.php │ │ ├── ManagementItSolutionAgreementInterfaceParameter.php │ │ ├── ManagementLogDocumentInfo.php │ │ ├── ManagementReportNotification.php │ │ ├── ManagementSolutionReference.php │ │ ├── ManufacturerReference.php │ │ ├── MarketDescription.php │ │ ├── MarketDescriptionReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── NoteTypeReference.php │ │ ├── NotificationRecipientReference.php │ │ ├── OpportunityStatusReference.php │ │ ├── OwnershipType.php │ │ ├── OwnershipTypeReference.php │ │ ├── PatchOperation.php │ │ ├── PortalConfiguration.php │ │ ├── PortalConfigurationInvoiceSetup.php │ │ ├── PortalConfigurationOpportunitySetup.php │ │ ├── PortalConfigurationPasswordEmailSetup.php │ │ ├── PortalConfigurationPaymentProcessor.php │ │ ├── PortalConfigurationPaymentProcessorReference.php │ │ ├── PortalConfigurationProjectSetup.php │ │ ├── PortalConfigurationReference.php │ │ ├── PortalConfigurationServiceSetup.php │ │ ├── PortalSecurity.php │ │ ├── PortalSecurityLevel.php │ │ ├── PortalSecuritySetting.php │ │ ├── PricingScheduleReference.php │ │ ├── RelationshipReference.php │ │ ├── RequestPasswordRequest.php │ │ ├── SLAReference.php │ │ ├── ServiceSignoffReference.php │ │ ├── ServiceTemplateReference.php │ │ ├── SicCodeReference.php │ │ ├── SiteReference.php │ │ ├── State.php │ │ ├── SuccessResponse.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TaxCodeReference.php │ │ ├── TeamRole.php │ │ ├── TeamRoleReference.php │ │ ├── TimeZoneSetupReference.php │ │ ├── Track.php │ │ ├── TrackAction.php │ │ ├── TrackReference.php │ │ ├── Usage.php │ │ ├── ValidatePortalRequest.php │ │ ├── ValidatePortalResponse.php │ │ └── ValidationError.php │ ├── Expense │ │ ├── AgreementReference.php │ │ ├── AuditSource.php │ │ ├── AuditType.php │ │ ├── Classification.php │ │ ├── ClassificationReference.php │ │ ├── CompanyReference.php │ │ ├── Count.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── Error.php │ │ ├── ExpenseEntry.php │ │ ├── ExpenseEntryAudit.php │ │ ├── ExpenseReport.php │ │ ├── ExpenseReportAudit.php │ │ ├── ExpenseReportReference.php │ │ ├── ExpenseTax.php │ │ ├── ExpenseTaxTypeInfo.php │ │ ├── ExpenseTaxTypeReference.php │ │ ├── ExpenseType.php │ │ ├── ExpenseTypeExternalIntegrationReference.php │ │ ├── ExpenseTypeReference.php │ │ ├── ExternalExpenseTypeIntegrationReference.php │ │ ├── Guid.php │ │ ├── InvoiceReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── PatchOperation.php │ │ ├── PaymentMethodReference.php │ │ ├── PaymentType.php │ │ ├── SuccessResponse.php │ │ └── ValidationError.php │ ├── Finance │ │ ├── AccountingBatch.php │ │ ├── AccountingPackage.php │ │ ├── Addition.php │ │ ├── Adjustment.php │ │ ├── Agreement.php │ │ ├── AgreementBatchSetup.php │ │ ├── AgreementReference.php │ │ ├── AgreementSite.php │ │ ├── AgreementType.php │ │ ├── AgreementTypeBoardDefault.php │ │ ├── AgreementTypeReference.php │ │ ├── AgreementTypeWorkRole.php │ │ ├── AgreementTypeWorkRoleExclusion.php │ │ ├── AgreementTypeWorkType.php │ │ ├── AgreementTypeWorkTypeExclusion.php │ │ ├── AgreementWorkRole.php │ │ ├── AgreementWorkRoleExclusion.php │ │ ├── AgreementWorkType.php │ │ ├── AgreementWorkTypeExclusion.php │ │ ├── BillingCycle.php │ │ ├── BillingCycleReference.php │ │ ├── BillingSetup.php │ │ ├── BillingSetupRouting.php │ │ ├── BillingStatus.php │ │ ├── BillingStatusReference.php │ │ ├── BillingTerm.php │ │ ├── BillingTermsReference.php │ │ ├── BoardDefault.php │ │ ├── BoardReference.php │ │ ├── ChargeCodeReference.php │ │ ├── ClassificationReference.php │ │ ├── ClosedInvoice.php │ │ ├── CompanyReference.php │ │ ├── CompanyTypeReference.php │ │ ├── ConfigurationReference.php │ │ ├── ContactReference.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── CreateAccountingBatchRequest.php │ │ ├── Currency.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── DeliveryMethod.php │ │ ├── EmailTemplateReference.php │ │ ├── Error.php │ │ ├── ExpenseTypeExemption.php │ │ ├── ExpenseTypeReference.php │ │ ├── ExportAccountingBatchRequest.php │ │ ├── GLAccount.php │ │ ├── GLCaption.php │ │ ├── GLExport.php │ │ ├── GLExportAdjustmentTransaction.php │ │ ├── GLExportAdjustmentTransactionDetail.php │ │ ├── GLExportCustomer.php │ │ ├── GLExportCustomerTaxLevel.php │ │ ├── GLExportExpense.php │ │ ├── GLExportExpenseBill.php │ │ ├── GLExportExpenseBillDetail.php │ │ ├── GLExportExpenseOffset.php │ │ ├── GLExportInventoryTransfer.php │ │ ├── GLExportInventoryTransferOffset.php │ │ ├── GLExportPurchaseTransaction.php │ │ ├── GLExportPurchaseTransactionDetail.php │ │ ├── GLExportPurchaseTransactionDetailTax.php │ │ ├── GLExportPurchaseTransactionTaxLevel.php │ │ ├── GLExportSettings.php │ │ ├── GLExportTransaction.php │ │ ├── GLExportTransactionDetail.php │ │ ├── GLExportTransactionDetailTaxLevel.php │ │ ├── GLExportTransactionTaxLevel.php │ │ ├── GLExportVendor.php │ │ ├── Invoice.php │ │ ├── InvoiceEmailTemplate.php │ │ ├── InvoiceReference.php │ │ ├── InvoiceTemplate.php │ │ ├── InvoiceTemplateReference.php │ │ ├── InvoiceTemplateSetup.php │ │ ├── IvItemReference.php │ │ ├── MappedRecordReference.php │ │ ├── MappedType.php │ │ ├── MappedTypeReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── OpportunityReference.php │ │ ├── PatchOperation.php │ │ ├── Payment.php │ │ ├── PaymentMethodReference.php │ │ ├── ProductReference.php │ │ ├── ProductSubCategoryReference.php │ │ ├── ProductTypeExemption.php │ │ ├── ProductTypeReference.php │ │ ├── ProjectPhaseReference.php │ │ ├── ProjectReference.php │ │ ├── ProjectTypeReference.php │ │ ├── PurchaseOrderReference.php │ │ ├── SLAReference.php │ │ ├── ServiceSurveyReference.php │ │ ├── ServiceTypeReference.php │ │ ├── ShipmentMethodReference.php │ │ ├── SiteReference.php │ │ ├── StateReference.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TaxCode.php │ │ ├── TaxCodeLevel.php │ │ ├── TaxCodeLevelReference.php │ │ ├── TaxCodeReference.php │ │ ├── TaxCodeXRef.php │ │ ├── TaxIntegration.php │ │ ├── TaxIntegrationInfo.php │ │ ├── TaxableExpenseTypeLevel.php │ │ ├── TaxableProductTypeLevel.php │ │ ├── TaxableWorkRoleLevel.php │ │ ├── TaxableXRefLevel.php │ │ ├── TicketReference.php │ │ ├── TimeEntryReference.php │ │ ├── UnitOfMeasureReference.php │ │ ├── UnpostedExpense.php │ │ ├── UnpostedExpenseTaxableLevel.php │ │ ├── UnpostedInvoice.php │ │ ├── UnpostedInvoiceTaxableLevel.php │ │ ├── UnpostedProcurement.php │ │ ├── UnpostedProcurementTaxableLevel.php │ │ ├── Usage.php │ │ ├── ValidationError.php │ │ ├── WarehouseBinReference.php │ │ ├── WarehouseReference.php │ │ ├── WorkRoleExemption.php │ │ ├── WorkRoleReference.php │ │ └── WorkTypeReference.php │ ├── Internal │ │ ├── AgreementReference.php │ │ ├── BoardReference.php │ │ ├── CalendarReference.php │ │ ├── CentralServiceEula.php │ │ ├── ChargeToReference.php │ │ ├── ClassificationReference.php │ │ ├── CloudBusMessage.php │ │ ├── CompanyReference.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── DocumentReference.php │ │ ├── Error.php │ │ ├── Eula.php │ │ ├── ExpenseEntryInternal.php │ │ ├── ExpenseReportReference.php │ │ ├── ExpenseTax.php │ │ ├── ExpenseTaxTypeReference.php │ │ ├── ExpenseTypeReference.php │ │ ├── Guid.php │ │ ├── InvoiceReference.php │ │ ├── Lab.php │ │ ├── LdapConfigurationReference.php │ │ ├── MemberNotificationSetting.php │ │ ├── MemberReference.php │ │ ├── MemberTypeReference.php │ │ ├── Metadata.php │ │ ├── MyMember.php │ │ ├── MySecurity.php │ │ ├── PatchOperation.php │ │ ├── PaymentMethodReference.php │ │ ├── ProjectBoardReference.php │ │ ├── ReportCardReference.php │ │ ├── SecurityRoleReference.php │ │ ├── ServiceLocationReference.php │ │ ├── ServiceStatusReference.php │ │ ├── Session.php │ │ ├── StructureReference.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TicketPipeline.php │ │ ├── TicketReference.php │ │ ├── TicketsPipeline.php │ │ ├── TimeEntryInternal.php │ │ ├── TimeSheetReference.php │ │ ├── TimeZoneSetupReference.php │ │ ├── UploadToMarketplaceRequest.php │ │ ├── ValidationError.php │ │ ├── WarehouseBinReference.php │ │ ├── WarehouseReference.php │ │ ├── WorkRoleReference.php │ │ └── WorkTypeReference.php │ ├── Marketing │ │ ├── ActivityReference.php │ │ ├── Campaign.php │ │ ├── CampaignAudit.php │ │ ├── CampaignStatus.php │ │ ├── CampaignStatusReference.php │ │ ├── CampaignSubType.php │ │ ├── CampaignSubTypeReference.php │ │ ├── CampaignType.php │ │ ├── CampaignTypeReference.php │ │ ├── Count.php │ │ ├── EmailOpened.php │ │ ├── Error.php │ │ ├── FormSubmitted.php │ │ ├── Group.php │ │ ├── GroupReference.php │ │ ├── LinkClicked.php │ │ ├── MarketingCompany.php │ │ ├── MarketingContact.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── OpportunityReference.php │ │ ├── PatchOperation.php │ │ ├── Usage.php │ │ └── ValidationError.php │ ├── Procurement │ │ ├── Adjustment.php │ │ ├── AdjustmentDetail.php │ │ ├── AdjustmentReference.php │ │ ├── AdjustmentType.php │ │ ├── AdjustmentTypeReference.php │ │ ├── AgreementReference.php │ │ ├── BillingCycleReference.php │ │ ├── BillingTermsReference.php │ │ ├── BulkResult.php │ │ ├── CatalogComponent.php │ │ ├── CatalogItem.php │ │ ├── CatalogItemReference.php │ │ ├── Category.php │ │ ├── CompanyReference.php │ │ ├── ContactReference.php │ │ ├── Conversion.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── EntityTypeReference.php │ │ ├── Error.php │ │ ├── ErrorResponseMessage.php │ │ ├── IRestIdentifiedItem.php │ │ ├── IdCollection.php │ │ ├── InventoryByWarehouse.php │ │ ├── InvoiceReference.php │ │ ├── IvItemReference.php │ │ ├── LegacySubCategory.php │ │ ├── Manufacturer.php │ │ ├── ManufacturerReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── MinimumStockByWarehouse.php │ │ ├── NotificationRecipientReference.php │ │ ├── OpportunityReference.php │ │ ├── OpportunityStatusReference.php │ │ ├── PatchOperation.php │ │ ├── PricingBreak.php │ │ ├── PricingDetail.php │ │ ├── PricingSchedule.php │ │ ├── ProcurementSetting.php │ │ ├── ProductCategoryReference.php │ │ ├── ProductComponent.php │ │ ├── ProductDemand.php │ │ ├── ProductDetach.php │ │ ├── ProductItem.php │ │ ├── ProductItemReference.php │ │ ├── ProductPickingShippingDetail.php │ │ ├── ProductRecurring.php │ │ ├── ProductSubCategoryReference.php │ │ ├── ProductType.php │ │ ├── ProductTypeReference.php │ │ ├── ProjectReference.php │ │ ├── PurchaseOrder.php │ │ ├── PurchaseOrderLineItem.php │ │ ├── PurchaseOrderStatus.php │ │ ├── PurchaseOrderStatusEmailTemplate.php │ │ ├── PurchaseOrderStatusEmailTemplateReference.php │ │ ├── PurchaseOrderStatusNotification.php │ │ ├── PurchaseOrderStatusReference.php │ │ ├── PurchasingDemand.php │ │ ├── ResultInfo.php │ │ ├── RmaAction.php │ │ ├── RmaDisposition.php │ │ ├── RmaStatus.php │ │ ├── RmaStatusEmailTemplate.php │ │ ├── RmaStatusEmailTemplateReference.php │ │ ├── RmaStatusNotification.php │ │ ├── RmaStatusReference.php │ │ ├── SLAReference.php │ │ ├── SalesOrderReference.php │ │ ├── ShipmentMethod.php │ │ ├── ShipmentMethodReference.php │ │ ├── SiteReference.php │ │ ├── SubCategory.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TaxCodeReference.php │ │ ├── TicketReference.php │ │ ├── UnitOfMeasure.php │ │ ├── UnitOfMeasureReference.php │ │ ├── Usage.php │ │ ├── ValidationError.php │ │ ├── Warehouse.php │ │ ├── WarehouseBin.php │ │ ├── WarehouseBinReference.php │ │ └── WarehouseReference.php │ ├── Project │ │ ├── ActivityReference.php │ │ ├── AgreementReference.php │ │ ├── BillingTermsReference.php │ │ ├── BoardReference.php │ │ ├── CompanyReference.php │ │ ├── ConfigurationReference.php │ │ ├── ContactReference.php │ │ ├── Convert.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── DocumentReference.php │ │ ├── Error.php │ │ ├── FilterValues.php │ │ ├── Guid.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── NoteTypeReference.php │ │ ├── OpportunityReference.php │ │ ├── PatchOperation.php │ │ ├── PhaseStatus.php │ │ ├── PhaseStatusReference.php │ │ ├── PriorityReference.php │ │ ├── ProductReference.php │ │ ├── Project.php │ │ ├── ProjectBoardReference.php │ │ ├── ProjectBoardTeam.php │ │ ├── ProjectBoardTeamMember.php │ │ ├── ProjectContact.php │ │ ├── ProjectNote.php │ │ ├── ProjectPhase.php │ │ ├── ProjectPhaseReference.php │ │ ├── ProjectReference.php │ │ ├── ProjectRoleReference.php │ │ ├── ProjectSecurityRole.php │ │ ├── ProjectSecurityRoleSetting.php │ │ ├── ProjectStatus.php │ │ ├── ProjectStatusReference.php │ │ ├── ProjectTeamMember.php │ │ ├── ProjectType.php │ │ ├── ProjectTypeReference.php │ │ ├── ScheduleEntryReference.php │ │ ├── ServiceCodeReference.php │ │ ├── ServiceItemReference.php │ │ ├── ServiceLocationReference.php │ │ ├── ServiceSourceReference.php │ │ ├── ServiceStatusReference.php │ │ ├── ServiceSubTypeReference.php │ │ ├── ServiceTypeReference.php │ │ ├── SiteReference.php │ │ ├── StatusIndicator.php │ │ ├── StatusIndicatorReference.php │ │ ├── SuccessResponse.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TaxCodeReference.php │ │ ├── Ticket.php │ │ ├── TicketNote.php │ │ ├── TicketTask.php │ │ ├── TimeEntryReference.php │ │ ├── Usage.php │ │ ├── ValidationError.php │ │ └── WorkRoleReference.php │ ├── Sales │ │ ├── Activity.php │ │ ├── ActivityStatus.php │ │ ├── ActivityStatusReference.php │ │ ├── ActivityType.php │ │ ├── ActivityTypeReference.php │ │ ├── Agreement.php │ │ ├── AgreementReference.php │ │ ├── AgreementTypeReference.php │ │ ├── BillingCycleReference.php │ │ ├── BillingTermsReference.php │ │ ├── BoardReference.php │ │ ├── CampaignReference.php │ │ ├── Commission.php │ │ ├── CompanyReference.php │ │ ├── ContactReference.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── Error.php │ │ ├── Forecast.php │ │ ├── Guid.php │ │ ├── InvoiceTemplateReference.php │ │ ├── IvItemReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── NoteTypeReference.php │ │ ├── NotificationRecipientReference.php │ │ ├── Opportunity.php │ │ ├── OpportunityContact.php │ │ ├── OpportunityNote.php │ │ ├── OpportunityPriorityReference.php │ │ ├── OpportunityProbabilityReference.php │ │ ├── OpportunityRating.php │ │ ├── OpportunityRatingReference.php │ │ ├── OpportunityReference.php │ │ ├── OpportunitySalesRoleReference.php │ │ ├── OpportunityStage.php │ │ ├── OpportunityStageReference.php │ │ ├── OpportunityStatus.php │ │ ├── OpportunityStatusReference.php │ │ ├── OpportunityToAgreementConversion.php │ │ ├── OpportunityToProjectConversion.php │ │ ├── OpportunityToSalesOrderConversion.php │ │ ├── OpportunityToServiceTicketConversion.php │ │ ├── OpportunityType.php │ │ ├── OpportunityTypeReference.php │ │ ├── Order.php │ │ ├── OrderStatus.php │ │ ├── OrderStatusEmailTemplate.php │ │ ├── OrderStatusEmailTemplateReference.php │ │ ├── OrderStatusNotification.php │ │ ├── OrderStatusReference.php │ │ ├── PatchOperation.php │ │ ├── PriorityReference.php │ │ ├── ProductCategoryReference.php │ │ ├── ProductRecurring.php │ │ ├── ProductSubCategoryReference.php │ │ ├── Project.php │ │ ├── ProjectBoardReference.php │ │ ├── ProjectReference.php │ │ ├── ProjectStatusReference.php │ │ ├── ProjectTypeReference.php │ │ ├── ReminderReference.php │ │ ├── Role.php │ │ ├── SLAReference.php │ │ ├── SalesProbability.php │ │ ├── SalesQuota.php │ │ ├── SalesTeam.php │ │ ├── SalesTeamMember.php │ │ ├── SalesTeamReference.php │ │ ├── ScheduleStatusReference.php │ │ ├── ServiceItemReference.php │ │ ├── ServiceLocationReference.php │ │ ├── ServiceSourceReference.php │ │ ├── ServiceStatusReference.php │ │ ├── ServiceSubTypeReference.php │ │ ├── ServiceTeamReference.php │ │ ├── ServiceTypeReference.php │ │ ├── SiteReference.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TaxCodeReference.php │ │ ├── Team.php │ │ ├── Ticket.php │ │ ├── TicketReference.php │ │ ├── Usage.php │ │ ├── ValidationError.php │ │ ├── WorkRoleReference.php │ │ └── WorkTypeReference.php │ ├── Schedule │ │ ├── Calendar.php │ │ ├── ChargeCodeReference.php │ │ ├── Count.php │ │ ├── Error.php │ │ ├── Guid.php │ │ ├── Holiday.php │ │ ├── HolidayList.php │ │ ├── HolidayListReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── PatchOperation.php │ │ ├── PortalCalendar.php │ │ ├── ReminderReference.php │ │ ├── ScheduleColor.php │ │ ├── ScheduleDetail.php │ │ ├── ScheduleEntry.php │ │ ├── ScheduleEntryDetail.php │ │ ├── ScheduleEntryReference.php │ │ ├── ScheduleReminderTime.php │ │ ├── ScheduleSpanReference.php │ │ ├── ScheduleStatus.php │ │ ├── ScheduleStatusReference.php │ │ ├── ScheduleType.php │ │ ├── ScheduleTypeReference.php │ │ ├── ServiceLocationReference.php │ │ ├── Usage.php │ │ └── ValidationError.php │ ├── Service │ │ ├── ActivityReference.php │ │ ├── AgreementReference.php │ │ ├── Board.php │ │ ├── BoardAutoAssignResource.php │ │ ├── BoardAutoTemplate.php │ │ ├── BoardCopy.php │ │ ├── BoardExcludedMember.php │ │ ├── BoardInfo.php │ │ ├── BoardItem.php │ │ ├── BoardItemAssociation.php │ │ ├── BoardNotification.php │ │ ├── BoardReference.php │ │ ├── BoardStatus.php │ │ ├── BoardStatusNotification.php │ │ ├── BoardSubType.php │ │ ├── BoardTeam.php │ │ ├── BoardType.php │ │ ├── BoardTypeInfo.php │ │ ├── BoardTypeSubTypeItemAssociation.php │ │ ├── CalendarReference.php │ │ ├── Code.php │ │ ├── CompanyReference.php │ │ ├── ConfigurationReference.php │ │ ├── ContactReference.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── CurrencyReference.php │ │ ├── DocumentReference.php │ │ ├── Error.php │ │ ├── ExternalIntegrationStatusReference.php │ │ ├── FilterValues.php │ │ ├── GenericIdIdentifierReference.php │ │ ├── Guid.php │ │ ├── Impact.php │ │ ├── IntegratorLoginReference.php │ │ ├── KnowledgeBaseArticle.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── NotificationRecipientReference.php │ │ ├── OpportunityReference.php │ │ ├── PatchOperation.php │ │ ├── Priority.php │ │ ├── PriorityReference.php │ │ ├── ProductReference.php │ │ ├── ProjectPhaseReference.php │ │ ├── ProjectReference.php │ │ ├── SLA.php │ │ ├── SLAPriority.php │ │ ├── SLAReference.php │ │ ├── ScheduleEntryReference.php │ │ ├── ServiceCodeReference.php │ │ ├── ServiceEmailTemplate.php │ │ ├── ServiceEmailTemplateReference.php │ │ ├── ServiceItemReference.php │ │ ├── ServiceLocation.php │ │ ├── ServiceLocationReference.php │ │ ├── ServiceNote.php │ │ ├── ServiceSignoff.php │ │ ├── ServiceSignoffReference.php │ │ ├── ServiceSourceReference.php │ │ ├── ServiceStatusReference.php │ │ ├── ServiceSubTypeReference.php │ │ ├── ServiceSurvey.php │ │ ├── ServiceSurveyQuestion.php │ │ ├── ServiceSurveyQuestionOption.php │ │ ├── ServiceSurveyReference.php │ │ ├── ServiceTeam.php │ │ ├── ServiceTeamReference.php │ │ ├── ServiceTemplate.php │ │ ├── ServiceTemplateReference.php │ │ ├── ServiceTicketLink.php │ │ ├── ServiceTypeReference.php │ │ ├── Severity.php │ │ ├── SiteReference.php │ │ ├── Source.php │ │ ├── StatusExternalIntegrationReference.php │ │ ├── StatusIndicatorReference.php │ │ ├── SuccessResponse.php │ │ ├── SurveyOption.php │ │ ├── SurveyResult.php │ │ ├── SurveyResultDetail.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── Task.php │ │ ├── TeamMember.php │ │ ├── TemplateGeneratedCountsModel.php │ │ ├── Ticket.php │ │ ├── TicketMerge.php │ │ ├── TicketReference.php │ │ ├── TicketSync.php │ │ ├── TimeEntryReference.php │ │ ├── Usage.php │ │ ├── ValidationError.php │ │ ├── WorkRoleReference.php │ │ └── WorkTypeReference.php │ ├── System │ │ ├── ActivityStatusReference.php │ │ ├── ActivityTypeReference.php │ │ ├── AddressFormatReference.php │ │ ├── ApiMember.php │ │ ├── AuditTrailEntry.php │ │ ├── AuditTrailEntryInsertRequest.php │ │ ├── AuditTrailObjects.php │ │ ├── AuthAnvil.php │ │ ├── AutoSyncTime.php │ │ ├── AutomateScriptReference.php │ │ ├── BatchRequest.php │ │ ├── BatchResponse.php │ │ ├── BoardReference.php │ │ ├── CalendarReference.php │ │ ├── CalendarSetupReference.php │ │ ├── CallbackEntry.php │ │ ├── Certification.php │ │ ├── CertificationReference.php │ │ ├── CompanyReference.php │ │ ├── CompanyStatusReference.php │ │ ├── ConnectWiseHostedScreen.php │ │ ├── ConnectWiseHostedSetup.php │ │ ├── ContactReference.php │ │ ├── CorporateStructure.php │ │ ├── CorporateStructureLevel.php │ │ ├── CorporateStructureLevelReference.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── Crm.php │ │ ├── CurrencyReference.php │ │ ├── CustomReport.php │ │ ├── CustomReportParameter.php │ │ ├── CustomReportReference.php │ │ ├── Department.php │ │ ├── DepartmentInfo.php │ │ ├── DepartmentLocation.php │ │ ├── DepartmentLocationInfo.php │ │ ├── DocumentInfo.php │ │ ├── DocumentReference.php │ │ ├── DocumentSetup.php │ │ ├── EPayConfiguration.php │ │ ├── EmailConnector.php │ │ ├── EmailConnectorParsingRule.php │ │ ├── EmailConnectorParsingStyle.php │ │ ├── EmailConnectorParsingStyleReference.php │ │ ├── EmailConnectorParsingTypeReference.php │ │ ├── EmailConnectorParsingVariableReference.php │ │ ├── EmailConnectorReference.php │ │ ├── EmailToken.php │ │ ├── EndpointRequest.php │ │ ├── EndpointResponse.php │ │ ├── Error.php │ │ ├── GenericBoardTeamReference.php │ │ ├── GroupReference.php │ │ ├── Imap.php │ │ ├── ImapSetupReference.php │ │ ├── ImportMassMaintenance.php │ │ ├── InOutBoard.php │ │ ├── InOutType.php │ │ ├── InOutTypeReference.php │ │ ├── Info.php │ │ ├── IntegrationRequest.php │ │ ├── IntegratorLogin.php │ │ ├── JArray.php │ │ ├── JObject.php │ │ ├── KPI.php │ │ ├── KPICategory.php │ │ ├── KPICategoryReference.php │ │ ├── KPIReference.php │ │ ├── LdapConfiguration.php │ │ ├── LdapConfigurationReference.php │ │ ├── LicenseBit.php │ │ ├── Link.php │ │ ├── LocaleInfo.php │ │ ├── LocaleReference.php │ │ ├── Location.php │ │ ├── LocationDepartment.php │ │ ├── LocationInfo.php │ │ ├── LocationWorkRole.php │ │ ├── ManagementNetworkSecurity.php │ │ ├── Member.php │ │ ├── MemberAccrual.php │ │ ├── MemberCertification.php │ │ ├── MemberDeactivation.php │ │ ├── MemberDeactivationCompanyTeam.php │ │ ├── MemberDeactivationDepartmentMananager.php │ │ ├── MemberDeactivationDispatchMember.php │ │ ├── MemberDeactivationDutyManager.php │ │ ├── MemberDeactivationKnowledgebaseArticle.php │ │ ├── MemberDeactivationMyCompanyCOORole.php │ │ ├── MemberDeactivationMyCompanyControllerRole.php │ │ ├── MemberDeactivationMyCompanyDispatchRole.php │ │ ├── MemberDeactivationMyCompanyDutyManagerRole.php │ │ ├── MemberDeactivationMyCompanyPresidentRole.php │ │ ├── MemberDeactivationMyCompanyServiceManagerRole.php │ │ ├── MemberDeactivationOpportunity.php │ │ ├── MemberDeactivationProjectManager.php │ │ ├── MemberDeactivationSalesActivity.php │ │ ├── MemberDeactivationSalesTeam.php │ │ ├── MemberDeactivationServiceManger.php │ │ ├── MemberDeactivationServiceTeam.php │ │ ├── MemberDeactivationServiceTemplate.php │ │ ├── MemberDeactivationStatusWorkflow.php │ │ ├── MemberDeactivationWorkflow.php │ │ ├── MemberDelegation.php │ │ ├── MemberInfo.php │ │ ├── MemberNotification.php │ │ ├── MemberReference.php │ │ ├── MemberSkill.php │ │ ├── MemberSsoToken.php │ │ ├── MemberTypeReference.php │ │ ├── MenuEntry.php │ │ ├── MenuEntryLocation.php │ │ ├── MenuLocationReference.php │ │ ├── Metadata.php │ │ ├── NotificationRecipient.php │ │ ├── NotificationRecipientReference.php │ │ ├── NotifyTypeReference.php │ │ ├── OrderStatusReference.php │ │ ├── OsGradeWeight.php │ │ ├── Other.php │ │ ├── ParsingType.php │ │ ├── ParsingVariable.php │ │ ├── PatchOperation.php │ │ ├── PortalConfigurationReference.php │ │ ├── PortalReport.php │ │ ├── PriorityReference.php │ │ ├── Product.php │ │ ├── ProjectBoardReference.php │ │ ├── ProjectStatusReference.php │ │ ├── Report.php │ │ ├── ReportCard.php │ │ ├── ReportCardDetail.php │ │ ├── ReportCardReference.php │ │ ├── ReportDataResponse.php │ │ ├── ReportingService.php │ │ ├── SecurityRole.php │ │ ├── SecurityRoleReference.php │ │ ├── SecurityRoleSetting.php │ │ ├── Service.php │ │ ├── ServiceItemReference.php │ │ ├── ServiceLocationReference.php │ │ ├── ServiceSourceReference.php │ │ ├── ServiceStatusReference.php │ │ ├── ServiceSubTypeReference.php │ │ ├── ServiceTemplateReference.php │ │ ├── ServiceTypeReference.php │ │ ├── SetupScreen.php │ │ ├── Skill.php │ │ ├── SkillCategory.php │ │ ├── SkillCategoryReference.php │ │ ├── SkillReference.php │ │ ├── SsoConfiguration.php │ │ ├── StandardNote.php │ │ ├── StandardNoteInfo.php │ │ ├── StructureReference.php │ │ ├── SuccessResponse.php │ │ ├── Survey.php │ │ ├── SurveyQuestion.php │ │ ├── SurveyQuestionReference.php │ │ ├── SurveyQuestionValue.php │ │ ├── SurveyReference.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── SystemMenuEntryReference.php │ │ ├── SystemSetting.php │ │ ├── TeamRoleReference.php │ │ ├── TimeExpense.php │ │ ├── TimeZone.php │ │ ├── TimeZoneReference.php │ │ ├── TimeZoneSetup.php │ │ ├── TimeZoneSetupReference.php │ │ ├── TodayPageCategory.php │ │ ├── Token.php │ │ ├── TrackReference.php │ │ ├── Type.php │ │ ├── Usage.php │ │ ├── UserDefinedField.php │ │ ├── UserDefinedFieldOption.php │ │ ├── UserDefinedFieldReference.php │ │ ├── ValidationError.php │ │ ├── WarehouseBinReference.php │ │ ├── WarehouseReference.php │ │ ├── WorkRoleReference.php │ │ ├── WorkTypeReference.php │ │ ├── Workflow.php │ │ ├── WorkflowAction.php │ │ ├── WorkflowActionAutomateParameter.php │ │ ├── WorkflowAttachment.php │ │ ├── WorkflowEvent.php │ │ ├── WorkflowNotifyType.php │ │ ├── WorkflowTableType.php │ │ ├── WorkflowTableTypeReference.php │ │ ├── WorkflowTrigger.php │ │ └── WorkflowTriggerOption.php │ ├── Time │ │ ├── ActivityStopwatch.php │ │ ├── AgreementReference.php │ │ ├── AuditSource.php │ │ ├── AuditType.php │ │ ├── ChargeCode.php │ │ ├── ChargeCodeExpenseType.php │ │ ├── ChargeCodeReference.php │ │ ├── CompanyReference.php │ │ ├── Count.php │ │ ├── CustomFieldValue.php │ │ ├── Error.php │ │ ├── ExpenseTypeReference.php │ │ ├── ExternalWorkTypeIntegrationReference.php │ │ ├── Guid.php │ │ ├── InvoiceReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── PatchOperation.php │ │ ├── ScheduleStopwatch.php │ │ ├── ServiceStatusReference.php │ │ ├── SuccessResponse.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TicketReference.php │ │ ├── TicketStopwatch.php │ │ ├── TimeAccrual.php │ │ ├── TimeAccrualDetail.php │ │ ├── TimeAccrualReference.php │ │ ├── TimeEntry.php │ │ ├── TimeEntryAudit.php │ │ ├── TimePeriod.php │ │ ├── TimePeriodSetup.php │ │ ├── TimePeriodSetupDefaults.php │ │ ├── TimePeriodSetupReference.php │ │ ├── TimeSheet.php │ │ ├── TimeSheetAudit.php │ │ ├── TimeSheetReference.php │ │ ├── Usage.php │ │ ├── ValidationError.php │ │ ├── WorkRole.php │ │ ├── WorkRoleLocation.php │ │ ├── WorkRoleReference.php │ │ ├── WorkType.php │ │ ├── WorkTypeExternalIntegrationReference.php │ │ └── WorkTypeReference.php │ └── map.json ├── v2019_2 │ ├── Company │ │ ├── ActivityStatusReference.php │ │ ├── ActivityTypeReference.php │ │ ├── AddressFormat.php │ │ ├── AddressFormatReference.php │ │ ├── AgreementReference.php │ │ ├── AgreementTypeReference.php │ │ ├── BillingDeliveryReference.php │ │ ├── BillingTermsReference.php │ │ ├── CalendarReference.php │ │ ├── CatalogItemReference.php │ │ ├── ClearPickerRequest.php │ │ ├── CommunicationTypeReference.php │ │ ├── Company.php │ │ ├── CompanyCustomNote.php │ │ ├── CompanyGroup.php │ │ ├── CompanyManagementSummary.php │ │ ├── CompanyMerge.php │ │ ├── CompanyNote.php │ │ ├── CompanyNoteType.php │ │ ├── CompanyPickerItem.php │ │ ├── CompanyReference.php │ │ ├── CompanySite.php │ │ ├── CompanyStatus.php │ │ ├── CompanyStatusReference.php │ │ ├── CompanyTeam.php │ │ ├── CompanyType.php │ │ ├── CompanyTypeAssociation.php │ │ ├── CompanyTypeInfo.php │ │ ├── CompanyTypeReference.php │ │ ├── Configuration.php │ │ ├── ConfigurationQuestion.php │ │ ├── ConfigurationStatus.php │ │ ├── ConfigurationStatusReference.php │ │ ├── ConfigurationType.php │ │ ├── ConfigurationTypeQuestion.php │ │ ├── ConfigurationTypeQuestionReference.php │ │ ├── ConfigurationTypeQuestionValue.php │ │ ├── ConfigurationTypeReference.php │ │ ├── Contact.php │ │ ├── ContactCommunication.php │ │ ├── ContactCommunicationItem.php │ │ ├── ContactDepartment.php │ │ ├── ContactDepartmentReference.php │ │ ├── ContactGroup.php │ │ ├── ContactNote.php │ │ ├── ContactReference.php │ │ ├── ContactRelationship.php │ │ ├── ContactTrack.php │ │ ├── ContactType.php │ │ ├── ContactTypeAssociation.php │ │ ├── ContactTypeReference.php │ │ ├── Count.php │ │ ├── Country.php │ │ ├── CountryReference.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── EntityType.php │ │ ├── EntityTypeReference.php │ │ ├── Error.php │ │ ├── GroupReference.php │ │ ├── Guid.php │ │ ├── IntegratorLoginReference.php │ │ ├── InvoiceTemplateReference.php │ │ ├── IvItemReference.php │ │ ├── KaseyaKey.php │ │ ├── ManagedDevicesIntegration.php │ │ ├── ManagedDevicesIntegrationCrossReference.php │ │ ├── ManagedDevicesIntegrationLogin.php │ │ ├── ManagedDevicesIntegrationNotification.php │ │ ├── ManagedDevicesIntegrationReference.php │ │ ├── Management.php │ │ ├── ManagementBackup.php │ │ ├── ManagementItSolution.php │ │ ├── ManagementItSolutionAgreementInterfaceParameter.php │ │ ├── ManagementLogDocumentInfo.php │ │ ├── ManagementReportNotification.php │ │ ├── ManagementSolutionReference.php │ │ ├── ManufacturerReference.php │ │ ├── MarketDescription.php │ │ ├── MarketDescriptionReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── NoteTypeReference.php │ │ ├── NotificationRecipientReference.php │ │ ├── OpportunityStatusReference.php │ │ ├── OwnershipType.php │ │ ├── OwnershipTypeReference.php │ │ ├── PatchOperation.php │ │ ├── PortalConfiguration.php │ │ ├── PortalConfigurationInvoiceSetup.php │ │ ├── PortalConfigurationOpportunitySetup.php │ │ ├── PortalConfigurationPasswordEmailSetup.php │ │ ├── PortalConfigurationPaymentProcessor.php │ │ ├── PortalConfigurationPaymentProcessorReference.php │ │ ├── PortalConfigurationProjectSetup.php │ │ ├── PortalConfigurationReference.php │ │ ├── PortalConfigurationServiceSetup.php │ │ ├── PortalSecurity.php │ │ ├── PortalSecurityLevel.php │ │ ├── PortalSecuritySetting.php │ │ ├── PricingScheduleReference.php │ │ ├── RelationshipReference.php │ │ ├── RequestPasswordRequest.php │ │ ├── SLAReference.php │ │ ├── ServiceSignoffReference.php │ │ ├── ServiceTemplateReference.php │ │ ├── SicCodeReference.php │ │ ├── SiteReference.php │ │ ├── State.php │ │ ├── SuccessResponse.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TaxCodeReference.php │ │ ├── TeamRole.php │ │ ├── TeamRoleReference.php │ │ ├── TimeZoneSetupReference.php │ │ ├── Track.php │ │ ├── TrackAction.php │ │ ├── TrackReference.php │ │ ├── Usage.php │ │ ├── ValidatePortalRequest.php │ │ ├── ValidatePortalResponse.php │ │ └── ValidationError.php │ ├── Expense │ │ ├── AgreementReference.php │ │ ├── AuditSource.php │ │ ├── AuditType.php │ │ ├── Classification.php │ │ ├── ClassificationReference.php │ │ ├── CompanyReference.php │ │ ├── Count.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── Error.php │ │ ├── ExpenseEntry.php │ │ ├── ExpenseEntryAudit.php │ │ ├── ExpenseReport.php │ │ ├── ExpenseReportAudit.php │ │ ├── ExpenseReportReference.php │ │ ├── ExpenseTax.php │ │ ├── ExpenseTaxTypeInfo.php │ │ ├── ExpenseTaxTypeReference.php │ │ ├── ExpenseType.php │ │ ├── ExpenseTypeExternalIntegrationReference.php │ │ ├── ExpenseTypeReference.php │ │ ├── ExternalExpenseTypeIntegrationReference.php │ │ ├── Guid.php │ │ ├── InvoiceReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── PatchOperation.php │ │ ├── PaymentMethodReference.php │ │ ├── PaymentType.php │ │ ├── SuccessResponse.php │ │ └── ValidationError.php │ ├── Finance │ │ ├── AccountingBatch.php │ │ ├── AccountingPackage.php │ │ ├── Addition.php │ │ ├── Adjustment.php │ │ ├── Agreement.php │ │ ├── AgreementBatchSetup.php │ │ ├── AgreementReference.php │ │ ├── AgreementSite.php │ │ ├── AgreementType.php │ │ ├── AgreementTypeBoardDefault.php │ │ ├── AgreementTypeReference.php │ │ ├── AgreementTypeWorkRole.php │ │ ├── AgreementTypeWorkRoleExclusion.php │ │ ├── AgreementTypeWorkType.php │ │ ├── AgreementTypeWorkTypeExclusion.php │ │ ├── AgreementWorkRole.php │ │ ├── AgreementWorkRoleExclusion.php │ │ ├── AgreementWorkType.php │ │ ├── AgreementWorkTypeExclusion.php │ │ ├── BillingCycle.php │ │ ├── BillingCycleReference.php │ │ ├── BillingSetup.php │ │ ├── BillingSetupRouting.php │ │ ├── BillingStatus.php │ │ ├── BillingStatusReference.php │ │ ├── BillingTerm.php │ │ ├── BillingTermsReference.php │ │ ├── BoardDefault.php │ │ ├── BoardReference.php │ │ ├── ChargeCodeReference.php │ │ ├── ClassificationReference.php │ │ ├── ClosedInvoice.php │ │ ├── CompanyReference.php │ │ ├── CompanyTypeReference.php │ │ ├── ConfigurationReference.php │ │ ├── ContactReference.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── CreateAccountingBatchRequest.php │ │ ├── Currency.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── DeliveryMethod.php │ │ ├── EmailTemplateReference.php │ │ ├── Error.php │ │ ├── ExpenseTypeExemption.php │ │ ├── ExpenseTypeReference.php │ │ ├── ExportAccountingBatchRequest.php │ │ ├── GLAccount.php │ │ ├── GLCaption.php │ │ ├── GLExport.php │ │ ├── GLExportAdjustmentTransaction.php │ │ ├── GLExportAdjustmentTransactionDetail.php │ │ ├── GLExportCustomer.php │ │ ├── GLExportCustomerTaxLevel.php │ │ ├── GLExportExpense.php │ │ ├── GLExportExpenseBill.php │ │ ├── GLExportExpenseBillDetail.php │ │ ├── GLExportExpenseOffset.php │ │ ├── GLExportInventoryTransfer.php │ │ ├── GLExportInventoryTransferOffset.php │ │ ├── GLExportPurchaseTransaction.php │ │ ├── GLExportPurchaseTransactionDetail.php │ │ ├── GLExportPurchaseTransactionDetailTax.php │ │ ├── GLExportPurchaseTransactionTaxLevel.php │ │ ├── GLExportSettings.php │ │ ├── GLExportTransaction.php │ │ ├── GLExportTransactionDetail.php │ │ ├── GLExportTransactionDetailTaxLevel.php │ │ ├── GLExportTransactionTaxLevel.php │ │ ├── GLExportVendor.php │ │ ├── Invoice.php │ │ ├── InvoiceEmailTemplate.php │ │ ├── InvoiceReference.php │ │ ├── InvoiceTemplate.php │ │ ├── InvoiceTemplateReference.php │ │ ├── InvoiceTemplateSetup.php │ │ ├── IvItemReference.php │ │ ├── MappedRecordReference.php │ │ ├── MappedType.php │ │ ├── MappedTypeReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── OpportunityReference.php │ │ ├── PatchOperation.php │ │ ├── Payment.php │ │ ├── PaymentMethodReference.php │ │ ├── ProductReference.php │ │ ├── ProductSubCategoryReference.php │ │ ├── ProductTypeExemption.php │ │ ├── ProductTypeReference.php │ │ ├── ProjectPhaseReference.php │ │ ├── ProjectReference.php │ │ ├── ProjectTypeReference.php │ │ ├── PurchaseOrderReference.php │ │ ├── SLAReference.php │ │ ├── ServiceSurveyReference.php │ │ ├── ServiceTypeReference.php │ │ ├── ShipmentMethodReference.php │ │ ├── SiteReference.php │ │ ├── StateReference.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TaxCode.php │ │ ├── TaxCodeLevel.php │ │ ├── TaxCodeLevelReference.php │ │ ├── TaxCodeReference.php │ │ ├── TaxCodeXRef.php │ │ ├── TaxIntegration.php │ │ ├── TaxIntegrationInfo.php │ │ ├── TaxableExpenseTypeLevel.php │ │ ├── TaxableProductTypeLevel.php │ │ ├── TaxableWorkRoleLevel.php │ │ ├── TaxableXRefLevel.php │ │ ├── TicketReference.php │ │ ├── TimeEntryReference.php │ │ ├── UnitOfMeasureReference.php │ │ ├── UnpostedExpense.php │ │ ├── UnpostedExpenseTaxableLevel.php │ │ ├── UnpostedInvoice.php │ │ ├── UnpostedInvoiceTaxableLevel.php │ │ ├── UnpostedProcurement.php │ │ ├── UnpostedProcurementTaxableLevel.php │ │ ├── Usage.php │ │ ├── ValidationError.php │ │ ├── WarehouseBinReference.php │ │ ├── WarehouseReference.php │ │ ├── WorkRoleExemption.php │ │ ├── WorkRoleReference.php │ │ └── WorkTypeReference.php │ ├── Internal │ │ ├── AgreementReference.php │ │ ├── BoardReference.php │ │ ├── CalendarReference.php │ │ ├── CentralServiceEula.php │ │ ├── ChargeToReference.php │ │ ├── ClassificationReference.php │ │ ├── CloudBusMessage.php │ │ ├── CompanyReference.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── DocumentReference.php │ │ ├── Error.php │ │ ├── Eula.php │ │ ├── ExpenseEntryInternal.php │ │ ├── ExpenseReportReference.php │ │ ├── ExpenseTax.php │ │ ├── ExpenseTaxTypeReference.php │ │ ├── ExpenseTypeReference.php │ │ ├── Guid.php │ │ ├── InvoiceReference.php │ │ ├── Lab.php │ │ ├── LdapConfigurationReference.php │ │ ├── MemberNotificationSetting.php │ │ ├── MemberReference.php │ │ ├── MemberTypeReference.php │ │ ├── Metadata.php │ │ ├── MyMember.php │ │ ├── MySecurity.php │ │ ├── PatchOperation.php │ │ ├── PaymentMethodReference.php │ │ ├── ProjectBoardReference.php │ │ ├── ReportCardReference.php │ │ ├── SecurityRoleReference.php │ │ ├── ServiceLocationReference.php │ │ ├── ServiceStatusReference.php │ │ ├── Session.php │ │ ├── StructureReference.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TicketPipeline.php │ │ ├── TicketReference.php │ │ ├── TicketsPipeline.php │ │ ├── TimeEntryInternal.php │ │ ├── TimeSheetReference.php │ │ ├── TimeZoneSetupReference.php │ │ ├── UploadToMarketplaceRequest.php │ │ ├── ValidationError.php │ │ ├── WarehouseBinReference.php │ │ ├── WarehouseReference.php │ │ ├── WorkRoleReference.php │ │ └── WorkTypeReference.php │ ├── Marketing │ │ ├── ActivityReference.php │ │ ├── Campaign.php │ │ ├── CampaignAudit.php │ │ ├── CampaignStatus.php │ │ ├── CampaignStatusReference.php │ │ ├── CampaignSubType.php │ │ ├── CampaignSubTypeReference.php │ │ ├── CampaignType.php │ │ ├── CampaignTypeReference.php │ │ ├── Count.php │ │ ├── EmailOpened.php │ │ ├── Error.php │ │ ├── FormSubmitted.php │ │ ├── Group.php │ │ ├── GroupReference.php │ │ ├── LinkClicked.php │ │ ├── MarketingCompany.php │ │ ├── MarketingContact.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── OpportunityReference.php │ │ ├── PatchOperation.php │ │ ├── Usage.php │ │ └── ValidationError.php │ ├── Procurement │ │ ├── Adjustment.php │ │ ├── AdjustmentDetail.php │ │ ├── AdjustmentReference.php │ │ ├── AdjustmentType.php │ │ ├── AdjustmentTypeReference.php │ │ ├── AgreementReference.php │ │ ├── BillingCycleReference.php │ │ ├── BillingTermsReference.php │ │ ├── BulkResult.php │ │ ├── CatalogComponent.php │ │ ├── CatalogInventory.php │ │ ├── CatalogItem.php │ │ ├── CatalogItemReference.php │ │ ├── CatalogPricing.php │ │ ├── Category.php │ │ ├── CompanyReference.php │ │ ├── ContactReference.php │ │ ├── Conversion.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── EntityTypeReference.php │ │ ├── Error.php │ │ ├── ErrorResponseMessage.php │ │ ├── IRestIdentifiedItem.php │ │ ├── IdCollection.php │ │ ├── InvoiceReference.php │ │ ├── IvItemReference.php │ │ ├── LegacySubCategory.php │ │ ├── Manufacturer.php │ │ ├── ManufacturerReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── MinimumStockByWarehouse.php │ │ ├── NotificationRecipientReference.php │ │ ├── OpportunityReference.php │ │ ├── OpportunityStatusReference.php │ │ ├── PatchOperation.php │ │ ├── PricingBreak.php │ │ ├── PricingDetail.php │ │ ├── PricingSchedule.php │ │ ├── ProcurementSetting.php │ │ ├── ProductCategoryReference.php │ │ ├── ProductComponent.php │ │ ├── ProductDemand.php │ │ ├── ProductDetach.php │ │ ├── ProductItem.php │ │ ├── ProductItemReference.php │ │ ├── ProductPickingShippingDetail.php │ │ ├── ProductRecurring.php │ │ ├── ProductSubCategoryReference.php │ │ ├── ProductType.php │ │ ├── ProductTypeReference.php │ │ ├── ProjectReference.php │ │ ├── PurchaseOrder.php │ │ ├── PurchaseOrderLineItem.php │ │ ├── PurchaseOrderStatus.php │ │ ├── PurchaseOrderStatusEmailTemplate.php │ │ ├── PurchaseOrderStatusEmailTemplateReference.php │ │ ├── PurchaseOrderStatusNotification.php │ │ ├── PurchaseOrderStatusReference.php │ │ ├── PurchasingDemand.php │ │ ├── ResultInfo.php │ │ ├── RmaAction.php │ │ ├── RmaDisposition.php │ │ ├── RmaStatus.php │ │ ├── RmaStatusEmailTemplate.php │ │ ├── RmaStatusEmailTemplateReference.php │ │ ├── RmaStatusNotification.php │ │ ├── RmaStatusReference.php │ │ ├── SLAReference.php │ │ ├── SalesOrderReference.php │ │ ├── ShipmentMethod.php │ │ ├── ShipmentMethodReference.php │ │ ├── SiteReference.php │ │ ├── SubCategory.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TaxCodeReference.php │ │ ├── TicketReference.php │ │ ├── UnitOfMeasure.php │ │ ├── UnitOfMeasureReference.php │ │ ├── Usage.php │ │ ├── ValidationError.php │ │ ├── Warehouse.php │ │ ├── WarehouseBin.php │ │ ├── WarehouseBinReference.php │ │ └── WarehouseReference.php │ ├── Project │ │ ├── ActivityReference.php │ │ ├── AgreementReference.php │ │ ├── BillingTermsReference.php │ │ ├── BoardReference.php │ │ ├── CompanyReference.php │ │ ├── ConfigurationReference.php │ │ ├── ContactReference.php │ │ ├── Convert.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── DocumentReference.php │ │ ├── Error.php │ │ ├── FilterValues.php │ │ ├── Guid.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── NoteTypeReference.php │ │ ├── OpportunityReference.php │ │ ├── PatchOperation.php │ │ ├── PhaseStatus.php │ │ ├── PhaseStatusReference.php │ │ ├── PriorityReference.php │ │ ├── ProductReference.php │ │ ├── Project.php │ │ ├── ProjectBoardReference.php │ │ ├── ProjectBoardTeam.php │ │ ├── ProjectBoardTeamMember.php │ │ ├── ProjectContact.php │ │ ├── ProjectNote.php │ │ ├── ProjectPhase.php │ │ ├── ProjectPhaseReference.php │ │ ├── ProjectReference.php │ │ ├── ProjectRoleReference.php │ │ ├── ProjectSecurityRole.php │ │ ├── ProjectSecurityRoleSetting.php │ │ ├── ProjectStatus.php │ │ ├── ProjectStatusReference.php │ │ ├── ProjectTeamMember.php │ │ ├── ProjectType.php │ │ ├── ProjectTypeReference.php │ │ ├── ScheduleEntryReference.php │ │ ├── ServiceCodeReference.php │ │ ├── ServiceItemReference.php │ │ ├── ServiceLocationReference.php │ │ ├── ServiceSourceReference.php │ │ ├── ServiceStatusReference.php │ │ ├── ServiceSubTypeReference.php │ │ ├── ServiceTypeReference.php │ │ ├── SiteReference.php │ │ ├── StatusIndicator.php │ │ ├── StatusIndicatorReference.php │ │ ├── SuccessResponse.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TaxCodeReference.php │ │ ├── Ticket.php │ │ ├── TicketNote.php │ │ ├── TicketTask.php │ │ ├── TimeEntryReference.php │ │ ├── Usage.php │ │ ├── ValidationError.php │ │ └── WorkRoleReference.php │ ├── Sales │ │ ├── Activity.php │ │ ├── ActivityStatus.php │ │ ├── ActivityStatusReference.php │ │ ├── ActivityType.php │ │ ├── ActivityTypeReference.php │ │ ├── Agreement.php │ │ ├── AgreementReference.php │ │ ├── AgreementTypeReference.php │ │ ├── BillingCycleReference.php │ │ ├── BillingTermsReference.php │ │ ├── BoardReference.php │ │ ├── CampaignReference.php │ │ ├── Commission.php │ │ ├── CompanyReference.php │ │ ├── ContactReference.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── Error.php │ │ ├── Forecast.php │ │ ├── Guid.php │ │ ├── InvoiceTemplateReference.php │ │ ├── IvItemReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── NoteTypeReference.php │ │ ├── NotificationRecipientReference.php │ │ ├── Opportunity.php │ │ ├── OpportunityContact.php │ │ ├── OpportunityNote.php │ │ ├── OpportunityPriorityReference.php │ │ ├── OpportunityProbabilityReference.php │ │ ├── OpportunityRating.php │ │ ├── OpportunityRatingReference.php │ │ ├── OpportunityReference.php │ │ ├── OpportunitySalesRoleReference.php │ │ ├── OpportunityStage.php │ │ ├── OpportunityStageReference.php │ │ ├── OpportunityStatus.php │ │ ├── OpportunityStatusReference.php │ │ ├── OpportunityToAgreementConversion.php │ │ ├── OpportunityToProjectConversion.php │ │ ├── OpportunityToSalesOrderConversion.php │ │ ├── OpportunityToServiceTicketConversion.php │ │ ├── OpportunityType.php │ │ ├── OpportunityTypeReference.php │ │ ├── Order.php │ │ ├── OrderStatus.php │ │ ├── OrderStatusEmailTemplate.php │ │ ├── OrderStatusEmailTemplateReference.php │ │ ├── OrderStatusNotification.php │ │ ├── OrderStatusReference.php │ │ ├── PatchOperation.php │ │ ├── PriorityReference.php │ │ ├── ProductCategoryReference.php │ │ ├── ProductRecurring.php │ │ ├── ProductSubCategoryReference.php │ │ ├── Project.php │ │ ├── ProjectBoardReference.php │ │ ├── ProjectReference.php │ │ ├── ProjectStatusReference.php │ │ ├── ProjectTypeReference.php │ │ ├── ReminderReference.php │ │ ├── Role.php │ │ ├── SLAReference.php │ │ ├── SalesProbability.php │ │ ├── SalesQuota.php │ │ ├── SalesTeam.php │ │ ├── SalesTeamMember.php │ │ ├── SalesTeamReference.php │ │ ├── ScheduleStatusReference.php │ │ ├── ServiceItemReference.php │ │ ├── ServiceLocationReference.php │ │ ├── ServiceSourceReference.php │ │ ├── ServiceStatusReference.php │ │ ├── ServiceSubTypeReference.php │ │ ├── ServiceTeamReference.php │ │ ├── ServiceTypeReference.php │ │ ├── SiteReference.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TaxCodeReference.php │ │ ├── Team.php │ │ ├── Ticket.php │ │ ├── TicketReference.php │ │ ├── Usage.php │ │ ├── ValidationError.php │ │ ├── WorkRoleReference.php │ │ └── WorkTypeReference.php │ ├── Schedule │ │ ├── Calendar.php │ │ ├── ChargeCodeReference.php │ │ ├── Count.php │ │ ├── Error.php │ │ ├── Guid.php │ │ ├── Holiday.php │ │ ├── HolidayList.php │ │ ├── HolidayListReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── PatchOperation.php │ │ ├── PortalCalendar.php │ │ ├── ReminderReference.php │ │ ├── ScheduleColor.php │ │ ├── ScheduleDetail.php │ │ ├── ScheduleEntry.php │ │ ├── ScheduleEntryDetail.php │ │ ├── ScheduleEntryReference.php │ │ ├── ScheduleReminderTime.php │ │ ├── ScheduleSpanReference.php │ │ ├── ScheduleStatus.php │ │ ├── ScheduleStatusReference.php │ │ ├── ScheduleType.php │ │ ├── ScheduleTypeReference.php │ │ ├── ServiceLocationReference.php │ │ ├── Usage.php │ │ └── ValidationError.php │ ├── Service │ │ ├── ActivityReference.php │ │ ├── AgreementReference.php │ │ ├── Board.php │ │ ├── BoardAutoAssignResource.php │ │ ├── BoardAutoTemplate.php │ │ ├── BoardCopy.php │ │ ├── BoardExcludedMember.php │ │ ├── BoardInfo.php │ │ ├── BoardItem.php │ │ ├── BoardItemAssociation.php │ │ ├── BoardNotification.php │ │ ├── BoardReference.php │ │ ├── BoardStatus.php │ │ ├── BoardStatusNotification.php │ │ ├── BoardSubType.php │ │ ├── BoardTeam.php │ │ ├── BoardType.php │ │ ├── BoardTypeInfo.php │ │ ├── BoardTypeSubTypeItemAssociation.php │ │ ├── CalendarReference.php │ │ ├── Code.php │ │ ├── CompanyReference.php │ │ ├── ConfigurationReference.php │ │ ├── ContactReference.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── CurrencyReference.php │ │ ├── DocumentReference.php │ │ ├── Error.php │ │ ├── ExternalIntegrationStatusReference.php │ │ ├── FilterValues.php │ │ ├── GenericIdIdentifierReference.php │ │ ├── Guid.php │ │ ├── Impact.php │ │ ├── IntegratorLoginReference.php │ │ ├── KnowledgeBaseArticle.php │ │ ├── KnowledgeBaseCategory.php │ │ ├── KnowledgeBaseSettings.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── NotificationRecipientReference.php │ │ ├── OpportunityReference.php │ │ ├── PatchOperation.php │ │ ├── Priority.php │ │ ├── PriorityReference.php │ │ ├── ProductReference.php │ │ ├── ProjectPhaseReference.php │ │ ├── ProjectReference.php │ │ ├── SLA.php │ │ ├── SLAPriority.php │ │ ├── SLAReference.php │ │ ├── ScheduleEntryReference.php │ │ ├── ServiceCodeReference.php │ │ ├── ServiceEmailTemplate.php │ │ ├── ServiceEmailTemplateReference.php │ │ ├── ServiceItemReference.php │ │ ├── ServiceLocation.php │ │ ├── ServiceLocationReference.php │ │ ├── ServiceNote.php │ │ ├── ServiceSignoff.php │ │ ├── ServiceSignoffReference.php │ │ ├── ServiceSourceReference.php │ │ ├── ServiceStatusReference.php │ │ ├── ServiceSubTypeReference.php │ │ ├── ServiceSurvey.php │ │ ├── ServiceSurveyQuestion.php │ │ ├── ServiceSurveyQuestionOption.php │ │ ├── ServiceSurveyReference.php │ │ ├── ServiceTeam.php │ │ ├── ServiceTeamReference.php │ │ ├── ServiceTemplate.php │ │ ├── ServiceTemplateReference.php │ │ ├── ServiceTicketLink.php │ │ ├── ServiceTypeReference.php │ │ ├── Severity.php │ │ ├── SiteReference.php │ │ ├── Source.php │ │ ├── StatusExternalIntegrationReference.php │ │ ├── StatusIndicatorReference.php │ │ ├── SuccessResponse.php │ │ ├── SurveyOption.php │ │ ├── SurveyResult.php │ │ ├── SurveyResultDetail.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── Task.php │ │ ├── TeamMember.php │ │ ├── TemplateGeneratedCountsModel.php │ │ ├── Ticket.php │ │ ├── TicketMerge.php │ │ ├── TicketReference.php │ │ ├── TicketSync.php │ │ ├── TimeEntryReference.php │ │ ├── Usage.php │ │ ├── ValidationError.php │ │ ├── WorkRoleReference.php │ │ └── WorkTypeReference.php │ ├── System │ │ ├── ActivityStatusReference.php │ │ ├── ActivityTypeReference.php │ │ ├── AddressFormatReference.php │ │ ├── ApiMember.php │ │ ├── ApiRequest.php │ │ ├── AuditTrailEntry.php │ │ ├── AuditTrailEntryInsertRequest.php │ │ ├── AuditTrailObjects.php │ │ ├── AuthAnvil.php │ │ ├── AutoSyncTime.php │ │ ├── AutomateScriptReference.php │ │ ├── BatchRequest.php │ │ ├── BatchResponse.php │ │ ├── BoardReference.php │ │ ├── BundleRequest.php │ │ ├── BundleRequestsCollection.php │ │ ├── BundleResult.php │ │ ├── BundleResultsCollection.php │ │ ├── CalendarReference.php │ │ ├── CalendarSetupReference.php │ │ ├── CallbackEntry.php │ │ ├── Certification.php │ │ ├── CertificationReference.php │ │ ├── CompanyReference.php │ │ ├── CompanyStatusReference.php │ │ ├── ConnectWiseHostedScreen.php │ │ ├── ConnectWiseHostedSetup.php │ │ ├── ContactReference.php │ │ ├── CorporateStructure.php │ │ ├── CorporateStructureLevel.php │ │ ├── CorporateStructureLevelReference.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── Crm.php │ │ ├── CurrencyReference.php │ │ ├── CustomReport.php │ │ ├── CustomReportParameter.php │ │ ├── CustomReportReference.php │ │ ├── Department.php │ │ ├── DepartmentInfo.php │ │ ├── DepartmentLocation.php │ │ ├── DepartmentLocationInfo.php │ │ ├── DocumentInfo.php │ │ ├── DocumentReference.php │ │ ├── DocumentSetup.php │ │ ├── EPayConfiguration.php │ │ ├── EmailConnector.php │ │ ├── EmailConnectorParsingRule.php │ │ ├── EmailConnectorParsingStyle.php │ │ ├── EmailConnectorParsingStyleReference.php │ │ ├── EmailConnectorParsingTypeReference.php │ │ ├── EmailConnectorParsingVariableReference.php │ │ ├── EmailConnectorReference.php │ │ ├── EmailExclusion.php │ │ ├── EmailToken.php │ │ ├── EndpointRequest.php │ │ ├── EndpointResponse.php │ │ ├── Error.php │ │ ├── ErrorResponseMessage.php │ │ ├── FilterValues.php │ │ ├── GenericBoardTeamReference.php │ │ ├── GroupReference.php │ │ ├── IRestIdentifiedItem.php │ │ ├── Imap.php │ │ ├── ImapSetupReference.php │ │ ├── ImportMassMaintenance.php │ │ ├── InOutBoard.php │ │ ├── InOutType.php │ │ ├── InOutTypeReference.php │ │ ├── Info.php │ │ ├── IntegrationRequest.php │ │ ├── IntegratorLogin.php │ │ ├── JArray.php │ │ ├── JObject.php │ │ ├── KPI.php │ │ ├── KPICategory.php │ │ ├── KPICategoryReference.php │ │ ├── KPIReference.php │ │ ├── LdapConfiguration.php │ │ ├── LdapConfigurationReference.php │ │ ├── LdapConfigurationTestLink.php │ │ ├── LicenseBit.php │ │ ├── Link.php │ │ ├── LocaleInfo.php │ │ ├── LocaleReference.php │ │ ├── Location.php │ │ ├── LocationDepartment.php │ │ ├── LocationInfo.php │ │ ├── LocationWorkRole.php │ │ ├── ManagementNetworkSecurity.php │ │ ├── Member.php │ │ ├── MemberAccrual.php │ │ ├── MemberCertification.php │ │ ├── MemberDeactivation.php │ │ ├── MemberDeactivationCompanyTeam.php │ │ ├── MemberDeactivationDepartmentMananager.php │ │ ├── MemberDeactivationDispatchMember.php │ │ ├── MemberDeactivationDutyManager.php │ │ ├── MemberDeactivationKnowledgebaseArticle.php │ │ ├── MemberDeactivationMyCompanyCOORole.php │ │ ├── MemberDeactivationMyCompanyControllerRole.php │ │ ├── MemberDeactivationMyCompanyDispatchRole.php │ │ ├── MemberDeactivationMyCompanyDutyManagerRole.php │ │ ├── MemberDeactivationMyCompanyPresidentRole.php │ │ ├── MemberDeactivationMyCompanyServiceManagerRole.php │ │ ├── MemberDeactivationOpportunity.php │ │ ├── MemberDeactivationProjectManager.php │ │ ├── MemberDeactivationSalesActivity.php │ │ ├── MemberDeactivationSalesTeam.php │ │ ├── MemberDeactivationServiceManger.php │ │ ├── MemberDeactivationServiceTeam.php │ │ ├── MemberDeactivationServiceTemplate.php │ │ ├── MemberDeactivationStatusWorkflow.php │ │ ├── MemberDeactivationWorkflow.php │ │ ├── MemberDelegation.php │ │ ├── MemberInfo.php │ │ ├── MemberNotification.php │ │ ├── MemberReference.php │ │ ├── MemberSkill.php │ │ ├── MemberSsoToken.php │ │ ├── MemberTypeReference.php │ │ ├── MenuEntry.php │ │ ├── MenuEntryLocation.php │ │ ├── MenuLocationReference.php │ │ ├── Metadata.php │ │ ├── NotificationRecipient.php │ │ ├── NotificationRecipientReference.php │ │ ├── NotifyTypeReference.php │ │ ├── OrderStatusReference.php │ │ ├── OsGradeWeight.php │ │ ├── Other.php │ │ ├── PageValues.php │ │ ├── ParsingType.php │ │ ├── ParsingVariable.php │ │ ├── PatchOperation.php │ │ ├── PortalConfigurationReference.php │ │ ├── PortalReport.php │ │ ├── PriorityReference.php │ │ ├── Product.php │ │ ├── ProjectBoardReference.php │ │ ├── ProjectStatusReference.php │ │ ├── QuoteLink.php │ │ ├── Report.php │ │ ├── ReportCard.php │ │ ├── ReportCardDetail.php │ │ ├── ReportCardReference.php │ │ ├── ReportDataResponse.php │ │ ├── ReportingService.php │ │ ├── SecurityRole.php │ │ ├── SecurityRoleReference.php │ │ ├── SecurityRoleSetting.php │ │ ├── Service.php │ │ ├── ServiceItemReference.php │ │ ├── ServiceLocationReference.php │ │ ├── ServiceSourceReference.php │ │ ├── ServiceStatusReference.php │ │ ├── ServiceSubTypeReference.php │ │ ├── ServiceSurveyReference.php │ │ ├── ServiceTemplateReference.php │ │ ├── ServiceTypeReference.php │ │ ├── SetupScreen.php │ │ ├── Skill.php │ │ ├── SkillCategory.php │ │ ├── SkillCategoryReference.php │ │ ├── SkillReference.php │ │ ├── SsoConfiguration.php │ │ ├── StandardNote.php │ │ ├── StandardNoteInfo.php │ │ ├── StructureReference.php │ │ ├── SuccessResponse.php │ │ ├── Survey.php │ │ ├── SurveyQuestion.php │ │ ├── SurveyQuestionReference.php │ │ ├── SurveyQuestionValue.php │ │ ├── SurveyReference.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── SystemMenuEntryReference.php │ │ ├── SystemSetting.php │ │ ├── TeamRoleReference.php │ │ ├── TimeExpense.php │ │ ├── TimeZone.php │ │ ├── TimeZoneReference.php │ │ ├── TimeZoneSetup.php │ │ ├── TimeZoneSetupReference.php │ │ ├── TodayPageCategory.php │ │ ├── Token.php │ │ ├── TrackReference.php │ │ ├── Type.php │ │ ├── Usage.php │ │ ├── UserDefinedField.php │ │ ├── UserDefinedFieldOption.php │ │ ├── UserDefinedFieldReference.php │ │ ├── ValidationError.php │ │ ├── WarehouseBinReference.php │ │ ├── WarehouseReference.php │ │ ├── WorkRoleReference.php │ │ ├── WorkTypeReference.php │ │ ├── Workflow.php │ │ ├── WorkflowAction.php │ │ ├── WorkflowActionAutomateParameter.php │ │ ├── WorkflowAttachment.php │ │ ├── WorkflowEvent.php │ │ ├── WorkflowNotifyType.php │ │ ├── WorkflowTableType.php │ │ ├── WorkflowTableTypeReference.php │ │ ├── WorkflowTrigger.php │ │ └── WorkflowTriggerOption.php │ ├── Time │ │ ├── ActivityStopwatch.php │ │ ├── AgreementReference.php │ │ ├── AuditSource.php │ │ ├── AuditType.php │ │ ├── ChargeCode.php │ │ ├── ChargeCodeExpenseType.php │ │ ├── ChargeCodeReference.php │ │ ├── CompanyReference.php │ │ ├── Count.php │ │ ├── CustomFieldValue.php │ │ ├── Error.php │ │ ├── ExpenseTypeReference.php │ │ ├── ExternalWorkTypeIntegrationReference.php │ │ ├── Guid.php │ │ ├── InvoiceReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── PatchOperation.php │ │ ├── ScheduleStopwatch.php │ │ ├── ServiceStatusReference.php │ │ ├── SuccessResponse.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TicketReference.php │ │ ├── TicketStopwatch.php │ │ ├── TimeAccrual.php │ │ ├── TimeAccrualDetail.php │ │ ├── TimeAccrualReference.php │ │ ├── TimeEntry.php │ │ ├── TimeEntryAudit.php │ │ ├── TimePeriod.php │ │ ├── TimePeriodSetup.php │ │ ├── TimePeriodSetupDefaults.php │ │ ├── TimePeriodSetupReference.php │ │ ├── TimeSheet.php │ │ ├── TimeSheetAudit.php │ │ ├── TimeSheetReference.php │ │ ├── Usage.php │ │ ├── ValidationError.php │ │ ├── WorkRole.php │ │ ├── WorkRoleLocation.php │ │ ├── WorkRoleReference.php │ │ ├── WorkType.php │ │ ├── WorkTypeExternalIntegrationReference.php │ │ └── WorkTypeReference.php │ └── map.json ├── v2019_3 │ ├── Company │ │ ├── ActivityStatusReference.php │ │ ├── ActivityTypeReference.php │ │ ├── AddressFormat.php │ │ ├── AddressFormatReference.php │ │ ├── AgreementReference.php │ │ ├── AgreementTypeReference.php │ │ ├── BillingDeliveryReference.php │ │ ├── BillingTermsReference.php │ │ ├── CalendarReference.php │ │ ├── CatalogItemReference.php │ │ ├── ClearPickerRequest.php │ │ ├── CommunicationTypeReference.php │ │ ├── Company.php │ │ ├── CompanyCustomNote.php │ │ ├── CompanyGroup.php │ │ ├── CompanyManagementSummary.php │ │ ├── CompanyMerge.php │ │ ├── CompanyNote.php │ │ ├── CompanyNoteType.php │ │ ├── CompanyPickerItem.php │ │ ├── CompanyReference.php │ │ ├── CompanySite.php │ │ ├── CompanyStatus.php │ │ ├── CompanyStatusReference.php │ │ ├── CompanyTeam.php │ │ ├── CompanyType.php │ │ ├── CompanyTypeAssociation.php │ │ ├── CompanyTypeInfo.php │ │ ├── CompanyTypeReference.php │ │ ├── Configuration.php │ │ ├── ConfigurationQuestion.php │ │ ├── ConfigurationStatus.php │ │ ├── ConfigurationStatusReference.php │ │ ├── ConfigurationType.php │ │ ├── ConfigurationTypeQuestion.php │ │ ├── ConfigurationTypeQuestionReference.php │ │ ├── ConfigurationTypeQuestionValue.php │ │ ├── ConfigurationTypeReference.php │ │ ├── Contact.php │ │ ├── ContactCommunication.php │ │ ├── ContactCommunicationItem.php │ │ ├── ContactDepartment.php │ │ ├── ContactDepartmentReference.php │ │ ├── ContactGroup.php │ │ ├── ContactNote.php │ │ ├── ContactReference.php │ │ ├── ContactRelationship.php │ │ ├── ContactTrack.php │ │ ├── ContactType.php │ │ ├── ContactTypeAssociation.php │ │ ├── ContactTypeReference.php │ │ ├── Count.php │ │ ├── Country.php │ │ ├── CountryReference.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── EntityType.php │ │ ├── EntityTypeReference.php │ │ ├── Error.php │ │ ├── GroupReference.php │ │ ├── Guid.php │ │ ├── IntegratorLoginReference.php │ │ ├── InvoiceTemplateReference.php │ │ ├── IvItemReference.php │ │ ├── KaseyaKey.php │ │ ├── ManagedDevicesIntegration.php │ │ ├── ManagedDevicesIntegrationCrossReference.php │ │ ├── ManagedDevicesIntegrationLogin.php │ │ ├── ManagedDevicesIntegrationNotification.php │ │ ├── ManagedDevicesIntegrationReference.php │ │ ├── Management.php │ │ ├── ManagementBackup.php │ │ ├── ManagementItSolution.php │ │ ├── ManagementItSolutionAgreementInterfaceParameter.php │ │ ├── ManagementLogDocumentInfo.php │ │ ├── ManagementReportNotification.php │ │ ├── ManagementSolutionReference.php │ │ ├── ManufacturerReference.php │ │ ├── MarketDescription.php │ │ ├── MarketDescriptionReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── NoteTypeReference.php │ │ ├── NotificationRecipientReference.php │ │ ├── OpportunityStatusReference.php │ │ ├── OwnershipType.php │ │ ├── OwnershipTypeReference.php │ │ ├── PatchOperation.php │ │ ├── PortalConfiguration.php │ │ ├── PortalConfigurationInvoiceSetup.php │ │ ├── PortalConfigurationOpportunitySetup.php │ │ ├── PortalConfigurationPasswordEmailSetup.php │ │ ├── PortalConfigurationPaymentProcessor.php │ │ ├── PortalConfigurationPaymentProcessorReference.php │ │ ├── PortalConfigurationProjectSetup.php │ │ ├── PortalConfigurationReference.php │ │ ├── PortalConfigurationServiceSetup.php │ │ ├── PortalSecurity.php │ │ ├── PortalSecurityLevel.php │ │ ├── PortalSecuritySetting.php │ │ ├── PricingScheduleReference.php │ │ ├── RelationshipReference.php │ │ ├── RequestPasswordRequest.php │ │ ├── SLAReference.php │ │ ├── ServiceSignoffReference.php │ │ ├── ServiceTemplateReference.php │ │ ├── SicCodeReference.php │ │ ├── SiteReference.php │ │ ├── State.php │ │ ├── SuccessResponse.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TaxCodeReference.php │ │ ├── TeamRole.php │ │ ├── TeamRoleReference.php │ │ ├── TimeZoneSetupReference.php │ │ ├── Track.php │ │ ├── TrackAction.php │ │ ├── TrackReference.php │ │ ├── Usage.php │ │ ├── ValidatePortalRequest.php │ │ ├── ValidatePortalResponse.php │ │ └── ValidationError.php │ ├── Expense │ │ ├── AgreementReference.php │ │ ├── AuditSource.php │ │ ├── AuditType.php │ │ ├── Classification.php │ │ ├── ClassificationReference.php │ │ ├── CompanyReference.php │ │ ├── Count.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── Error.php │ │ ├── ExpenseEntry.php │ │ ├── ExpenseEntryAudit.php │ │ ├── ExpenseReport.php │ │ ├── ExpenseReportAudit.php │ │ ├── ExpenseReportReference.php │ │ ├── ExpenseTax.php │ │ ├── ExpenseTaxTypeInfo.php │ │ ├── ExpenseTaxTypeReference.php │ │ ├── ExpenseType.php │ │ ├── ExpenseTypeExternalIntegrationReference.php │ │ ├── ExpenseTypeReference.php │ │ ├── ExternalExpenseTypeIntegrationReference.php │ │ ├── Guid.php │ │ ├── InvoiceReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── PatchOperation.php │ │ ├── PaymentMethodReference.php │ │ ├── PaymentType.php │ │ ├── SuccessResponse.php │ │ └── ValidationError.php │ ├── Finance │ │ ├── AccountingBatch.php │ │ ├── AccountingPackage.php │ │ ├── Addition.php │ │ ├── Adjustment.php │ │ ├── AdjustmentDetailReference.php │ │ ├── Agreement.php │ │ ├── AgreementBatchSetup.php │ │ ├── AgreementReference.php │ │ ├── AgreementSite.php │ │ ├── AgreementType.php │ │ ├── AgreementTypeBoardDefault.php │ │ ├── AgreementTypeReference.php │ │ ├── AgreementTypeWorkRole.php │ │ ├── AgreementTypeWorkRoleExclusion.php │ │ ├── AgreementTypeWorkType.php │ │ ├── AgreementTypeWorkTypeExclusion.php │ │ ├── AgreementWorkRole.php │ │ ├── AgreementWorkRoleExclusion.php │ │ ├── AgreementWorkType.php │ │ ├── AgreementWorkTypeExclusion.php │ │ ├── BatchEntry.php │ │ ├── BillingCycle.php │ │ ├── BillingCycleReference.php │ │ ├── BillingSetup.php │ │ ├── BillingSetupRouting.php │ │ ├── BillingStatus.php │ │ ├── BillingStatusReference.php │ │ ├── BillingTerm.php │ │ ├── BillingTermsReference.php │ │ ├── BoardDefault.php │ │ ├── BoardReference.php │ │ ├── ChargeCodeReference.php │ │ ├── ClassificationReference.php │ │ ├── ClosedInvoice.php │ │ ├── CompanyReference.php │ │ ├── CompanyTypeReference.php │ │ ├── ConfigurationReference.php │ │ ├── ContactReference.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── CreateAccountingBatchRequest.php │ │ ├── Currency.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── DeliveryMethod.php │ │ ├── EmailTemplateReference.php │ │ ├── Error.php │ │ ├── ExpenseDetailReference.php │ │ ├── ExpenseTypeExemption.php │ │ ├── ExpenseTypeReference.php │ │ ├── ExportAccountingBatchRequest.php │ │ ├── GLAccount.php │ │ ├── GLCaption.php │ │ ├── GLExport.php │ │ ├── GLExportAdjustmentTransaction.php │ │ ├── GLExportAdjustmentTransactionDetail.php │ │ ├── GLExportCustomer.php │ │ ├── GLExportCustomerTaxLevel.php │ │ ├── GLExportExpense.php │ │ ├── GLExportExpenseBill.php │ │ ├── GLExportExpenseBillDetail.php │ │ ├── GLExportExpenseOffset.php │ │ ├── GLExportInventoryTransfer.php │ │ ├── GLExportInventoryTransferOffset.php │ │ ├── GLExportPurchaseTransaction.php │ │ ├── GLExportPurchaseTransactionDetail.php │ │ ├── GLExportPurchaseTransactionDetailTax.php │ │ ├── GLExportPurchaseTransactionTaxLevel.php │ │ ├── GLExportSettings.php │ │ ├── GLExportTransaction.php │ │ ├── GLExportTransactionDetail.php │ │ ├── GLExportTransactionDetailTaxLevel.php │ │ ├── GLExportTransactionTaxLevel.php │ │ ├── GLExportVendor.php │ │ ├── Invoice.php │ │ ├── InvoiceEmailTemplate.php │ │ ├── InvoiceReference.php │ │ ├── InvoiceTemplate.php │ │ ├── InvoiceTemplateReference.php │ │ ├── InvoiceTemplateSetup.php │ │ ├── IvItemReference.php │ │ ├── MappedRecordReference.php │ │ ├── MappedType.php │ │ ├── MappedTypeReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── OpportunityReference.php │ │ ├── PatchOperation.php │ │ ├── Payment.php │ │ ├── PaymentMethodReference.php │ │ ├── ProductReference.php │ │ ├── ProductSubCategoryReference.php │ │ ├── ProductTypeExemption.php │ │ ├── ProductTypeReference.php │ │ ├── ProjectPhaseReference.php │ │ ├── ProjectReference.php │ │ ├── ProjectTypeReference.php │ │ ├── PurchaseOrderLineItemReference.php │ │ ├── PurchaseOrderReference.php │ │ ├── SLAReference.php │ │ ├── ServiceSurveyReference.php │ │ ├── ServiceTypeReference.php │ │ ├── ShipmentMethodReference.php │ │ ├── SiteReference.php │ │ ├── StateReference.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TaxCode.php │ │ ├── TaxCodeLevel.php │ │ ├── TaxCodeLevelReference.php │ │ ├── TaxCodeReference.php │ │ ├── TaxCodeXRef.php │ │ ├── TaxIntegration.php │ │ ├── TaxIntegrationInfo.php │ │ ├── TaxableExpenseTypeLevel.php │ │ ├── TaxableProductTypeLevel.php │ │ ├── TaxableWorkRoleLevel.php │ │ ├── TaxableXRefLevel.php │ │ ├── TicketReference.php │ │ ├── TimeEntryReference.php │ │ ├── UnitOfMeasureReference.php │ │ ├── UnpostedExpense.php │ │ ├── UnpostedExpenseTaxableLevel.php │ │ ├── UnpostedInvoice.php │ │ ├── UnpostedInvoiceTaxableLevel.php │ │ ├── UnpostedProcurement.php │ │ ├── UnpostedProcurementTaxableLevel.php │ │ ├── Usage.php │ │ ├── ValidationError.php │ │ ├── WarehouseBinReference.php │ │ ├── WarehouseReference.php │ │ ├── WorkRoleExemption.php │ │ ├── WorkRoleReference.php │ │ └── WorkTypeReference.php │ ├── Internal │ │ ├── AgreementReference.php │ │ ├── BoardReference.php │ │ ├── CalendarReference.php │ │ ├── CentralServiceEula.php │ │ ├── ChargeToReference.php │ │ ├── ClassificationReference.php │ │ ├── CloudBusMessage.php │ │ ├── CompanyReference.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── DocumentReference.php │ │ ├── Error.php │ │ ├── Eula.php │ │ ├── ExpenseEntryInternal.php │ │ ├── ExpenseReportReference.php │ │ ├── ExpenseTax.php │ │ ├── ExpenseTaxTypeReference.php │ │ ├── ExpenseTypeReference.php │ │ ├── Guid.php │ │ ├── InvoiceReference.php │ │ ├── JObject.php │ │ ├── Lab.php │ │ ├── LdapConfigurationReference.php │ │ ├── MemberNotificationSetting.php │ │ ├── MemberReference.php │ │ ├── MemberTypeReference.php │ │ ├── Metadata.php │ │ ├── MyMember.php │ │ ├── MySecurity.php │ │ ├── PatchOperation.php │ │ ├── PaymentMethodReference.php │ │ ├── ProjectBoardReference.php │ │ ├── ReportCardReference.php │ │ ├── SecurityRoleReference.php │ │ ├── ServiceLocationReference.php │ │ ├── ServiceStatusReference.php │ │ ├── Session.php │ │ ├── StructureReference.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TicketPipeline.php │ │ ├── TicketReference.php │ │ ├── TicketsPipeline.php │ │ ├── TimeEntryInternal.php │ │ ├── TimeSheetReference.php │ │ ├── TimeZoneSetupReference.php │ │ ├── UploadToMarketplaceRequest.php │ │ ├── ValidationError.php │ │ ├── WarehouseBinReference.php │ │ ├── WarehouseReference.php │ │ ├── WidgetViewResponse.php │ │ ├── WorkRoleReference.php │ │ └── WorkTypeReference.php │ ├── Marketing │ │ ├── ActivityReference.php │ │ ├── Campaign.php │ │ ├── CampaignAudit.php │ │ ├── CampaignStatus.php │ │ ├── CampaignStatusReference.php │ │ ├── CampaignSubType.php │ │ ├── CampaignSubTypeReference.php │ │ ├── CampaignType.php │ │ ├── CampaignTypeReference.php │ │ ├── Count.php │ │ ├── EmailOpened.php │ │ ├── Error.php │ │ ├── FormSubmitted.php │ │ ├── Group.php │ │ ├── GroupReference.php │ │ ├── LinkClicked.php │ │ ├── MarketingCompany.php │ │ ├── MarketingContact.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── OpportunityReference.php │ │ ├── PatchOperation.php │ │ ├── Usage.php │ │ └── ValidationError.php │ ├── Procurement │ │ ├── Adjustment.php │ │ ├── AdjustmentDetail.php │ │ ├── AdjustmentReference.php │ │ ├── AdjustmentType.php │ │ ├── AdjustmentTypeReference.php │ │ ├── AgreementReference.php │ │ ├── BillingCycleReference.php │ │ ├── BillingTermsReference.php │ │ ├── BulkResult.php │ │ ├── CatalogComponent.php │ │ ├── CatalogInventory.php │ │ ├── CatalogItem.php │ │ ├── CatalogItemReference.php │ │ ├── CatalogPricing.php │ │ ├── Category.php │ │ ├── CompanyReference.php │ │ ├── ContactReference.php │ │ ├── Conversion.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── EntityTypeReference.php │ │ ├── Error.php │ │ ├── ErrorResponseMessage.php │ │ ├── IRestIdentifiedItem.php │ │ ├── IdCollection.php │ │ ├── InventoryOnHand.php │ │ ├── InvoiceReference.php │ │ ├── IvItemReference.php │ │ ├── LegacySubCategory.php │ │ ├── Manufacturer.php │ │ ├── ManufacturerReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── MinimumStockByWarehouse.php │ │ ├── NotificationRecipientReference.php │ │ ├── OnHandSerialNumber.php │ │ ├── OnHandSerialNumberReference.php │ │ ├── OpportunityReference.php │ │ ├── OpportunityStatusReference.php │ │ ├── PatchOperation.php │ │ ├── PricingBreak.php │ │ ├── PricingDetail.php │ │ ├── PricingSchedule.php │ │ ├── ProcurementSetting.php │ │ ├── ProductCategoryReference.php │ │ ├── ProductComponent.php │ │ ├── ProductDemand.php │ │ ├── ProductDetach.php │ │ ├── ProductItem.php │ │ ├── ProductItemReference.php │ │ ├── ProductPickingShippingDetail.php │ │ ├── ProductRecurring.php │ │ ├── ProductSubCategoryReference.php │ │ ├── ProductType.php │ │ ├── ProductTypeReference.php │ │ ├── ProjectReference.php │ │ ├── PurchaseOrder.php │ │ ├── PurchaseOrderLineItem.php │ │ ├── PurchaseOrderStatus.php │ │ ├── PurchaseOrderStatusEmailTemplate.php │ │ ├── PurchaseOrderStatusEmailTemplateReference.php │ │ ├── PurchaseOrderStatusNotification.php │ │ ├── PurchaseOrderStatusReference.php │ │ ├── PurchasingDemand.php │ │ ├── ResultInfo.php │ │ ├── RmaAction.php │ │ ├── RmaDisposition.php │ │ ├── RmaStatus.php │ │ ├── RmaStatusEmailTemplate.php │ │ ├── RmaStatusEmailTemplateReference.php │ │ ├── RmaStatusNotification.php │ │ ├── RmaStatusReference.php │ │ ├── SLAReference.php │ │ ├── SalesOrderReference.php │ │ ├── ShipmentMethod.php │ │ ├── ShipmentMethodReference.php │ │ ├── SiteReference.php │ │ ├── SubCategory.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TaxCodeReference.php │ │ ├── TicketReference.php │ │ ├── UnitOfMeasure.php │ │ ├── UnitOfMeasureReference.php │ │ ├── Usage.php │ │ ├── ValidationError.php │ │ ├── Warehouse.php │ │ ├── WarehouseBin.php │ │ ├── WarehouseBinReference.php │ │ └── WarehouseReference.php │ ├── Project │ │ ├── ActivityReference.php │ │ ├── AgreementReference.php │ │ ├── BillingTermsReference.php │ │ ├── BoardReference.php │ │ ├── CompanyReference.php │ │ ├── ConfigurationReference.php │ │ ├── ContactReference.php │ │ ├── Convert.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── DocumentReference.php │ │ ├── Error.php │ │ ├── FilterValues.php │ │ ├── Guid.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── NoteTypeReference.php │ │ ├── OpportunityReference.php │ │ ├── PatchOperation.php │ │ ├── PhaseStatus.php │ │ ├── PhaseStatusReference.php │ │ ├── PriorityReference.php │ │ ├── ProductReference.php │ │ ├── Project.php │ │ ├── ProjectBoardReference.php │ │ ├── ProjectBoardTeam.php │ │ ├── ProjectBoardTeamMember.php │ │ ├── ProjectContact.php │ │ ├── ProjectNote.php │ │ ├── ProjectPhase.php │ │ ├── ProjectPhaseReference.php │ │ ├── ProjectReference.php │ │ ├── ProjectRoleReference.php │ │ ├── ProjectSecurityRole.php │ │ ├── ProjectSecurityRoleSetting.php │ │ ├── ProjectStatus.php │ │ ├── ProjectStatusReference.php │ │ ├── ProjectTeamMember.php │ │ ├── ProjectType.php │ │ ├── ProjectTypeReference.php │ │ ├── ScheduleEntryReference.php │ │ ├── ServiceCodeReference.php │ │ ├── ServiceItemReference.php │ │ ├── ServiceLocationReference.php │ │ ├── ServiceSourceReference.php │ │ ├── ServiceStatusReference.php │ │ ├── ServiceSubTypeReference.php │ │ ├── ServiceTypeReference.php │ │ ├── SiteReference.php │ │ ├── StatusIndicator.php │ │ ├── StatusIndicatorReference.php │ │ ├── SuccessResponse.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TaxCodeReference.php │ │ ├── Ticket.php │ │ ├── TicketNote.php │ │ ├── TicketTask.php │ │ ├── TimeEntryReference.php │ │ ├── Usage.php │ │ ├── ValidationError.php │ │ └── WorkRoleReference.php │ ├── Sales │ │ ├── Activity.php │ │ ├── ActivityStatus.php │ │ ├── ActivityStatusReference.php │ │ ├── ActivityType.php │ │ ├── ActivityTypeReference.php │ │ ├── Agreement.php │ │ ├── AgreementReference.php │ │ ├── AgreementTypeReference.php │ │ ├── BillingCycleReference.php │ │ ├── BillingTermsReference.php │ │ ├── BoardReference.php │ │ ├── CampaignReference.php │ │ ├── Commission.php │ │ ├── CompanyReference.php │ │ ├── ContactReference.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── Error.php │ │ ├── Forecast.php │ │ ├── Guid.php │ │ ├── InvoiceTemplateReference.php │ │ ├── IvItemReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── NoteTypeReference.php │ │ ├── NotificationRecipientReference.php │ │ ├── Opportunity.php │ │ ├── OpportunityContact.php │ │ ├── OpportunityNote.php │ │ ├── OpportunityPriorityReference.php │ │ ├── OpportunityProbabilityReference.php │ │ ├── OpportunityRating.php │ │ ├── OpportunityRatingReference.php │ │ ├── OpportunityReference.php │ │ ├── OpportunitySalesRoleReference.php │ │ ├── OpportunityStage.php │ │ ├── OpportunityStageReference.php │ │ ├── OpportunityStatus.php │ │ ├── OpportunityStatusReference.php │ │ ├── OpportunityToAgreementConversion.php │ │ ├── OpportunityToProjectConversion.php │ │ ├── OpportunityToSalesOrderConversion.php │ │ ├── OpportunityToServiceTicketConversion.php │ │ ├── OpportunityType.php │ │ ├── OpportunityTypeReference.php │ │ ├── Order.php │ │ ├── OrderStatus.php │ │ ├── OrderStatusEmailTemplate.php │ │ ├── OrderStatusEmailTemplateReference.php │ │ ├── OrderStatusNotification.php │ │ ├── OrderStatusReference.php │ │ ├── PatchOperation.php │ │ ├── PriorityReference.php │ │ ├── ProductCategoryReference.php │ │ ├── ProductRecurring.php │ │ ├── ProductSubCategoryReference.php │ │ ├── Project.php │ │ ├── ProjectBoardReference.php │ │ ├── ProjectReference.php │ │ ├── ProjectStatusReference.php │ │ ├── ProjectTypeReference.php │ │ ├── ReminderReference.php │ │ ├── Role.php │ │ ├── SLAReference.php │ │ ├── SalesProbability.php │ │ ├── SalesQuota.php │ │ ├── SalesTeam.php │ │ ├── SalesTeamMember.php │ │ ├── SalesTeamReference.php │ │ ├── ScheduleStatusReference.php │ │ ├── ServiceItemReference.php │ │ ├── ServiceLocationReference.php │ │ ├── ServiceSourceReference.php │ │ ├── ServiceStatusReference.php │ │ ├── ServiceSubTypeReference.php │ │ ├── ServiceTeamReference.php │ │ ├── ServiceTypeReference.php │ │ ├── SiteReference.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TaxCodeReference.php │ │ ├── Team.php │ │ ├── Ticket.php │ │ ├── TicketReference.php │ │ ├── Usage.php │ │ ├── ValidationError.php │ │ ├── WorkRoleReference.php │ │ └── WorkTypeReference.php │ ├── Schedule │ │ ├── Calendar.php │ │ ├── ChargeCodeReference.php │ │ ├── Count.php │ │ ├── Error.php │ │ ├── Guid.php │ │ ├── Holiday.php │ │ ├── HolidayList.php │ │ ├── HolidayListReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── PatchOperation.php │ │ ├── PortalCalendar.php │ │ ├── ReminderReference.php │ │ ├── ScheduleColor.php │ │ ├── ScheduleDetail.php │ │ ├── ScheduleEntry.php │ │ ├── ScheduleEntryDetail.php │ │ ├── ScheduleEntryReference.php │ │ ├── ScheduleReminderTime.php │ │ ├── ScheduleSpanReference.php │ │ ├── ScheduleStatus.php │ │ ├── ScheduleStatusReference.php │ │ ├── ScheduleType.php │ │ ├── ScheduleTypeReference.php │ │ ├── ServiceLocationReference.php │ │ ├── Usage.php │ │ └── ValidationError.php │ ├── Service │ │ ├── ActivityReference.php │ │ ├── AgreementReference.php │ │ ├── Board.php │ │ ├── BoardAutoAssignResource.php │ │ ├── BoardAutoTemplate.php │ │ ├── BoardCopy.php │ │ ├── BoardExcludedMember.php │ │ ├── BoardInfo.php │ │ ├── BoardItem.php │ │ ├── BoardItemAssociation.php │ │ ├── BoardNotification.php │ │ ├── BoardReference.php │ │ ├── BoardStatus.php │ │ ├── BoardStatusNotification.php │ │ ├── BoardSubType.php │ │ ├── BoardTeam.php │ │ ├── BoardType.php │ │ ├── BoardTypeInfo.php │ │ ├── BoardTypeSubTypeItemAssociation.php │ │ ├── CalendarReference.php │ │ ├── Code.php │ │ ├── CompanyReference.php │ │ ├── ConfigurationReference.php │ │ ├── ContactReference.php │ │ ├── ConvertToProject.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── DocumentReference.php │ │ ├── Error.php │ │ ├── ExternalIntegrationStatusReference.php │ │ ├── FilterValues.php │ │ ├── GenericIdIdentifierReference.php │ │ ├── Guid.php │ │ ├── Impact.php │ │ ├── IntegratorLoginReference.php │ │ ├── KnowledgeBaseArticle.php │ │ ├── KnowledgeBaseCategory.php │ │ ├── KnowledgeBaseSettings.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── NotificationRecipientReference.php │ │ ├── OpportunityReference.php │ │ ├── PatchOperation.php │ │ ├── Priority.php │ │ ├── PriorityReference.php │ │ ├── ProductReference.php │ │ ├── ProjectPhaseReference.php │ │ ├── ProjectReference.php │ │ ├── SLA.php │ │ ├── SLAPriority.php │ │ ├── SLAReference.php │ │ ├── ScheduleEntryReference.php │ │ ├── ServiceCodeReference.php │ │ ├── ServiceEmailTemplate.php │ │ ├── ServiceEmailTemplateReference.php │ │ ├── ServiceItemReference.php │ │ ├── ServiceLocation.php │ │ ├── ServiceLocationReference.php │ │ ├── ServiceNote.php │ │ ├── ServiceSignoff.php │ │ ├── ServiceSignoffReference.php │ │ ├── ServiceSourceReference.php │ │ ├── ServiceStatusReference.php │ │ ├── ServiceSubTypeReference.php │ │ ├── ServiceSurvey.php │ │ ├── ServiceSurveyQuestion.php │ │ ├── ServiceSurveyQuestionOption.php │ │ ├── ServiceSurveyReference.php │ │ ├── ServiceTeam.php │ │ ├── ServiceTeamReference.php │ │ ├── ServiceTemplate.php │ │ ├── ServiceTemplateReference.php │ │ ├── ServiceTicketLink.php │ │ ├── ServiceTypeReference.php │ │ ├── Severity.php │ │ ├── SiteReference.php │ │ ├── Source.php │ │ ├── StatusExternalIntegrationReference.php │ │ ├── StatusIndicatorReference.php │ │ ├── SuccessResponse.php │ │ ├── SurveyOption.php │ │ ├── SurveyResult.php │ │ ├── SurveyResultDetail.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── Task.php │ │ ├── TeamMember.php │ │ ├── TemplateGeneratedCountsModel.php │ │ ├── Ticket.php │ │ ├── TicketMerge.php │ │ ├── TicketReference.php │ │ ├── TicketSync.php │ │ ├── TimeEntryReference.php │ │ ├── Usage.php │ │ ├── ValidationError.php │ │ ├── WorkRoleReference.php │ │ └── WorkTypeReference.php │ ├── System │ │ ├── ActivityStatusReference.php │ │ ├── ActivityTypeReference.php │ │ ├── AddressFormatReference.php │ │ ├── ApiMember.php │ │ ├── ApiRequest.php │ │ ├── AuditTrailEntry.php │ │ ├── AuditTrailEntryInsertRequest.php │ │ ├── AuditTrailObjects.php │ │ ├── AuthAnvil.php │ │ ├── AutoSyncTime.php │ │ ├── AutomateScriptReference.php │ │ ├── BatchRequest.php │ │ ├── BatchResponse.php │ │ ├── BoardReference.php │ │ ├── BundleRequest.php │ │ ├── BundleRequestsCollection.php │ │ ├── BundleResult.php │ │ ├── BundleResultsCollection.php │ │ ├── CalendarReference.php │ │ ├── CalendarSetupReference.php │ │ ├── CallbackEntry.php │ │ ├── Certification.php │ │ ├── CertificationReference.php │ │ ├── CompanyReference.php │ │ ├── CompanyStatusReference.php │ │ ├── ConnectWiseHostedScreen.php │ │ ├── ConnectWiseHostedSetup.php │ │ ├── ContactReference.php │ │ ├── CorporateStructure.php │ │ ├── CorporateStructureLevel.php │ │ ├── CorporateStructureLevelReference.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── Crm.php │ │ ├── CurrencyReference.php │ │ ├── CustomReport.php │ │ ├── CustomReportParameter.php │ │ ├── CustomReportReference.php │ │ ├── Department.php │ │ ├── DepartmentInfo.php │ │ ├── DepartmentLocation.php │ │ ├── DepartmentLocationInfo.php │ │ ├── DocumentInfo.php │ │ ├── DocumentReference.php │ │ ├── DocumentSetup.php │ │ ├── EPayConfiguration.php │ │ ├── EmailConnector.php │ │ ├── EmailConnectorParsingRule.php │ │ ├── EmailConnectorParsingStyle.php │ │ ├── EmailConnectorParsingStyleReference.php │ │ ├── EmailConnectorParsingTypeReference.php │ │ ├── EmailConnectorParsingVariableReference.php │ │ ├── EmailConnectorReference.php │ │ ├── EmailExclusion.php │ │ ├── EmailToken.php │ │ ├── EndpointRequest.php │ │ ├── EndpointResponse.php │ │ ├── Error.php │ │ ├── ErrorResponseMessage.php │ │ ├── FilterValues.php │ │ ├── GenericBoardTeamReference.php │ │ ├── GroupReference.php │ │ ├── IRestIdentifiedItem.php │ │ ├── Imap.php │ │ ├── ImapSetupReference.php │ │ ├── ImportMassMaintenance.php │ │ ├── InOutBoard.php │ │ ├── InOutType.php │ │ ├── InOutTypeReference.php │ │ ├── Info.php │ │ ├── IntegrationRequest.php │ │ ├── IntegratorLogin.php │ │ ├── JArray.php │ │ ├── JObject.php │ │ ├── KPI.php │ │ ├── KPICategory.php │ │ ├── KPICategoryReference.php │ │ ├── KPIReference.php │ │ ├── LdapConfiguration.php │ │ ├── LdapConfigurationReference.php │ │ ├── LdapConfigurationTestLink.php │ │ ├── LicenseBit.php │ │ ├── Link.php │ │ ├── LocaleInfo.php │ │ ├── LocaleReference.php │ │ ├── Location.php │ │ ├── LocationDepartment.php │ │ ├── LocationInfo.php │ │ ├── LocationWorkRole.php │ │ ├── ManagementNetworkSecurity.php │ │ ├── Member.php │ │ ├── MemberAccrual.php │ │ ├── MemberCertification.php │ │ ├── MemberDeactivation.php │ │ ├── MemberDeactivationCompanyTeam.php │ │ ├── MemberDeactivationDepartmentMananager.php │ │ ├── MemberDeactivationDispatchMember.php │ │ ├── MemberDeactivationDutyManager.php │ │ ├── MemberDeactivationKnowledgebaseArticle.php │ │ ├── MemberDeactivationMyCompanyCOORole.php │ │ ├── MemberDeactivationMyCompanyControllerRole.php │ │ ├── MemberDeactivationMyCompanyDispatchRole.php │ │ ├── MemberDeactivationMyCompanyDutyManagerRole.php │ │ ├── MemberDeactivationMyCompanyPresidentRole.php │ │ ├── MemberDeactivationMyCompanyServiceManagerRole.php │ │ ├── MemberDeactivationOpportunity.php │ │ ├── MemberDeactivationProjectManager.php │ │ ├── MemberDeactivationSalesActivity.php │ │ ├── MemberDeactivationSalesTeam.php │ │ ├── MemberDeactivationServiceManger.php │ │ ├── MemberDeactivationServiceTeam.php │ │ ├── MemberDeactivationServiceTemplate.php │ │ ├── MemberDeactivationStatusWorkflow.php │ │ ├── MemberDeactivationWorkflow.php │ │ ├── MemberDelegation.php │ │ ├── MemberInfo.php │ │ ├── MemberNotification.php │ │ ├── MemberReference.php │ │ ├── MemberSkill.php │ │ ├── MemberSsoToken.php │ │ ├── MemberTypeReference.php │ │ ├── MenuEntry.php │ │ ├── MenuEntryLocation.php │ │ ├── MenuLocationReference.php │ │ ├── Metadata.php │ │ ├── NotificationRecipient.php │ │ ├── NotificationRecipientReference.php │ │ ├── NotifyTypeReference.php │ │ ├── OrderStatusReference.php │ │ ├── OsGradeWeight.php │ │ ├── Other.php │ │ ├── PageValues.php │ │ ├── ParsingType.php │ │ ├── ParsingVariable.php │ │ ├── PatchOperation.php │ │ ├── PortalConfigurationReference.php │ │ ├── PortalReport.php │ │ ├── PriorityReference.php │ │ ├── Product.php │ │ ├── ProjectBoardReference.php │ │ ├── ProjectStatusReference.php │ │ ├── QuoteLink.php │ │ ├── Report.php │ │ ├── ReportCard.php │ │ ├── ReportCardDetail.php │ │ ├── ReportCardReference.php │ │ ├── ReportDataResponse.php │ │ ├── ReportingService.php │ │ ├── SecurityRole.php │ │ ├── SecurityRoleReference.php │ │ ├── SecurityRoleSetting.php │ │ ├── Service.php │ │ ├── ServiceItemReference.php │ │ ├── ServiceLocationReference.php │ │ ├── ServiceSourceReference.php │ │ ├── ServiceStatusReference.php │ │ ├── ServiceSubTypeReference.php │ │ ├── ServiceSurveyReference.php │ │ ├── ServiceTemplateReference.php │ │ ├── ServiceTypeReference.php │ │ ├── SetupScreen.php │ │ ├── Skill.php │ │ ├── SkillCategory.php │ │ ├── SkillCategoryReference.php │ │ ├── SkillReference.php │ │ ├── SsoConfiguration.php │ │ ├── StandardNote.php │ │ ├── StandardNoteInfo.php │ │ ├── StructureReference.php │ │ ├── SuccessResponse.php │ │ ├── Survey.php │ │ ├── SurveyQuestion.php │ │ ├── SurveyQuestionReference.php │ │ ├── SurveyQuestionValue.php │ │ ├── SurveyReference.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── SystemMenuEntryReference.php │ │ ├── SystemSetting.php │ │ ├── TeamRoleReference.php │ │ ├── TimeExpense.php │ │ ├── TimeZone.php │ │ ├── TimeZoneReference.php │ │ ├── TimeZoneSetup.php │ │ ├── TimeZoneSetupReference.php │ │ ├── TodayPageCategory.php │ │ ├── Token.php │ │ ├── TrackReference.php │ │ ├── Type.php │ │ ├── Usage.php │ │ ├── UserDefinedField.php │ │ ├── UserDefinedFieldOption.php │ │ ├── UserDefinedFieldReference.php │ │ ├── ValidationError.php │ │ ├── WarehouseBinReference.php │ │ ├── WarehouseReference.php │ │ ├── WorkRoleReference.php │ │ ├── WorkTypeReference.php │ │ ├── Workflow.php │ │ ├── WorkflowAction.php │ │ ├── WorkflowActionAutomateParameter.php │ │ ├── WorkflowAttachment.php │ │ ├── WorkflowEvent.php │ │ ├── WorkflowNotifyType.php │ │ ├── WorkflowTableType.php │ │ ├── WorkflowTableTypeReference.php │ │ ├── WorkflowTrigger.php │ │ └── WorkflowTriggerOption.php │ ├── Time │ │ ├── ActivityStopwatch.php │ │ ├── AgreementReference.php │ │ ├── AuditSource.php │ │ ├── AuditType.php │ │ ├── ChargeCode.php │ │ ├── ChargeCodeExpenseType.php │ │ ├── ChargeCodeReference.php │ │ ├── CompanyReference.php │ │ ├── Count.php │ │ ├── CustomFieldValue.php │ │ ├── Error.php │ │ ├── ExpenseTypeReference.php │ │ ├── ExternalWorkTypeIntegrationReference.php │ │ ├── Guid.php │ │ ├── InvoiceReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── PatchOperation.php │ │ ├── ScheduleStopwatch.php │ │ ├── ServiceStatusReference.php │ │ ├── SuccessResponse.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TicketReference.php │ │ ├── TicketStopwatch.php │ │ ├── TimeAccrual.php │ │ ├── TimeAccrualDetail.php │ │ ├── TimeAccrualReference.php │ │ ├── TimeEntry.php │ │ ├── TimeEntryAudit.php │ │ ├── TimePeriod.php │ │ ├── TimePeriodSetup.php │ │ ├── TimePeriodSetupDefaults.php │ │ ├── TimePeriodSetupReference.php │ │ ├── TimeSheet.php │ │ ├── TimeSheetAudit.php │ │ ├── TimeSheetReference.php │ │ ├── Usage.php │ │ ├── ValidationError.php │ │ ├── WorkRole.php │ │ ├── WorkRoleLocation.php │ │ ├── WorkRoleReference.php │ │ ├── WorkType.php │ │ ├── WorkTypeExternalIntegrationReference.php │ │ └── WorkTypeReference.php │ └── map.json ├── v2019_4 │ ├── Company │ │ ├── ActivityStatusReference.php │ │ ├── ActivityTypeReference.php │ │ ├── AddressFormat.php │ │ ├── AddressFormatReference.php │ │ ├── AgreementReference.php │ │ ├── AgreementTypeReference.php │ │ ├── BillingDeliveryReference.php │ │ ├── BillingTermsReference.php │ │ ├── CalendarReference.php │ │ ├── CatalogItemReference.php │ │ ├── ClearPickerRequest.php │ │ ├── CommunicationTypeReference.php │ │ ├── Company.php │ │ ├── CompanyCustomNote.php │ │ ├── CompanyGroup.php │ │ ├── CompanyManagementSummary.php │ │ ├── CompanyMerge.php │ │ ├── CompanyNote.php │ │ ├── CompanyNoteType.php │ │ ├── CompanyPickerItem.php │ │ ├── CompanyReference.php │ │ ├── CompanySite.php │ │ ├── CompanyStatus.php │ │ ├── CompanyStatusReference.php │ │ ├── CompanyTeam.php │ │ ├── CompanyType.php │ │ ├── CompanyTypeAssociation.php │ │ ├── CompanyTypeInfo.php │ │ ├── CompanyTypeReference.php │ │ ├── Configuration.php │ │ ├── ConfigurationQuestion.php │ │ ├── ConfigurationStatus.php │ │ ├── ConfigurationStatusReference.php │ │ ├── ConfigurationType.php │ │ ├── ConfigurationTypeQuestion.php │ │ ├── ConfigurationTypeQuestionReference.php │ │ ├── ConfigurationTypeQuestionValue.php │ │ ├── ConfigurationTypeReference.php │ │ ├── Contact.php │ │ ├── ContactCommunication.php │ │ ├── ContactCommunicationItem.php │ │ ├── ContactDepartment.php │ │ ├── ContactDepartmentReference.php │ │ ├── ContactGroup.php │ │ ├── ContactNote.php │ │ ├── ContactReference.php │ │ ├── ContactRelationship.php │ │ ├── ContactTrack.php │ │ ├── ContactType.php │ │ ├── ContactTypeAssociation.php │ │ ├── ContactTypeReference.php │ │ ├── Count.php │ │ ├── Country.php │ │ ├── CountryReference.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── EntityType.php │ │ ├── EntityTypeReference.php │ │ ├── Error.php │ │ ├── GroupReference.php │ │ ├── Guid.php │ │ ├── IntegratorLoginReference.php │ │ ├── InvoiceTemplateReference.php │ │ ├── IvItemReference.php │ │ ├── KaseyaKey.php │ │ ├── ManagedDevicesIntegration.php │ │ ├── ManagedDevicesIntegrationCrossReference.php │ │ ├── ManagedDevicesIntegrationLogin.php │ │ ├── ManagedDevicesIntegrationNotification.php │ │ ├── ManagedDevicesIntegrationReference.php │ │ ├── Management.php │ │ ├── ManagementBackup.php │ │ ├── ManagementItSolution.php │ │ ├── ManagementItSolutionAgreementInterfaceParameter.php │ │ ├── ManagementLogDocumentInfo.php │ │ ├── ManagementReportNotification.php │ │ ├── ManagementSolutionReference.php │ │ ├── ManufacturerReference.php │ │ ├── MarketDescription.php │ │ ├── MarketDescriptionReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── NoteTypeReference.php │ │ ├── NotificationRecipientReference.php │ │ ├── OpportunityStatusReference.php │ │ ├── OwnershipType.php │ │ ├── OwnershipTypeReference.php │ │ ├── PatchOperation.php │ │ ├── PortalConfiguration.php │ │ ├── PortalConfigurationInvoiceSetup.php │ │ ├── PortalConfigurationOpportunitySetup.php │ │ ├── PortalConfigurationPasswordEmailSetup.php │ │ ├── PortalConfigurationPaymentProcessor.php │ │ ├── PortalConfigurationPaymentProcessorReference.php │ │ ├── PortalConfigurationProjectSetup.php │ │ ├── PortalConfigurationReference.php │ │ ├── PortalConfigurationServiceSetup.php │ │ ├── PortalSecurity.php │ │ ├── PortalSecurityLevel.php │ │ ├── PortalSecuritySetting.php │ │ ├── PricingScheduleReference.php │ │ ├── RelationshipReference.php │ │ ├── RequestPasswordRequest.php │ │ ├── SLAReference.php │ │ ├── ServiceSignoffReference.php │ │ ├── ServiceTemplateReference.php │ │ ├── SicCodeReference.php │ │ ├── SiteReference.php │ │ ├── State.php │ │ ├── SuccessResponse.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TaxCodeReference.php │ │ ├── TeamRole.php │ │ ├── TeamRoleReference.php │ │ ├── TimeZoneSetupReference.php │ │ ├── Track.php │ │ ├── TrackAction.php │ │ ├── TrackReference.php │ │ ├── Usage.php │ │ ├── ValidatePortalRequest.php │ │ ├── ValidatePortalResponse.php │ │ └── ValidationError.php │ ├── Expense │ │ ├── AgreementReference.php │ │ ├── AuditSource.php │ │ ├── AuditType.php │ │ ├── Classification.php │ │ ├── ClassificationReference.php │ │ ├── CompanyReference.php │ │ ├── Count.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── Error.php │ │ ├── ExpenseEntry.php │ │ ├── ExpenseEntryAudit.php │ │ ├── ExpenseReport.php │ │ ├── ExpenseReportAudit.php │ │ ├── ExpenseReportReference.php │ │ ├── ExpenseTax.php │ │ ├── ExpenseTaxTypeInfo.php │ │ ├── ExpenseTaxTypeReference.php │ │ ├── ExpenseType.php │ │ ├── ExpenseTypeExternalIntegrationReference.php │ │ ├── ExpenseTypeReference.php │ │ ├── ExternalExpenseTypeIntegrationReference.php │ │ ├── Guid.php │ │ ├── InvoiceReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── PatchOperation.php │ │ ├── PaymentMethodReference.php │ │ ├── PaymentType.php │ │ ├── SuccessResponse.php │ │ └── ValidationError.php │ ├── Finance │ │ ├── AccountingBatch.php │ │ ├── AccountingPackage.php │ │ ├── Addition.php │ │ ├── Adjustment.php │ │ ├── AdjustmentDetailReference.php │ │ ├── Agreement.php │ │ ├── AgreementBatchSetup.php │ │ ├── AgreementReference.php │ │ ├── AgreementSite.php │ │ ├── AgreementType.php │ │ ├── AgreementTypeBoardDefault.php │ │ ├── AgreementTypeReference.php │ │ ├── AgreementTypeWorkRole.php │ │ ├── AgreementTypeWorkRoleExclusion.php │ │ ├── AgreementTypeWorkType.php │ │ ├── AgreementTypeWorkTypeExclusion.php │ │ ├── AgreementWorkRole.php │ │ ├── AgreementWorkRoleExclusion.php │ │ ├── AgreementWorkType.php │ │ ├── AgreementWorkTypeExclusion.php │ │ ├── BatchEntry.php │ │ ├── BillingCycle.php │ │ ├── BillingCycleReference.php │ │ ├── BillingSetup.php │ │ ├── BillingSetupRouting.php │ │ ├── BillingStatus.php │ │ ├── BillingStatusReference.php │ │ ├── BillingTerm.php │ │ ├── BillingTermsReference.php │ │ ├── BoardDefault.php │ │ ├── BoardReference.php │ │ ├── ChargeCodeReference.php │ │ ├── ClassificationReference.php │ │ ├── ClosedInvoice.php │ │ ├── CompanyReference.php │ │ ├── CompanyTypeReference.php │ │ ├── ConfigurationReference.php │ │ ├── ContactReference.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── CreateAccountingBatchRequest.php │ │ ├── Currency.php │ │ ├── CurrencyCode.php │ │ ├── CurrencyCodeReference.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── DeliveryMethod.php │ │ ├── EmailTemplateReference.php │ │ ├── Error.php │ │ ├── ExpenseDetailReference.php │ │ ├── ExpenseTypeExemption.php │ │ ├── ExpenseTypeReference.php │ │ ├── ExportAccountingBatchRequest.php │ │ ├── GLAccount.php │ │ ├── GLCaption.php │ │ ├── GLExport.php │ │ ├── GLExportAdjustmentTransaction.php │ │ ├── GLExportAdjustmentTransactionDetail.php │ │ ├── GLExportCustomer.php │ │ ├── GLExportCustomerTaxLevel.php │ │ ├── GLExportExpense.php │ │ ├── GLExportExpenseBill.php │ │ ├── GLExportExpenseBillDetail.php │ │ ├── GLExportExpenseOffset.php │ │ ├── GLExportInventoryTransfer.php │ │ ├── GLExportInventoryTransferOffset.php │ │ ├── GLExportPurchaseTransaction.php │ │ ├── GLExportPurchaseTransactionDetail.php │ │ ├── GLExportPurchaseTransactionDetailTax.php │ │ ├── GLExportPurchaseTransactionTaxLevel.php │ │ ├── GLExportSettings.php │ │ ├── GLExportTransaction.php │ │ ├── GLExportTransactionDetail.php │ │ ├── GLExportTransactionDetailTaxLevel.php │ │ ├── GLExportTransactionTaxLevel.php │ │ ├── GLExportVendor.php │ │ ├── Invoice.php │ │ ├── InvoiceEmailTemplate.php │ │ ├── InvoiceReference.php │ │ ├── InvoiceTemplate.php │ │ ├── InvoiceTemplateReference.php │ │ ├── InvoiceTemplateSetup.php │ │ ├── IvItemReference.php │ │ ├── MappedRecordReference.php │ │ ├── MappedType.php │ │ ├── MappedTypeReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── OpportunityReference.php │ │ ├── PatchOperation.php │ │ ├── Payment.php │ │ ├── PaymentMethodReference.php │ │ ├── ProductReference.php │ │ ├── ProductSubCategoryReference.php │ │ ├── ProductTypeExemption.php │ │ ├── ProductTypeReference.php │ │ ├── ProjectPhaseReference.php │ │ ├── ProjectReference.php │ │ ├── ProjectTypeReference.php │ │ ├── PurchaseOrderLineItemReference.php │ │ ├── PurchaseOrderReference.php │ │ ├── SLAReference.php │ │ ├── ServiceSurveyReference.php │ │ ├── ServiceTypeReference.php │ │ ├── ShipmentMethodReference.php │ │ ├── SiteReference.php │ │ ├── StateReference.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TaxCode.php │ │ ├── TaxCodeLevel.php │ │ ├── TaxCodeLevelReference.php │ │ ├── TaxCodeReference.php │ │ ├── TaxCodeXRef.php │ │ ├── TaxIntegration.php │ │ ├── TaxIntegrationInfo.php │ │ ├── TaxableExpenseTypeLevel.php │ │ ├── TaxableProductTypeLevel.php │ │ ├── TaxableWorkRoleLevel.php │ │ ├── TaxableXRefLevel.php │ │ ├── TicketReference.php │ │ ├── TimeEntryReference.php │ │ ├── UnitOfMeasureReference.php │ │ ├── UnpostedExpense.php │ │ ├── UnpostedExpenseTaxableLevel.php │ │ ├── UnpostedInvoice.php │ │ ├── UnpostedInvoiceTaxableLevel.php │ │ ├── UnpostedProcurement.php │ │ ├── UnpostedProcurementTaxableLevel.php │ │ ├── Usage.php │ │ ├── ValidationError.php │ │ ├── WarehouseBinReference.php │ │ ├── WarehouseReference.php │ │ ├── WorkRoleExemption.php │ │ ├── WorkRoleReference.php │ │ └── WorkTypeReference.php │ ├── Internal │ │ ├── AgreementReference.php │ │ ├── BoardReference.php │ │ ├── CWStartDetail.php │ │ ├── CalculateInvoiceTax.php │ │ ├── CalendarReference.php │ │ ├── CentralServiceEula.php │ │ ├── ChargeToReference.php │ │ ├── ClassificationReference.php │ │ ├── CloudBusMessage.php │ │ ├── CompanyReference.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── DocumentReference.php │ │ ├── Error.php │ │ ├── Eula.php │ │ ├── ExpenseEntryInternal.php │ │ ├── ExpenseReportReference.php │ │ ├── ExpenseTax.php │ │ ├── ExpenseTaxTypeReference.php │ │ ├── ExpenseTypeReference.php │ │ ├── Guid.php │ │ ├── InvoiceReference.php │ │ ├── JObject.php │ │ ├── Lab.php │ │ ├── LdapConfigurationReference.php │ │ ├── MemberNotificationSetting.php │ │ ├── MemberProperty.php │ │ ├── MemberReference.php │ │ ├── MemberTypeReference.php │ │ ├── Metadata.php │ │ ├── MyMember.php │ │ ├── MySecurity.php │ │ ├── PatchOperation.php │ │ ├── PaymentMethodReference.php │ │ ├── ProjectBoardReference.php │ │ ├── ReportCardReference.php │ │ ├── SecurityRoleReference.php │ │ ├── ServiceLocationReference.php │ │ ├── ServiceStatusReference.php │ │ ├── Session.php │ │ ├── StructureReference.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TicketPipeline.php │ │ ├── TicketReference.php │ │ ├── TicketsPipeline.php │ │ ├── TimeEntryInternal.php │ │ ├── TimeSheetReference.php │ │ ├── TimeZoneSetupReference.php │ │ ├── UploadToMarketplaceRequest.php │ │ ├── ValidationError.php │ │ ├── WarehouseBinReference.php │ │ ├── WarehouseReference.php │ │ ├── WidgetViewResponse.php │ │ ├── WorkRoleReference.php │ │ └── WorkTypeReference.php │ ├── Marketing │ │ ├── ActivityReference.php │ │ ├── Campaign.php │ │ ├── CampaignAudit.php │ │ ├── CampaignStatus.php │ │ ├── CampaignStatusReference.php │ │ ├── CampaignSubType.php │ │ ├── CampaignSubTypeReference.php │ │ ├── CampaignType.php │ │ ├── CampaignTypeReference.php │ │ ├── Count.php │ │ ├── EmailOpened.php │ │ ├── Error.php │ │ ├── FormSubmitted.php │ │ ├── Group.php │ │ ├── GroupReference.php │ │ ├── LinkClicked.php │ │ ├── MarketingCompany.php │ │ ├── MarketingContact.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── OpportunityReference.php │ │ ├── PatchOperation.php │ │ ├── Usage.php │ │ └── ValidationError.php │ ├── Procurement │ │ ├── Adjustment.php │ │ ├── AdjustmentDetail.php │ │ ├── AdjustmentReference.php │ │ ├── AdjustmentType.php │ │ ├── AdjustmentTypeReference.php │ │ ├── AgreementReference.php │ │ ├── BillingCycleReference.php │ │ ├── BillingTermsReference.php │ │ ├── BulkResult.php │ │ ├── CatalogComponent.php │ │ ├── CatalogInventory.php │ │ ├── CatalogItem.php │ │ ├── CatalogItemReference.php │ │ ├── CatalogPricing.php │ │ ├── Category.php │ │ ├── CompanyReference.php │ │ ├── ContactReference.php │ │ ├── Conversion.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── EntityTypeReference.php │ │ ├── Error.php │ │ ├── ErrorResponseMessage.php │ │ ├── IRestIdentifiedItem.php │ │ ├── IdCollection.php │ │ ├── InventoryOnHand.php │ │ ├── InvoiceReference.php │ │ ├── IvItemReference.php │ │ ├── LegacySubCategory.php │ │ ├── Manufacturer.php │ │ ├── ManufacturerReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── MinimumStockByWarehouse.php │ │ ├── NotificationRecipientReference.php │ │ ├── OnHandSerialNumber.php │ │ ├── OnHandSerialNumberReference.php │ │ ├── OpportunityReference.php │ │ ├── OpportunityStatusReference.php │ │ ├── PatchOperation.php │ │ ├── PricingBreak.php │ │ ├── PricingDetail.php │ │ ├── PricingSchedule.php │ │ ├── ProcurementSetting.php │ │ ├── ProductCategoryReference.php │ │ ├── ProductComponent.php │ │ ├── ProductDemand.php │ │ ├── ProductDetach.php │ │ ├── ProductItem.php │ │ ├── ProductItemReference.php │ │ ├── ProductPickingShippingDetail.php │ │ ├── ProductRecurring.php │ │ ├── ProductSubCategoryReference.php │ │ ├── ProductType.php │ │ ├── ProductTypeReference.php │ │ ├── ProjectReference.php │ │ ├── PurchaseOrder.php │ │ ├── PurchaseOrderLineItem.php │ │ ├── PurchaseOrderStatus.php │ │ ├── PurchaseOrderStatusEmailTemplate.php │ │ ├── PurchaseOrderStatusEmailTemplateReference.php │ │ ├── PurchaseOrderStatusNotification.php │ │ ├── PurchaseOrderStatusReference.php │ │ ├── PurchasingDemand.php │ │ ├── ResultInfo.php │ │ ├── RmaAction.php │ │ ├── RmaDisposition.php │ │ ├── RmaStatus.php │ │ ├── RmaStatusEmailTemplate.php │ │ ├── RmaStatusEmailTemplateReference.php │ │ ├── RmaStatusNotification.php │ │ ├── RmaStatusReference.php │ │ ├── SLAReference.php │ │ ├── SalesOrderReference.php │ │ ├── ShipmentMethod.php │ │ ├── ShipmentMethodReference.php │ │ ├── SiteReference.php │ │ ├── SubCategory.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TaxCodeReference.php │ │ ├── TicketReference.php │ │ ├── UnitOfMeasure.php │ │ ├── UnitOfMeasureReference.php │ │ ├── Usage.php │ │ ├── ValidationError.php │ │ ├── Warehouse.php │ │ ├── WarehouseBin.php │ │ ├── WarehouseBinReference.php │ │ └── WarehouseReference.php │ ├── Project │ │ ├── ActivityReference.php │ │ ├── AgreementReference.php │ │ ├── BillingTermsReference.php │ │ ├── BoardReference.php │ │ ├── CompanyReference.php │ │ ├── ConfigurationReference.php │ │ ├── ContactReference.php │ │ ├── Convert.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── DocumentReference.php │ │ ├── Error.php │ │ ├── FilterValues.php │ │ ├── Guid.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── NoteTypeReference.php │ │ ├── OpportunityReference.php │ │ ├── PatchOperation.php │ │ ├── PhaseStatus.php │ │ ├── PhaseStatusReference.php │ │ ├── PriorityReference.php │ │ ├── ProductReference.php │ │ ├── Project.php │ │ ├── ProjectBoardReference.php │ │ ├── ProjectBoardTeam.php │ │ ├── ProjectBoardTeamMember.php │ │ ├── ProjectContact.php │ │ ├── ProjectNote.php │ │ ├── ProjectPhase.php │ │ ├── ProjectPhaseReference.php │ │ ├── ProjectReference.php │ │ ├── ProjectRoleReference.php │ │ ├── ProjectSecurityRole.php │ │ ├── ProjectSecurityRoleSetting.php │ │ ├── ProjectStatus.php │ │ ├── ProjectStatusReference.php │ │ ├── ProjectTeamMember.php │ │ ├── ProjectTicket.php │ │ ├── ProjectType.php │ │ ├── ProjectTypeReference.php │ │ ├── ScheduleEntryReference.php │ │ ├── ServiceCodeReference.php │ │ ├── ServiceItemReference.php │ │ ├── ServiceLocationReference.php │ │ ├── ServiceSourceReference.php │ │ ├── ServiceStatusReference.php │ │ ├── ServiceSubTypeReference.php │ │ ├── ServiceTypeReference.php │ │ ├── SiteReference.php │ │ ├── StatusIndicator.php │ │ ├── StatusIndicatorReference.php │ │ ├── SuccessResponse.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TaxCodeReference.php │ │ ├── TicketNote.php │ │ ├── TicketTask.php │ │ ├── TimeEntryReference.php │ │ ├── Usage.php │ │ ├── ValidationError.php │ │ └── WorkRoleReference.php │ ├── Sales │ │ ├── Activity.php │ │ ├── ActivityStatus.php │ │ ├── ActivityStatusReference.php │ │ ├── ActivityType.php │ │ ├── ActivityTypeReference.php │ │ ├── Agreement.php │ │ ├── AgreementReference.php │ │ ├── AgreementTypeReference.php │ │ ├── BillingCycleReference.php │ │ ├── BillingTermsReference.php │ │ ├── BoardReference.php │ │ ├── CampaignReference.php │ │ ├── Commission.php │ │ ├── CompanyReference.php │ │ ├── ContactReference.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── Error.php │ │ ├── Forecast.php │ │ ├── Guid.php │ │ ├── InvoiceTemplateReference.php │ │ ├── IvItemReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── NoteTypeReference.php │ │ ├── NotificationRecipientReference.php │ │ ├── Opportunity.php │ │ ├── OpportunityContact.php │ │ ├── OpportunityNote.php │ │ ├── OpportunityPriorityReference.php │ │ ├── OpportunityProbabilityReference.php │ │ ├── OpportunityRating.php │ │ ├── OpportunityRatingReference.php │ │ ├── OpportunityReference.php │ │ ├── OpportunitySalesRoleReference.php │ │ ├── OpportunityStage.php │ │ ├── OpportunityStageReference.php │ │ ├── OpportunityStatus.php │ │ ├── OpportunityStatusReference.php │ │ ├── OpportunityToAgreementConversion.php │ │ ├── OpportunityToProjectConversion.php │ │ ├── OpportunityToSalesOrderConversion.php │ │ ├── OpportunityToServiceTicketConversion.php │ │ ├── OpportunityType.php │ │ ├── OpportunityTypeReference.php │ │ ├── Order.php │ │ ├── OrderStatus.php │ │ ├── OrderStatusEmailTemplate.php │ │ ├── OrderStatusEmailTemplateReference.php │ │ ├── OrderStatusNotification.php │ │ ├── OrderStatusReference.php │ │ ├── PatchOperation.php │ │ ├── PriorityReference.php │ │ ├── ProductCategoryReference.php │ │ ├── ProductRecurring.php │ │ ├── ProductSubCategoryReference.php │ │ ├── Project.php │ │ ├── ProjectBoardReference.php │ │ ├── ProjectReference.php │ │ ├── ProjectStatusReference.php │ │ ├── ProjectTypeReference.php │ │ ├── ReminderReference.php │ │ ├── Role.php │ │ ├── SLAReference.php │ │ ├── SalesProbability.php │ │ ├── SalesQuota.php │ │ ├── SalesTeam.php │ │ ├── SalesTeamMember.php │ │ ├── SalesTeamReference.php │ │ ├── ScheduleStatusReference.php │ │ ├── ServiceItemReference.php │ │ ├── ServiceLocationReference.php │ │ ├── ServiceSourceReference.php │ │ ├── ServiceStatusReference.php │ │ ├── ServiceSubTypeReference.php │ │ ├── ServiceTeamReference.php │ │ ├── ServiceTypeReference.php │ │ ├── SiteReference.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TaxCodeReference.php │ │ ├── Team.php │ │ ├── Ticket.php │ │ ├── TicketReference.php │ │ ├── Usage.php │ │ ├── ValidationError.php │ │ ├── WorkRoleReference.php │ │ └── WorkTypeReference.php │ ├── Schedule │ │ ├── Calendar.php │ │ ├── ChargeCodeReference.php │ │ ├── Count.php │ │ ├── Error.php │ │ ├── Guid.php │ │ ├── Holiday.php │ │ ├── HolidayList.php │ │ ├── HolidayListReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── PatchOperation.php │ │ ├── PortalCalendar.php │ │ ├── ReminderReference.php │ │ ├── ScheduleColor.php │ │ ├── ScheduleDetail.php │ │ ├── ScheduleEntry.php │ │ ├── ScheduleEntryDetail.php │ │ ├── ScheduleEntryReference.php │ │ ├── ScheduleReminderTime.php │ │ ├── ScheduleSpanReference.php │ │ ├── ScheduleStatus.php │ │ ├── ScheduleStatusReference.php │ │ ├── ScheduleType.php │ │ ├── ScheduleTypeReference.php │ │ ├── ServiceLocationReference.php │ │ ├── Usage.php │ │ └── ValidationError.php │ ├── Service │ │ ├── ActivityReference.php │ │ ├── AgreementReference.php │ │ ├── Board.php │ │ ├── BoardAutoAssignResource.php │ │ ├── BoardAutoTemplate.php │ │ ├── BoardCopy.php │ │ ├── BoardExcludedMember.php │ │ ├── BoardInfo.php │ │ ├── BoardItem.php │ │ ├── BoardItemAssociation.php │ │ ├── BoardNotification.php │ │ ├── BoardReference.php │ │ ├── BoardStatus.php │ │ ├── BoardStatusNotification.php │ │ ├── BoardSubType.php │ │ ├── BoardTeam.php │ │ ├── BoardType.php │ │ ├── BoardTypeInfo.php │ │ ├── BoardTypeSubTypeItemAssociation.php │ │ ├── CalendarReference.php │ │ ├── Code.php │ │ ├── CompanyReference.php │ │ ├── ConfigurationReference.php │ │ ├── ContactReference.php │ │ ├── ConvertToProject.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── CurrencyReference.php │ │ ├── CustomFieldValue.php │ │ ├── DocumentReference.php │ │ ├── Error.php │ │ ├── ExternalIntegrationStatusReference.php │ │ ├── FilterValues.php │ │ ├── GenericIdIdentifierReference.php │ │ ├── Guid.php │ │ ├── Impact.php │ │ ├── IntegratorLoginReference.php │ │ ├── KBCategoryReference.php │ │ ├── KnowledgeBaseArticle.php │ │ ├── KnowledgeBaseCategory.php │ │ ├── KnowledgeBaseSettings.php │ │ ├── KnowledgeBaseSubCategory.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── NotificationRecipientReference.php │ │ ├── OpportunityReference.php │ │ ├── PatchOperation.php │ │ ├── Priority.php │ │ ├── PriorityReference.php │ │ ├── ProductReference.php │ │ ├── ProjectPhaseReference.php │ │ ├── ProjectReference.php │ │ ├── SLA.php │ │ ├── SLAPriority.php │ │ ├── SLAReference.php │ │ ├── ScheduleEntryReference.php │ │ ├── ServiceCodeReference.php │ │ ├── ServiceEmailTemplate.php │ │ ├── ServiceEmailTemplateReference.php │ │ ├── ServiceItemReference.php │ │ ├── ServiceLocation.php │ │ ├── ServiceLocationReference.php │ │ ├── ServiceNote.php │ │ ├── ServiceSignoff.php │ │ ├── ServiceSignoffReference.php │ │ ├── ServiceSourceReference.php │ │ ├── ServiceStatusReference.php │ │ ├── ServiceSubTypeReference.php │ │ ├── ServiceSurvey.php │ │ ├── ServiceSurveyQuestion.php │ │ ├── ServiceSurveyQuestionOption.php │ │ ├── ServiceSurveyReference.php │ │ ├── ServiceTeam.php │ │ ├── ServiceTeamReference.php │ │ ├── ServiceTemplate.php │ │ ├── ServiceTemplateReference.php │ │ ├── ServiceTicketLink.php │ │ ├── ServiceTypeReference.php │ │ ├── Severity.php │ │ ├── SiteReference.php │ │ ├── Source.php │ │ ├── StatusExternalIntegrationReference.php │ │ ├── StatusIndicatorReference.php │ │ ├── SuccessResponse.php │ │ ├── SurveyOption.php │ │ ├── SurveyResult.php │ │ ├── SurveyResultDetail.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── Task.php │ │ ├── TeamMember.php │ │ ├── TemplateGeneratedCountsModel.php │ │ ├── Ticket.php │ │ ├── TicketMerge.php │ │ ├── TicketReference.php │ │ ├── TicketSync.php │ │ ├── TimeEntryReference.php │ │ ├── Usage.php │ │ ├── ValidationError.php │ │ ├── WorkRoleReference.php │ │ └── WorkTypeReference.php │ ├── System │ │ ├── ActivityStatusReference.php │ │ ├── ActivityTypeReference.php │ │ ├── AddressFormatReference.php │ │ ├── ApiMember.php │ │ ├── ApiRequest.php │ │ ├── AuditTrailEntry.php │ │ ├── AuditTrailEntryInsertRequest.php │ │ ├── AuditTrailObjects.php │ │ ├── AuthAnvil.php │ │ ├── AutoSyncTime.php │ │ ├── AutomateScriptReference.php │ │ ├── BatchRequest.php │ │ ├── BatchResponse.php │ │ ├── BoardReference.php │ │ ├── BundleRequest.php │ │ ├── BundleRequestsCollection.php │ │ ├── BundleResult.php │ │ ├── BundleResultsCollection.php │ │ ├── CalendarReference.php │ │ ├── CalendarSetupReference.php │ │ ├── CallbackEntry.php │ │ ├── Certification.php │ │ ├── CertificationReference.php │ │ ├── CompanyReference.php │ │ ├── CompanyStatusReference.php │ │ ├── ConnectWiseHostedScreen.php │ │ ├── ConnectWiseHostedSetup.php │ │ ├── ContactReference.php │ │ ├── CorporateStructure.php │ │ ├── CorporateStructureLevel.php │ │ ├── CorporateStructureLevelReference.php │ │ ├── Count.php │ │ ├── CountryReference.php │ │ ├── Crm.php │ │ ├── CurrencyReference.php │ │ ├── CustomReport.php │ │ ├── CustomReportParameter.php │ │ ├── CustomReportReference.php │ │ ├── Department.php │ │ ├── DepartmentInfo.php │ │ ├── DepartmentLocation.php │ │ ├── DepartmentLocationInfo.php │ │ ├── DocumentInfo.php │ │ ├── DocumentReference.php │ │ ├── DocumentSetup.php │ │ ├── EPayConfiguration.php │ │ ├── EmailConnector.php │ │ ├── EmailConnectorParsingRule.php │ │ ├── EmailConnectorParsingStyle.php │ │ ├── EmailConnectorParsingStyleReference.php │ │ ├── EmailConnectorParsingTypeReference.php │ │ ├── EmailConnectorParsingVariableReference.php │ │ ├── EmailConnectorReference.php │ │ ├── EmailExclusion.php │ │ ├── EmailToken.php │ │ ├── EndpointRequest.php │ │ ├── EndpointResponse.php │ │ ├── Error.php │ │ ├── ErrorResponseMessage.php │ │ ├── FilterValues.php │ │ ├── GenericBoardTeamReference.php │ │ ├── GroupReference.php │ │ ├── IRestIdentifiedItem.php │ │ ├── Imap.php │ │ ├── ImapSetupReference.php │ │ ├── ImportMassMaintenance.php │ │ ├── InOutBoard.php │ │ ├── InOutType.php │ │ ├── InOutTypeReference.php │ │ ├── Info.php │ │ ├── IntegrationRequest.php │ │ ├── IntegratorLogin.php │ │ ├── IntegratorTag.php │ │ ├── JArray.php │ │ ├── JObject.php │ │ ├── KPI.php │ │ ├── KPICategory.php │ │ ├── KPICategoryReference.php │ │ ├── KPIReference.php │ │ ├── LdapConfiguration.php │ │ ├── LdapConfigurationReference.php │ │ ├── LdapConfigurationTestLink.php │ │ ├── LicenseBit.php │ │ ├── Link.php │ │ ├── LocaleInfo.php │ │ ├── LocaleReference.php │ │ ├── Location.php │ │ ├── LocationDepartment.php │ │ ├── LocationInfo.php │ │ ├── LocationWorkRole.php │ │ ├── ManagementNetworkSecurity.php │ │ ├── MarketplaceImport.php │ │ ├── Member.php │ │ ├── MemberAccrual.php │ │ ├── MemberCertification.php │ │ ├── MemberDeactivation.php │ │ ├── MemberDeactivationCompanyTeam.php │ │ ├── MemberDeactivationDepartmentMananager.php │ │ ├── MemberDeactivationDispatchMember.php │ │ ├── MemberDeactivationDutyManager.php │ │ ├── MemberDeactivationKnowledgebaseArticle.php │ │ ├── MemberDeactivationMyCompanyCOORole.php │ │ ├── MemberDeactivationMyCompanyControllerRole.php │ │ ├── MemberDeactivationMyCompanyDispatchRole.php │ │ ├── MemberDeactivationMyCompanyDutyManagerRole.php │ │ ├── MemberDeactivationMyCompanyPresidentRole.php │ │ ├── MemberDeactivationMyCompanyServiceManagerRole.php │ │ ├── MemberDeactivationOpportunity.php │ │ ├── MemberDeactivationProjectManager.php │ │ ├── MemberDeactivationSalesActivity.php │ │ ├── MemberDeactivationSalesTeam.php │ │ ├── MemberDeactivationServiceManger.php │ │ ├── MemberDeactivationServiceTeam.php │ │ ├── MemberDeactivationServiceTemplate.php │ │ ├── MemberDeactivationStatusWorkflow.php │ │ ├── MemberDeactivationWorkflow.php │ │ ├── MemberDelegation.php │ │ ├── MemberInfo.php │ │ ├── MemberNotification.php │ │ ├── MemberReference.php │ │ ├── MemberSkill.php │ │ ├── MemberSsoToken.php │ │ ├── MemberTypeReference.php │ │ ├── MenuEntry.php │ │ ├── MenuEntryLocation.php │ │ ├── MenuLocationReference.php │ │ ├── Metadata.php │ │ ├── NotificationRecipient.php │ │ ├── NotificationRecipientReference.php │ │ ├── NotifyTypeReference.php │ │ ├── OrderStatusReference.php │ │ ├── OsGradeWeight.php │ │ ├── Other.php │ │ ├── PageValues.php │ │ ├── ParsingType.php │ │ ├── ParsingVariable.php │ │ ├── PatchOperation.php │ │ ├── PortalConfigurationReference.php │ │ ├── PortalReport.php │ │ ├── PriorityReference.php │ │ ├── Product.php │ │ ├── ProjectBoardReference.php │ │ ├── ProjectStatusReference.php │ │ ├── QuoteLink.php │ │ ├── Report.php │ │ ├── ReportCard.php │ │ ├── ReportCardDetail.php │ │ ├── ReportCardReference.php │ │ ├── ReportDataResponse.php │ │ ├── ReportingService.php │ │ ├── SecurityRole.php │ │ ├── SecurityRoleReference.php │ │ ├── SecurityRoleSetting.php │ │ ├── Service.php │ │ ├── ServiceItemReference.php │ │ ├── ServiceLocationReference.php │ │ ├── ServiceSourceReference.php │ │ ├── ServiceStatusReference.php │ │ ├── ServiceSubTypeReference.php │ │ ├── ServiceSurveyReference.php │ │ ├── ServiceTemplateReference.php │ │ ├── ServiceTypeReference.php │ │ ├── SetupScreen.php │ │ ├── Skill.php │ │ ├── SkillCategory.php │ │ ├── SkillCategoryReference.php │ │ ├── SkillReference.php │ │ ├── SsoConfiguration.php │ │ ├── StandardNote.php │ │ ├── StandardNoteInfo.php │ │ ├── StructureReference.php │ │ ├── SuccessResponse.php │ │ ├── Survey.php │ │ ├── SurveyQuestion.php │ │ ├── SurveyQuestionReference.php │ │ ├── SurveyQuestionValue.php │ │ ├── SurveyReference.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── SystemMenuEntryReference.php │ │ ├── SystemSetting.php │ │ ├── TeamRoleReference.php │ │ ├── TimeExpense.php │ │ ├── TimeZone.php │ │ ├── TimeZoneReference.php │ │ ├── TimeZoneSetup.php │ │ ├── TimeZoneSetupReference.php │ │ ├── TodayPageCategory.php │ │ ├── Token.php │ │ ├── TrackReference.php │ │ ├── Type.php │ │ ├── Usage.php │ │ ├── UserDefinedField.php │ │ ├── UserDefinedFieldOption.php │ │ ├── UserDefinedFieldReference.php │ │ ├── ValidationError.php │ │ ├── WarehouseBinReference.php │ │ ├── WarehouseReference.php │ │ ├── WorkRoleReference.php │ │ ├── WorkTypeReference.php │ │ ├── Workflow.php │ │ ├── WorkflowAction.php │ │ ├── WorkflowActionAutomateParameter.php │ │ ├── WorkflowAttachment.php │ │ ├── WorkflowEvent.php │ │ ├── WorkflowNotifyType.php │ │ ├── WorkflowTableType.php │ │ ├── WorkflowTableTypeReference.php │ │ ├── WorkflowTrigger.php │ │ └── WorkflowTriggerOption.php │ ├── Time │ │ ├── ActivityStopwatch.php │ │ ├── AgreementReference.php │ │ ├── AuditSource.php │ │ ├── AuditType.php │ │ ├── ChargeCode.php │ │ ├── ChargeCodeExpenseType.php │ │ ├── ChargeCodeReference.php │ │ ├── CompanyReference.php │ │ ├── Count.php │ │ ├── CustomFieldValue.php │ │ ├── Error.php │ │ ├── ExpenseTypeReference.php │ │ ├── ExternalWorkTypeIntegrationReference.php │ │ ├── Guid.php │ │ ├── InvoiceReference.php │ │ ├── MemberReference.php │ │ ├── Metadata.php │ │ ├── PatchOperation.php │ │ ├── ScheduleStopwatch.php │ │ ├── ServiceStatusReference.php │ │ ├── SuccessResponse.php │ │ ├── SystemDepartmentReference.php │ │ ├── SystemLocationReference.php │ │ ├── TicketReference.php │ │ ├── TicketStopwatch.php │ │ ├── TimeAccrual.php │ │ ├── TimeAccrualDetail.php │ │ ├── TimeAccrualReference.php │ │ ├── TimeEntry.php │ │ ├── TimeEntryAudit.php │ │ ├── TimePeriod.php │ │ ├── TimePeriodSetup.php │ │ ├── TimePeriodSetupDefaults.php │ │ ├── TimePeriodSetupReference.php │ │ ├── TimeSheet.php │ │ ├── TimeSheetAudit.php │ │ ├── TimeSheetReference.php │ │ ├── Usage.php │ │ ├── ValidationError.php │ │ ├── WorkRole.php │ │ ├── WorkRoleLocation.php │ │ ├── WorkRoleReference.php │ │ ├── WorkType.php │ │ ├── WorkTypeExternalIntegrationReference.php │ │ └── WorkTypeReference.php │ └── map.json └── v2019_5 │ ├── Company │ ├── ActivityStatusReference.php │ ├── ActivityTypeReference.php │ ├── AddressFormat.php │ ├── AddressFormatReference.php │ ├── AgreementReference.php │ ├── AgreementTypeReference.php │ ├── BillingDeliveryReference.php │ ├── BillingTermsReference.php │ ├── CalendarReference.php │ ├── CatalogItemReference.php │ ├── ClearPickerRequest.php │ ├── CommunicationTypeReference.php │ ├── Company.php │ ├── CompanyCustomNote.php │ ├── CompanyGroup.php │ ├── CompanyManagementSummary.php │ ├── CompanyMerge.php │ ├── CompanyNote.php │ ├── CompanyNoteType.php │ ├── CompanyPickerItem.php │ ├── CompanyReference.php │ ├── CompanySite.php │ ├── CompanyStatus.php │ ├── CompanyStatusReference.php │ ├── CompanyTeam.php │ ├── CompanyType.php │ ├── CompanyTypeAssociation.php │ ├── CompanyTypeInfo.php │ ├── CompanyTypeReference.php │ ├── Configuration.php │ ├── ConfigurationQuestion.php │ ├── ConfigurationStatus.php │ ├── ConfigurationStatusReference.php │ ├── ConfigurationType.php │ ├── ConfigurationTypeQuestion.php │ ├── ConfigurationTypeQuestionReference.php │ ├── ConfigurationTypeQuestionValue.php │ ├── ConfigurationTypeReference.php │ ├── Contact.php │ ├── ContactCommunication.php │ ├── ContactCommunicationItem.php │ ├── ContactDepartment.php │ ├── ContactDepartmentReference.php │ ├── ContactGroup.php │ ├── ContactNote.php │ ├── ContactReference.php │ ├── ContactRelationship.php │ ├── ContactTrack.php │ ├── ContactType.php │ ├── ContactTypeAssociation.php │ ├── ContactTypeReference.php │ ├── Count.php │ ├── Country.php │ ├── CountryReference.php │ ├── CurrencyReference.php │ ├── CustomFieldValue.php │ ├── EntityType.php │ ├── EntityTypeReference.php │ ├── Error.php │ ├── GroupReference.php │ ├── Guid.php │ ├── IntegratorLoginReference.php │ ├── InvoiceTemplateReference.php │ ├── IvItemReference.php │ ├── KaseyaKey.php │ ├── ManagedDevicesIntegration.php │ ├── ManagedDevicesIntegrationCrossReference.php │ ├── ManagedDevicesIntegrationLogin.php │ ├── ManagedDevicesIntegrationNotification.php │ ├── ManagedDevicesIntegrationReference.php │ ├── Management.php │ ├── ManagementBackup.php │ ├── ManagementItSolution.php │ ├── ManagementItSolutionAgreementInterfaceParameter.php │ ├── ManagementLogDocumentInfo.php │ ├── ManagementReportNotification.php │ ├── ManagementSolutionReference.php │ ├── ManufacturerReference.php │ ├── MarketDescription.php │ ├── MarketDescriptionReference.php │ ├── MemberReference.php │ ├── Metadata.php │ ├── NoteTypeReference.php │ ├── NotificationRecipientReference.php │ ├── OpportunityStatusReference.php │ ├── OwnershipType.php │ ├── OwnershipTypeReference.php │ ├── PatchOperation.php │ ├── PortalConfiguration.php │ ├── PortalConfigurationInvoiceSetup.php │ ├── PortalConfigurationOpportunitySetup.php │ ├── PortalConfigurationPasswordEmailSetup.php │ ├── PortalConfigurationPaymentProcessor.php │ ├── PortalConfigurationPaymentProcessorReference.php │ ├── PortalConfigurationProjectSetup.php │ ├── PortalConfigurationReference.php │ ├── PortalConfigurationServiceSetup.php │ ├── PortalSecurity.php │ ├── PortalSecurityLevel.php │ ├── PortalSecuritySetting.php │ ├── PricingScheduleReference.php │ ├── RelationshipReference.php │ ├── RequestPasswordRequest.php │ ├── SLAReference.php │ ├── ServiceSignoffReference.php │ ├── ServiceTemplateReference.php │ ├── SicCodeReference.php │ ├── SiteReference.php │ ├── State.php │ ├── StateReference.php │ ├── SuccessResponse.php │ ├── SystemDepartmentReference.php │ ├── SystemLocationReference.php │ ├── TaxCodeReference.php │ ├── TeamRole.php │ ├── TeamRoleReference.php │ ├── TimeZoneSetupReference.php │ ├── Track.php │ ├── TrackAction.php │ ├── TrackReference.php │ ├── Usage.php │ ├── ValidatePortalRequest.php │ ├── ValidatePortalResponse.php │ └── ValidationError.php │ ├── Expense │ ├── AgreementReference.php │ ├── AuditSource.php │ ├── AuditType.php │ ├── Classification.php │ ├── ClassificationReference.php │ ├── CompanyReference.php │ ├── Count.php │ ├── CurrencyReference.php │ ├── CustomFieldValue.php │ ├── Error.php │ ├── ExpenseEntry.php │ ├── ExpenseEntryAudit.php │ ├── ExpenseReport.php │ ├── ExpenseReportAudit.php │ ├── ExpenseReportReference.php │ ├── ExpenseTax.php │ ├── ExpenseTaxTypeInfo.php │ ├── ExpenseTaxTypeReference.php │ ├── ExpenseType.php │ ├── ExpenseTypeExternalIntegrationReference.php │ ├── ExpenseTypeReference.php │ ├── ExternalExpenseTypeIntegrationReference.php │ ├── Guid.php │ ├── InvoiceReference.php │ ├── MemberReference.php │ ├── Metadata.php │ ├── PatchOperation.php │ ├── PaymentMethodReference.php │ ├── PaymentType.php │ ├── SuccessResponse.php │ └── ValidationError.php │ ├── Finance │ ├── AccountingBatch.php │ ├── AccountingPackage.php │ ├── AccountingPackageReference.php │ ├── AccountingPackageSetup.php │ ├── Addition.php │ ├── Adjustment.php │ ├── AdjustmentDetailReference.php │ ├── Agreement.php │ ├── AgreementBatchSetup.php │ ├── AgreementReference.php │ ├── AgreementSite.php │ ├── AgreementType.php │ ├── AgreementTypeBoardDefault.php │ ├── AgreementTypeReference.php │ ├── AgreementTypeWorkRole.php │ ├── AgreementTypeWorkRoleExclusion.php │ ├── AgreementTypeWorkType.php │ ├── AgreementTypeWorkTypeExclusion.php │ ├── AgreementWorkRole.php │ ├── AgreementWorkRoleExclusion.php │ ├── AgreementWorkType.php │ ├── AgreementWorkTypeExclusion.php │ ├── BatchEntry.php │ ├── BillingCycle.php │ ├── BillingCycleReference.php │ ├── BillingSetup.php │ ├── BillingSetupRouting.php │ ├── BillingStatus.php │ ├── BillingStatusReference.php │ ├── BillingTerm.php │ ├── BillingTermsReference.php │ ├── BoardDefault.php │ ├── BoardReference.php │ ├── ChargeCodeReference.php │ ├── ClassificationReference.php │ ├── ClosedInvoice.php │ ├── CompanyReference.php │ ├── CompanyTypeReference.php │ ├── ConfigurationReference.php │ ├── ContactReference.php │ ├── Count.php │ ├── CountryReference.php │ ├── CreateAccountingBatchRequest.php │ ├── Currency.php │ ├── CurrencyCode.php │ ├── CurrencyCodeReference.php │ ├── CurrencyReference.php │ ├── CustomFieldValue.php │ ├── DeliveryMethod.php │ ├── EmailTemplateReference.php │ ├── Error.php │ ├── ExpenseDetailReference.php │ ├── ExpenseTypeExemption.php │ ├── ExpenseTypeReference.php │ ├── ExportAccountingBatchRequest.php │ ├── GLAccount.php │ ├── GLCaption.php │ ├── GLExport.php │ ├── GLExportAdjustmentTransaction.php │ ├── GLExportAdjustmentTransactionDetail.php │ ├── GLExportCustomer.php │ ├── GLExportCustomerTaxLevel.php │ ├── GLExportExpense.php │ ├── GLExportExpenseBill.php │ ├── GLExportExpenseBillDetail.php │ ├── GLExportExpenseOffset.php │ ├── GLExportInventoryTransfer.php │ ├── GLExportInventoryTransferOffset.php │ ├── GLExportPurchaseTransaction.php │ ├── GLExportPurchaseTransactionDetail.php │ ├── GLExportPurchaseTransactionDetailTax.php │ ├── GLExportPurchaseTransactionTaxLevel.php │ ├── GLExportSettings.php │ ├── GLExportTransaction.php │ ├── GLExportTransactionDetail.php │ ├── GLExportTransactionDetailTaxLevel.php │ ├── GLExportTransactionTaxLevel.php │ ├── GLExportVendor.php │ ├── GLPath.php │ ├── Invoice.php │ ├── InvoiceEmailTemplate.php │ ├── InvoiceReference.php │ ├── InvoiceTemplate.php │ ├── InvoiceTemplateReference.php │ ├── InvoiceTemplateSetup.php │ ├── IvItemReference.php │ ├── MappedRecordReference.php │ ├── MappedType.php │ ├── MappedTypeReference.php │ ├── MemberReference.php │ ├── Metadata.php │ ├── OpportunityReference.php │ ├── PatchOperation.php │ ├── Payment.php │ ├── PaymentMethodReference.php │ ├── ProductReference.php │ ├── ProductSubCategoryReference.php │ ├── ProductTypeExemption.php │ ├── ProductTypeReference.php │ ├── ProjectPhaseReference.php │ ├── ProjectReference.php │ ├── ProjectTypeReference.php │ ├── PurchaseOrderLineItemReference.php │ ├── PurchaseOrderReference.php │ ├── SLAReference.php │ ├── ServiceSurveyReference.php │ ├── ServiceTypeReference.php │ ├── ShipmentMethodReference.php │ ├── SiteReference.php │ ├── StateReference.php │ ├── SystemDepartmentReference.php │ ├── SystemLocationReference.php │ ├── TaxCode.php │ ├── TaxCodeLevel.php │ ├── TaxCodeLevelReference.php │ ├── TaxCodeReference.php │ ├── TaxCodeXRef.php │ ├── TaxIntegration.php │ ├── TaxIntegrationInfo.php │ ├── TaxableExpenseTypeLevel.php │ ├── TaxableProductTypeLevel.php │ ├── TaxableWorkRoleLevel.php │ ├── TaxableXRefLevel.php │ ├── TicketReference.php │ ├── TimeEntryReference.php │ ├── UnitOfMeasureReference.php │ ├── UnpostedExpense.php │ ├── UnpostedExpenseTaxableLevel.php │ ├── UnpostedInvoice.php │ ├── UnpostedInvoiceTaxableLevel.php │ ├── UnpostedProcurement.php │ ├── UnpostedProcurementTaxableLevel.php │ ├── Usage.php │ ├── ValidationError.php │ ├── WarehouseBinReference.php │ ├── WarehouseReference.php │ ├── WorkRoleExemption.php │ ├── WorkRoleReference.php │ └── WorkTypeReference.php │ ├── Internal │ ├── AgreementReference.php │ ├── BoardReference.php │ ├── CWStartDetail.php │ ├── CalculateInvoiceTax.php │ ├── CalendarReference.php │ ├── CentralServiceEula.php │ ├── ChargeToReference.php │ ├── ClassificationReference.php │ ├── CloudBusMessage.php │ ├── CompanyReference.php │ ├── Count.php │ ├── CountryReference.php │ ├── CurrencyReference.php │ ├── CustomFieldValue.php │ ├── DocumentReference.php │ ├── Error.php │ ├── Eula.php │ ├── ExpenseEntryInternal.php │ ├── ExpenseReportReference.php │ ├── ExpenseTax.php │ ├── ExpenseTaxTypeReference.php │ ├── ExpenseTypeReference.php │ ├── Guid.php │ ├── IWidgetListObject.php │ ├── InvoiceReference.php │ ├── JObject.php │ ├── Lab.php │ ├── LdapConfigurationReference.php │ ├── MemberNotificationSetting.php │ ├── MemberProperty.php │ ├── MemberReference.php │ ├── MemberTypeReference.php │ ├── Metadata.php │ ├── MyMember.php │ ├── MySecurity.php │ ├── PatchOperation.php │ ├── PaymentMethodReference.php │ ├── ProcRunnerInvocationRequest.php │ ├── ProjectBoardReference.php │ ├── ReportCardReference.php │ ├── SecurityRoleReference.php │ ├── ServiceLocationReference.php │ ├── ServiceStatusReference.php │ ├── Session.php │ ├── StructureReference.php │ ├── SystemDepartmentReference.php │ ├── SystemLocationReference.php │ ├── TicketPipeline.php │ ├── TicketReference.php │ ├── TicketsPipeline.php │ ├── TimeEntryInternal.php │ ├── TimeSheetReference.php │ ├── TimeZoneSetupReference.php │ ├── UploadToMarketplaceRequest.php │ ├── ValidationError.php │ ├── WarehouseBinReference.php │ ├── WarehouseReference.php │ ├── WidgetViewResponse.php │ ├── WorkRoleReference.php │ └── WorkTypeReference.php │ ├── Marketing │ ├── ActivityReference.php │ ├── Campaign.php │ ├── CampaignAudit.php │ ├── CampaignStatus.php │ ├── CampaignStatusReference.php │ ├── CampaignSubType.php │ ├── CampaignSubTypeReference.php │ ├── CampaignType.php │ ├── CampaignTypeReference.php │ ├── Count.php │ ├── EmailOpened.php │ ├── Error.php │ ├── FormSubmitted.php │ ├── Group.php │ ├── GroupReference.php │ ├── LinkClicked.php │ ├── MarketingCompany.php │ ├── MarketingContact.php │ ├── MemberReference.php │ ├── Metadata.php │ ├── OpportunityReference.php │ ├── PatchOperation.php │ ├── Usage.php │ └── ValidationError.php │ ├── Procurement │ ├── Adjustment.php │ ├── AdjustmentDetail.php │ ├── AdjustmentReference.php │ ├── AdjustmentType.php │ ├── AdjustmentTypeReference.php │ ├── AgreementReference.php │ ├── BillingCycleReference.php │ ├── BillingTermsReference.php │ ├── BulkResult.php │ ├── CatalogComponent.php │ ├── CatalogInventory.php │ ├── CatalogItem.php │ ├── CatalogItemReference.php │ ├── CatalogPricing.php │ ├── Category.php │ ├── CompanyReference.php │ ├── ContactReference.php │ ├── Conversion.php │ ├── Count.php │ ├── CountryReference.php │ ├── CurrencyReference.php │ ├── CustomFieldValue.php │ ├── EntityTypeReference.php │ ├── Error.php │ ├── ErrorResponseMessage.php │ ├── IRestIdentifiedItem.php │ ├── IdCollection.php │ ├── InventoryOnHand.php │ ├── InvoiceReference.php │ ├── IvItemReference.php │ ├── LegacySubCategory.php │ ├── Manufacturer.php │ ├── ManufacturerReference.php │ ├── MemberReference.php │ ├── Metadata.php │ ├── MinimumStockByWarehouse.php │ ├── NotificationRecipientReference.php │ ├── OnHandSerialNumber.php │ ├── OnHandSerialNumberReference.php │ ├── OpportunityReference.php │ ├── OpportunityStatusReference.php │ ├── PatchOperation.php │ ├── PricingBreak.php │ ├── PricingDetail.php │ ├── PricingSchedule.php │ ├── ProcurementSetting.php │ ├── ProductCategoryReference.php │ ├── ProductComponent.php │ ├── ProductDemand.php │ ├── ProductDetach.php │ ├── ProductItem.php │ ├── ProductItemReference.php │ ├── ProductPickingShippingDetail.php │ ├── ProductRecurring.php │ ├── ProductSubCategoryReference.php │ ├── ProductType.php │ ├── ProductTypeReference.php │ ├── ProjectReference.php │ ├── PurchaseOrder.php │ ├── PurchaseOrderLineItem.php │ ├── PurchaseOrderStatus.php │ ├── PurchaseOrderStatusEmailTemplate.php │ ├── PurchaseOrderStatusEmailTemplateReference.php │ ├── PurchaseOrderStatusNotification.php │ ├── PurchaseOrderStatusReference.php │ ├── PurchasingDemand.php │ ├── ResultInfo.php │ ├── RmaAction.php │ ├── RmaDisposition.php │ ├── RmaStatus.php │ ├── RmaStatusEmailTemplate.php │ ├── RmaStatusEmailTemplateReference.php │ ├── RmaStatusNotification.php │ ├── RmaStatusReference.php │ ├── SLAReference.php │ ├── SalesOrderReference.php │ ├── ShipmentMethod.php │ ├── ShipmentMethodReference.php │ ├── SiteReference.php │ ├── SubCategory.php │ ├── SystemDepartmentReference.php │ ├── SystemLocationReference.php │ ├── TaxCodeReference.php │ ├── TicketReference.php │ ├── UnitOfMeasure.php │ ├── UnitOfMeasureReference.php │ ├── Usage.php │ ├── ValidationError.php │ ├── Warehouse.php │ ├── WarehouseBin.php │ ├── WarehouseBinReference.php │ └── WarehouseReference.php │ ├── Project │ ├── ActivityReference.php │ ├── AgreementReference.php │ ├── BillingTermsReference.php │ ├── BoardReference.php │ ├── CompanyReference.php │ ├── ConfigurationReference.php │ ├── ContactReference.php │ ├── Convert.php │ ├── Count.php │ ├── CountryReference.php │ ├── CurrencyReference.php │ ├── CustomFieldValue.php │ ├── DocumentReference.php │ ├── Error.php │ ├── FilterValues.php │ ├── Guid.php │ ├── MemberReference.php │ ├── Metadata.php │ ├── NoteTypeReference.php │ ├── OpportunityReference.php │ ├── PatchOperation.php │ ├── PhaseStatus.php │ ├── PhaseStatusReference.php │ ├── PriorityReference.php │ ├── ProductReference.php │ ├── Project.php │ ├── ProjectBoardReference.php │ ├── ProjectBoardTeam.php │ ├── ProjectBoardTeamMember.php │ ├── ProjectContact.php │ ├── ProjectNote.php │ ├── ProjectPhase.php │ ├── ProjectPhaseReference.php │ ├── ProjectReference.php │ ├── ProjectRoleReference.php │ ├── ProjectSecurityRole.php │ ├── ProjectSecurityRoleSetting.php │ ├── ProjectStatus.php │ ├── ProjectStatusReference.php │ ├── ProjectTeamMember.php │ ├── ProjectTicket.php │ ├── ProjectType.php │ ├── ProjectTypeReference.php │ ├── ScheduleEntryReference.php │ ├── ServiceCodeReference.php │ ├── ServiceItemReference.php │ ├── ServiceLocationReference.php │ ├── ServiceSourceReference.php │ ├── ServiceStatusReference.php │ ├── ServiceSubTypeReference.php │ ├── ServiceTypeReference.php │ ├── SiteReference.php │ ├── StatusIndicator.php │ ├── StatusIndicatorReference.php │ ├── SuccessResponse.php │ ├── SystemDepartmentReference.php │ ├── SystemLocationReference.php │ ├── TaxCodeReference.php │ ├── TicketNote.php │ ├── TicketTask.php │ ├── TimeEntryReference.php │ ├── Usage.php │ ├── ValidationError.php │ └── WorkRoleReference.php │ ├── Sales │ ├── Activity.php │ ├── ActivityStatus.php │ ├── ActivityStatusReference.php │ ├── ActivityType.php │ ├── ActivityTypeReference.php │ ├── Agreement.php │ ├── AgreementReference.php │ ├── AgreementTypeReference.php │ ├── BillingCycleReference.php │ ├── BillingTermsReference.php │ ├── BoardReference.php │ ├── CampaignReference.php │ ├── Commission.php │ ├── CompanyReference.php │ ├── ContactReference.php │ ├── Count.php │ ├── CountryReference.php │ ├── CurrencyReference.php │ ├── CustomFieldValue.php │ ├── Error.php │ ├── Forecast.php │ ├── Guid.php │ ├── InvoiceTemplateReference.php │ ├── IvItemReference.php │ ├── MemberReference.php │ ├── Metadata.php │ ├── NoteTypeReference.php │ ├── NotificationRecipientReference.php │ ├── Opportunity.php │ ├── OpportunityContact.php │ ├── OpportunityNote.php │ ├── OpportunityPriorityReference.php │ ├── OpportunityProbabilityReference.php │ ├── OpportunityRating.php │ ├── OpportunityRatingReference.php │ ├── OpportunityReference.php │ ├── OpportunitySalesRoleReference.php │ ├── OpportunityStage.php │ ├── OpportunityStageReference.php │ ├── OpportunityStatus.php │ ├── OpportunityStatusReference.php │ ├── OpportunityToAgreementConversion.php │ ├── OpportunityToProjectConversion.php │ ├── OpportunityToSalesOrderConversion.php │ ├── OpportunityToServiceTicketConversion.php │ ├── OpportunityType.php │ ├── OpportunityTypeReference.php │ ├── Order.php │ ├── OrderStatus.php │ ├── OrderStatusEmailTemplate.php │ ├── OrderStatusEmailTemplateReference.php │ ├── OrderStatusNotification.php │ ├── OrderStatusReference.php │ ├── PatchOperation.php │ ├── PriorityReference.php │ ├── ProductCategoryReference.php │ ├── ProductRecurring.php │ ├── ProductSubCategoryReference.php │ ├── Project.php │ ├── ProjectBoardReference.php │ ├── ProjectReference.php │ ├── ProjectStatusReference.php │ ├── ProjectTypeReference.php │ ├── ReminderReference.php │ ├── Role.php │ ├── SLAReference.php │ ├── SalesProbability.php │ ├── SalesQuota.php │ ├── SalesTeam.php │ ├── SalesTeamMember.php │ ├── SalesTeamReference.php │ ├── ScheduleStatusReference.php │ ├── ServiceItemReference.php │ ├── ServiceLocationReference.php │ ├── ServiceSourceReference.php │ ├── ServiceStatusReference.php │ ├── ServiceSubTypeReference.php │ ├── ServiceTeamReference.php │ ├── ServiceTypeReference.php │ ├── SiteReference.php │ ├── SystemDepartmentReference.php │ ├── SystemLocationReference.php │ ├── TaxCodeReference.php │ ├── Team.php │ ├── Ticket.php │ ├── TicketReference.php │ ├── Usage.php │ ├── ValidationError.php │ ├── WorkRoleReference.php │ └── WorkTypeReference.php │ ├── Schedule │ ├── Calendar.php │ ├── ChargeCodeReference.php │ ├── Count.php │ ├── Error.php │ ├── Guid.php │ ├── Holiday.php │ ├── HolidayList.php │ ├── HolidayListReference.php │ ├── MemberReference.php │ ├── Metadata.php │ ├── PatchOperation.php │ ├── PortalCalendar.php │ ├── ReminderReference.php │ ├── ScheduleColor.php │ ├── ScheduleDetail.php │ ├── ScheduleEntry.php │ ├── ScheduleEntryDetail.php │ ├── ScheduleEntryReference.php │ ├── ScheduleReminderTime.php │ ├── ScheduleSpanReference.php │ ├── ScheduleStatus.php │ ├── ScheduleStatusReference.php │ ├── ScheduleType.php │ ├── ScheduleTypeReference.php │ ├── ServiceLocationReference.php │ ├── Usage.php │ └── ValidationError.php │ ├── Service │ ├── ActivityReference.php │ ├── AgreementReference.php │ ├── Board.php │ ├── BoardAutoAssignResource.php │ ├── BoardAutoTemplate.php │ ├── BoardCopy.php │ ├── BoardExcludedMember.php │ ├── BoardInfo.php │ ├── BoardItem.php │ ├── BoardItemAssociation.php │ ├── BoardNotification.php │ ├── BoardReference.php │ ├── BoardStatus.php │ ├── BoardStatusNotification.php │ ├── BoardSubType.php │ ├── BoardTeam.php │ ├── BoardType.php │ ├── BoardTypeInfo.php │ ├── BoardTypeSubTypeItemAssociation.php │ ├── CalendarReference.php │ ├── Code.php │ ├── CompanyReference.php │ ├── ConfigurationReference.php │ ├── ContactReference.php │ ├── ConvertToProject.php │ ├── Count.php │ ├── CountryReference.php │ ├── CurrencyReference.php │ ├── CustomFieldValue.php │ ├── DocumentReference.php │ ├── Error.php │ ├── ExternalIntegrationStatusReference.php │ ├── FilterValues.php │ ├── GenericIdIdentifierReference.php │ ├── Guid.php │ ├── Impact.php │ ├── IntegratorLoginReference.php │ ├── KBCategoryReference.php │ ├── KnowledgeBaseArticle.php │ ├── KnowledgeBaseCategory.php │ ├── KnowledgeBaseSettings.php │ ├── KnowledgeBaseSubCategory.php │ ├── MemberReference.php │ ├── Metadata.php │ ├── NotificationRecipientReference.php │ ├── OpportunityReference.php │ ├── PatchOperation.php │ ├── Priority.php │ ├── PriorityReference.php │ ├── ProductReference.php │ ├── ProjectPhaseReference.php │ ├── ProjectReference.php │ ├── SLA.php │ ├── SLAPriority.php │ ├── SLAReference.php │ ├── ScheduleEntryReference.php │ ├── ServiceCodeReference.php │ ├── ServiceEmailTemplate.php │ ├── ServiceEmailTemplateReference.php │ ├── ServiceItemReference.php │ ├── ServiceLocation.php │ ├── ServiceLocationReference.php │ ├── ServiceNote.php │ ├── ServiceSignoff.php │ ├── ServiceSignoffReference.php │ ├── ServiceSourceReference.php │ ├── ServiceStatusReference.php │ ├── ServiceSubTypeReference.php │ ├── ServiceSurvey.php │ ├── ServiceSurveyQuestion.php │ ├── ServiceSurveyQuestionOption.php │ ├── ServiceSurveyReference.php │ ├── ServiceTeam.php │ ├── ServiceTeamReference.php │ ├── ServiceTemplate.php │ ├── ServiceTemplateReference.php │ ├── ServiceTicketLink.php │ ├── ServiceTypeReference.php │ ├── Severity.php │ ├── SiteReference.php │ ├── Source.php │ ├── StatusExternalIntegrationReference.php │ ├── StatusIndicatorReference.php │ ├── SuccessResponse.php │ ├── SurveyOption.php │ ├── SurveyResult.php │ ├── SurveyResultDetail.php │ ├── SystemDepartmentReference.php │ ├── SystemLocationReference.php │ ├── Task.php │ ├── TeamMember.php │ ├── TemplateGeneratedCountsModel.php │ ├── Ticket.php │ ├── TicketMerge.php │ ├── TicketReference.php │ ├── TicketSync.php │ ├── TimeEntryReference.php │ ├── Usage.php │ ├── ValidationError.php │ ├── WorkRoleReference.php │ └── WorkTypeReference.php │ ├── System │ ├── ActivityStatusReference.php │ ├── ActivityTypeReference.php │ ├── AddressFormatReference.php │ ├── ApiMember.php │ ├── ApiRequest.php │ ├── AuditTrailEntry.php │ ├── AuditTrailEntryInsertRequest.php │ ├── AuditTrailObjects.php │ ├── AuthAnvil.php │ ├── AutoSyncTime.php │ ├── AutomateScriptReference.php │ ├── BatchRequest.php │ ├── BatchResponse.php │ ├── BoardReference.php │ ├── BundleRequest.php │ ├── BundleRequestsCollection.php │ ├── BundleResult.php │ ├── BundleResultsCollection.php │ ├── CalendarReference.php │ ├── CalendarSetupReference.php │ ├── CallbackEntry.php │ ├── Certification.php │ ├── CertificationReference.php │ ├── CompanyReference.php │ ├── CompanyStatusReference.php │ ├── ConnectWiseHostedScreen.php │ ├── ConnectWiseHostedSetup.php │ ├── ContactReference.php │ ├── CorporateStructure.php │ ├── CorporateStructureLevel.php │ ├── CorporateStructureLevelReference.php │ ├── Count.php │ ├── CountryReference.php │ ├── Crm.php │ ├── CurrencyReference.php │ ├── CustomReport.php │ ├── CustomReportParameter.php │ ├── CustomReportReference.php │ ├── Department.php │ ├── DepartmentInfo.php │ ├── DepartmentLocation.php │ ├── DepartmentLocationInfo.php │ ├── DocumentInfo.php │ ├── DocumentReference.php │ ├── DocumentSetup.php │ ├── EPayConfiguration.php │ ├── EmailConnector.php │ ├── EmailConnectorParsingRule.php │ ├── EmailConnectorParsingStyle.php │ ├── EmailConnectorParsingStyleReference.php │ ├── EmailConnectorParsingTypeReference.php │ ├── EmailConnectorParsingVariableReference.php │ ├── EmailConnectorReference.php │ ├── EmailExclusion.php │ ├── EmailToken.php │ ├── EndpointRequest.php │ ├── EndpointResponse.php │ ├── Error.php │ ├── ErrorResponseMessage.php │ ├── FilterValues.php │ ├── GenericBoardTeamReference.php │ ├── GroupReference.php │ ├── IRestIdentifiedItem.php │ ├── Imap.php │ ├── ImapSetupReference.php │ ├── ImportMassMaintenance.php │ ├── InOutBoard.php │ ├── InOutType.php │ ├── InOutTypeReference.php │ ├── Info.php │ ├── IntegrationRequest.php │ ├── IntegratorLogin.php │ ├── IntegratorTag.php │ ├── JArray.php │ ├── JObject.php │ ├── KPI.php │ ├── KPICategory.php │ ├── KPICategoryReference.php │ ├── KPIReference.php │ ├── LdapConfiguration.php │ ├── LdapConfigurationReference.php │ ├── LdapConfigurationTestLink.php │ ├── LicenseBit.php │ ├── Link.php │ ├── LocaleInfo.php │ ├── LocaleReference.php │ ├── Location.php │ ├── LocationDepartment.php │ ├── LocationInfo.php │ ├── LocationWorkRole.php │ ├── ManagementNetworkSecurity.php │ ├── MarketplaceImport.php │ ├── Member.php │ ├── MemberAccrual.php │ ├── MemberCertification.php │ ├── MemberDeactivation.php │ ├── MemberDeactivationCompanyTeam.php │ ├── MemberDeactivationDepartmentMananager.php │ ├── MemberDeactivationDispatchMember.php │ ├── MemberDeactivationDutyManager.php │ ├── MemberDeactivationKnowledgebaseArticle.php │ ├── MemberDeactivationMyCompanyCOORole.php │ ├── MemberDeactivationMyCompanyControllerRole.php │ ├── MemberDeactivationMyCompanyDispatchRole.php │ ├── MemberDeactivationMyCompanyDutyManagerRole.php │ ├── MemberDeactivationMyCompanyPresidentRole.php │ ├── MemberDeactivationMyCompanyServiceManagerRole.php │ ├── MemberDeactivationOpportunity.php │ ├── MemberDeactivationProjectManager.php │ ├── MemberDeactivationSalesActivity.php │ ├── MemberDeactivationSalesTeam.php │ ├── MemberDeactivationServiceManger.php │ ├── MemberDeactivationServiceTeam.php │ ├── MemberDeactivationServiceTemplate.php │ ├── MemberDeactivationStatusWorkflow.php │ ├── MemberDeactivationWorkflow.php │ ├── MemberDelegation.php │ ├── MemberInfo.php │ ├── MemberNotification.php │ ├── MemberPersona.php │ ├── MemberReference.php │ ├── MemberSkill.php │ ├── MemberSsoToken.php │ ├── MemberTypeReference.php │ ├── MenuEntry.php │ ├── MenuEntryLocation.php │ ├── MenuLocationReference.php │ ├── Metadata.php │ ├── NotificationRecipient.php │ ├── NotificationRecipientReference.php │ ├── NotifyTypeReference.php │ ├── OrderStatusReference.php │ ├── OsGradeWeight.php │ ├── Other.php │ ├── PageValues.php │ ├── ParsingType.php │ ├── ParsingVariable.php │ ├── PatchOperation.php │ ├── PersonasInfo.php │ ├── PortalConfigurationReference.php │ ├── PortalReport.php │ ├── PriorityReference.php │ ├── Product.php │ ├── ProjectBoardReference.php │ ├── ProjectStatusReference.php │ ├── QuoteLink.php │ ├── Report.php │ ├── ReportCard.php │ ├── ReportCardDetail.php │ ├── ReportCardReference.php │ ├── ReportDataResponse.php │ ├── ReportingService.php │ ├── SecurityRole.php │ ├── SecurityRoleReference.php │ ├── SecurityRoleSetting.php │ ├── Service.php │ ├── ServiceItemReference.php │ ├── ServiceLocationReference.php │ ├── ServiceSourceReference.php │ ├── ServiceStatusReference.php │ ├── ServiceSubTypeReference.php │ ├── ServiceSurveyReference.php │ ├── ServiceTemplateReference.php │ ├── ServiceTypeReference.php │ ├── SetupScreen.php │ ├── Skill.php │ ├── SkillCategory.php │ ├── SkillCategoryReference.php │ ├── SkillReference.php │ ├── SsoConfiguration.php │ ├── StandardNote.php │ ├── StandardNoteInfo.php │ ├── StructureReference.php │ ├── SuccessResponse.php │ ├── Survey.php │ ├── SurveyQuestion.php │ ├── SurveyQuestionReference.php │ ├── SurveyQuestionValue.php │ ├── SurveyReference.php │ ├── SystemDepartmentReference.php │ ├── SystemLocationReference.php │ ├── SystemMenuEntryReference.php │ ├── SystemSetting.php │ ├── TeamRoleReference.php │ ├── TimeExpense.php │ ├── TimeZone.php │ ├── TimeZoneReference.php │ ├── TimeZoneSetup.php │ ├── TimeZoneSetupReference.php │ ├── TodayPageCategory.php │ ├── Token.php │ ├── TrackReference.php │ ├── Type.php │ ├── Usage.php │ ├── UserDefinedField.php │ ├── UserDefinedFieldOption.php │ ├── UserDefinedFieldReference.php │ ├── ValidationError.php │ ├── WarehouseBinReference.php │ ├── WarehouseReference.php │ ├── WorkRoleReference.php │ ├── WorkTypeReference.php │ ├── Workflow.php │ ├── WorkflowAction.php │ ├── WorkflowActionAutomateParameter.php │ ├── WorkflowAttachment.php │ ├── WorkflowEvent.php │ ├── WorkflowNotifyType.php │ ├── WorkflowTableType.php │ ├── WorkflowTableTypeReference.php │ ├── WorkflowTrigger.php │ └── WorkflowTriggerOption.php │ ├── Time │ ├── ActivityStopwatch.php │ ├── AgreementReference.php │ ├── AuditSource.php │ ├── AuditType.php │ ├── ChargeCode.php │ ├── ChargeCodeExpenseType.php │ ├── ChargeCodeReference.php │ ├── CompanyReference.php │ ├── Count.php │ ├── CustomFieldValue.php │ ├── Error.php │ ├── ExpenseTypeReference.php │ ├── ExternalWorkTypeIntegrationReference.php │ ├── Guid.php │ ├── InvoiceReference.php │ ├── MemberReference.php │ ├── Metadata.php │ ├── PatchOperation.php │ ├── ScheduleStopwatch.php │ ├── ServiceStatusReference.php │ ├── SuccessResponse.php │ ├── SystemDepartmentReference.php │ ├── SystemLocationReference.php │ ├── TicketReference.php │ ├── TicketStopwatch.php │ ├── TimeAccrual.php │ ├── TimeAccrualDetail.php │ ├── TimeAccrualReference.php │ ├── TimeEntry.php │ ├── TimeEntryAudit.php │ ├── TimePeriod.php │ ├── TimePeriodSetup.php │ ├── TimePeriodSetupDefaults.php │ ├── TimePeriodSetupReference.php │ ├── TimeSheet.php │ ├── TimeSheetAudit.php │ ├── TimeSheetReference.php │ ├── Usage.php │ ├── ValidationError.php │ ├── WorkRole.php │ ├── WorkRoleLocation.php │ ├── WorkRoleReference.php │ ├── WorkType.php │ ├── WorkTypeExternalIntegrationReference.php │ └── WorkTypeReference.php │ └── map.json └── Support ├── Collection.php ├── Model.php └── ModelResolver.php /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | end_of_line = lf 6 | insert_final_newline = true 7 | indent_style = space 8 | indent_size = 4 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | trim_trailing_whitespace = false 13 | 14 | [*.yml] 15 | indent_style = space 16 | indent_size = 2 17 | -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 6.2.0 2 | -------------------------------------------------------------------------------- /pint.json: -------------------------------------------------------------------------------- 1 | { 2 | "preset": "laravel", 3 | "rules": { 4 | "no_superfluous_phpdoc_tags": true 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/Exceptions/MalformedRequest.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_4/Company/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_4/Expense/AuditSource.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_4/Expense/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_4/Finance/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_4/Finance/GLExportSettings.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_4/Internal/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_4/Internal/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_4/Internal/UploadToMarketplaceRequest.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_4/Procurement/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_4/Project/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_4/Project/Metadata.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_4/Sales/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_4/Sales/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_4/Schedule/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_4/Schedule/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_4/Service/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_4/Service/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_4/Service/TemplateGeneratedCountsModel.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_4/System/JArray.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_4/System/Report.php: -------------------------------------------------------------------------------- 1 | 'string', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_4/Time/AuditSource.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_4/Time/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_4/Time/TimePeriodSetupDefaults.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_5/Company/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_5/Expense/AuditSource.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_5/Expense/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_5/Finance/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_5/Finance/GLExportSettings.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_5/Internal/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_5/Internal/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_5/Internal/UploadToMarketplaceRequest.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_5/Procurement/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_5/Project/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_5/Project/Metadata.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_5/Sales/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_5/Sales/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_5/Schedule/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_5/Schedule/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_5/Service/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_5/Service/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_5/Service/TemplateGeneratedCountsModel.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_5/System/JArray.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_5/System/Report.php: -------------------------------------------------------------------------------- 1 | 'string', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_5/Time/AuditSource.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_5/Time/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_5/Time/TimePeriodSetupDefaults.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_6/Company/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_6/Expense/AuditSource.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_6/Expense/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_6/Finance/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_6/Finance/GLExportSettings.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_6/Internal/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_6/Internal/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_6/Internal/UploadToMarketplaceRequest.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_6/Procurement/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_6/Project/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_6/Project/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_6/Sales/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_6/Sales/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_6/Schedule/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_6/Schedule/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_6/Service/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_6/Service/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_6/Service/TemplateGeneratedCountsModel.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_6/System/JArray.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_6/System/Report.php: -------------------------------------------------------------------------------- 1 | 'string', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_6/Time/AuditSource.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_6/Time/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2018_6/Time/TimePeriodSetupDefaults.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_1/Company/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_1/Expense/AuditSource.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_1/Expense/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_1/Finance/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_1/Finance/GLExportSettings.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_1/Internal/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_1/Internal/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_1/Internal/UploadToMarketplaceRequest.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_1/Procurement/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_1/Procurement/IRestIdentifiedItem.php: -------------------------------------------------------------------------------- 1 | 'array', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_1/Project/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_1/Project/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_1/Sales/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_1/Sales/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_1/Schedule/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_1/Schedule/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_1/Service/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_1/Service/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_1/Service/TemplateGeneratedCountsModel.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_1/System/JArray.php: -------------------------------------------------------------------------------- 1 | 'string', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_1/System/Metadata.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_1/System/Report.php: -------------------------------------------------------------------------------- 1 | 'string', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_1/Time/AuditSource.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_1/Time/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_1/Time/TimePeriodSetupDefaults.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_2/Company/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_2/Expense/AuditSource.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_2/Expense/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_2/Finance/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_2/Finance/GLExportSettings.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_2/Internal/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_2/Internal/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_2/Internal/UploadToMarketplaceRequest.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_2/Procurement/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_2/Procurement/IRestIdentifiedItem.php: -------------------------------------------------------------------------------- 1 | 'array', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_2/Project/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_2/Project/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_2/Sales/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_2/Sales/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_2/Schedule/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_2/Schedule/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_2/Service/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_2/Service/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_2/Service/TemplateGeneratedCountsModel.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_2/System/IRestIdentifiedItem.php: -------------------------------------------------------------------------------- 1 | 'string', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_2/System/Metadata.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_2/System/Report.php: -------------------------------------------------------------------------------- 1 | 'string', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_2/Time/AuditSource.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_2/Time/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_2/Time/TimePeriodSetupDefaults.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_3/Company/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_3/Expense/AuditSource.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_3/Expense/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_3/Finance/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_3/Finance/GLExportSettings.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_3/Internal/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_3/Internal/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_3/Internal/UploadToMarketplaceRequest.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_3/Procurement/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_3/Procurement/IRestIdentifiedItem.php: -------------------------------------------------------------------------------- 1 | 'array', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_3/Project/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_3/Project/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_3/Sales/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_3/Sales/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_3/Schedule/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_3/Schedule/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_3/Service/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_3/Service/Guid.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_3/System/IRestIdentifiedItem.php: -------------------------------------------------------------------------------- 1 | 'string', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_3/System/Metadata.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_3/System/Report.php: -------------------------------------------------------------------------------- 1 | 'string', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_3/Time/AuditSource.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_3/Time/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_3/Time/TimePeriodSetupDefaults.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_4/Company/Guid.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_4/Expense/Guid.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_4/Finance/GLExportSettings.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_4/Internal/Guid.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_4/Procurement/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_4/Procurement/IRestIdentifiedItem.php: -------------------------------------------------------------------------------- 1 | 'array', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_4/Project/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_4/Project/Guid.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_4/Sales/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_4/Schedule/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_4/Schedule/Guid.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_4/Service/Guid.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_4/System/IRestIdentifiedItem.php: -------------------------------------------------------------------------------- 1 | 'string', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_4/System/Metadata.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_4/System/Report.php: -------------------------------------------------------------------------------- 1 | 'string', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_4/Time/AuditSource.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_4/Time/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_4/Time/TimePeriodSetupDefaults.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_5/Company/Guid.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_5/Expense/Guid.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_5/Finance/GLExportSettings.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_5/Internal/Guid.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_5/Procurement/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_5/Procurement/IRestIdentifiedItem.php: -------------------------------------------------------------------------------- 1 | 'array', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_5/Project/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_5/Project/Guid.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_5/Sales/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_5/Schedule/Count.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_5/Schedule/Guid.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_5/Service/Guid.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_5/System/IRestIdentifiedItem.php: -------------------------------------------------------------------------------- 1 | 'string', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_5/System/Metadata.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_5/System/Report.php: -------------------------------------------------------------------------------- 1 | 'string', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_5/Time/AuditSource.php: -------------------------------------------------------------------------------- 1 | 'integer', 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_5/Time/Guid.php: -------------------------------------------------------------------------------- 1 | Carbon::class, 22 | 'lastUpdated' => Carbon::class, 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/v2019_5/Time/TimePeriodSetupDefaults.php: -------------------------------------------------------------------------------- 1 |