' Options: 'Date: 2026-09-24 03:57:47 'Version: 10.05 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://testapi.bokamera.se ' '''GlobalNamespace: '''MakePartial: True '''MakeVirtual: True '''MakeDataContractsExtensible: False '''AddReturnMarker: True '''AddDescriptionAsComments: True '''AddDataContractAttributes: False '''AddIndexesToDataMembers: False '''AddGeneratedCodeAttributes: False '''AddResponseStatus: False '''AddImplicitVersion: '''InitializeCollections: False '''ExportValueTypes: False 'IncludeTypes: SearchVossCustomers.* '''ExcludeTypes: '''AddNamespaces: '''AddDefaultXmlNamespace: http://schemas.servicestack.net/types Imports System Imports System.IO Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports System.Globalization Imports ServiceStack.Data Imports System.Net Imports System.Net.Http.Headers Imports BokaMera.VossIntegration.ApiTools.Model Imports BokaMera.VossIntegration.ApiTools.Enums Imports BokaMera.API.ServiceModel.Dtos Namespace Global Namespace BokaMera.API.ServiceModel.Dtos Public Partial Class SearchVossCustomers Implements IReturn(Of SearchVossCustomersResponse) ''' '''Organization number to search for. ''' Public Overridable Property OrganizationNumber As String ''' '''Voss customer number to search for. ''' Public Overridable Property CustomerNumber As Integer? ''' '''External id to search for. ''' Public Overridable Property ExternalId As String End Class Public Partial Class SearchVossCustomersResponse Public Overridable Property TotalCount As Integer Public Overridable Property Items As List(Of CustomerResult) = New List(Of CustomerResult) End Class End Namespace Namespace BokaMera.VossIntegration.ApiTools.Enums Public Enum CountryCodeEnum AD AE AF AG AI AL AM AO AQ AR AS AT AU AW AX AZ BA BB BD BE BF BG BH BI BJ BL BM BN BO BQ BR BS BT BV BW BY BZ CA CC CD CF CG CH CI CK CL CM CN CO CR CU CV CW CX CY CZ DE DJ DK DM DO DZ EC EE EG EH ER ES ET FI FJ FK FM FO FR GA GB GD GE GF GG GH GI GL GM GN GP GQ GR GS GT GU GW GY HK HM HN HR HT HU ID IE IL IM IN IO IQ IR IS IT JE JM JO JP KE KG KH KI KM KN KP KR KW KY KZ LA LB LC LI LK LR LS LT LU LV LY MA MC MD ME MF MG MH MK ML MM MN MO MP MQ MR MS MT MU MV MW MX MY MZ NA NC NE NF NG NI NL NO NP NR NU NZ OM PA PE PF PG PH PK PL PM PN PR PS PT PW PY QA RE RO RS RU RW SA SB SC SD SE SG SH SI SJ SK SL SM SN SO SR SS ST SV SX SY SZ TC TD TF TG TH TJ TK TL TM TN TO TR TT TV TW TZ UA UG UM US UY UZ VA VC VE VG VI VN VU WF WS YE YT ZA ZM ZW End Enum End Namespace Namespace BokaMera.VossIntegration.ApiTools.Model Public Partial Class CustomerContactPersonDto Public Overridable Property Email As String Public Overridable Property FirstName As String Public Overridable Property LastName As String Public Overridable Property PhoneNumber As String End Class Public Partial Class CustomerResult Public Overridable Property CountryCode As CountryCodeEnum? Public Overridable Property Id As Guid Public Overridable Property Name As String Public Overridable Property CustomerNumber As Integer? Public Overridable Property OrganizationNumber As String Public Overridable Property Email As String Public Overridable Property CareOf As String Public Overridable Property Address As String Public Overridable Property PostalCode As String Public Overridable Property City As String Public Overridable Property ElectronicInvoiceOperatorCode As String Public Overridable Property ElectronicInvoiceAddress As String Public Overridable Property CustomerGroup As Integer? Public Overridable Property ContactPerson As CustomerContactPersonDto Public Overridable Property TargetGroups As List(Of CustomerTargetGroupDto) = New List(Of CustomerTargetGroupDto) Public Overridable Property ExpiryDate As Date? Public Overridable Property Created As Date Public Overridable Property ExternalId As String End Class Public Partial Class CustomerTargetGroupDto Public Overridable Property Id As Guid Public Overridable Property Name As String Public Overridable Property IsDefault As Boolean Public Overridable Property ExternalId As String End Class End Namespace End Namespace