/* Options:
Date: 2026-03-31 18:55:27
Version: 8.80
Tip: To override a DTO option, remove "//" prefix before updating
BaseUrl: https://test-dogw.klokgroep.nl/api
//GlobalNamespace:
//MakePartial: True
//MakeVirtual: True
//MakeInternal: False
//MakeDataContractsExtensible: False
//AddNullableAnnotations: False
//AddReturnMarker: True
//AddDescriptionAsComments: True
//AddDataContractAttributes: False
//AddIndexesToDataMembers: False
//AddGeneratedCodeAttributes: False
//AddResponseStatus: False
//AddImplicitVersion:
//InitializeCollections: False
//ExportValueTypes: False
IncludeTypes: IDB_4PSBC_Import_Bedrijf.*
//ExcludeTypes:
//AddNamespaces:
//AddDefaultXmlNamespace: http://schemas.servicestack.net/types
*/
using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using System.Drawing;
using DO.Synchronization.IDB_4PSBC.DTO;
namespace DO.Synchronization.IDB_4PSBC.DTO
{
public partial class Data_Company
{
public virtual string visitAddress { get; set; }
public virtual string visitAddress2 { get; set; }
public virtual string vatRegistrationNo { get; set; }
public virtual string vendorNo { get; set; }
public virtual string customerNo { get; set; }
public virtual string eMail { get; set; }
public virtual string companyName4ps { get; set; }
public virtual Guid? systemId { get; set; }
public virtual Guid? digiOfficeId { get; set; }
public virtual string cocRegistrationNo { get; set; }
public virtual string cocLocationNo { get; set; }
public virtual string cocCity { get; set; }
public virtual string visitAddressCountryRegionId { get; set; }
public virtual string countryRegionId { get; set; }
public virtual string countryRegionCodeId { get; set; }
public virtual string mobilePhoneNo { get; set; }
public virtual string name { get; set; }
public virtual string name2 { get; set; }
public virtual string visitAddressCity { get; set; }
public virtual string city { get; set; }
public virtual string address { get; set; }
public virtual string visitAddressPostCode { get; set; }
public virtual string postCode { get; set; }
public virtual string phoneNo { get; set; }
public virtual string phoneNo2 { get; set; }
public virtual string homePage { get; set; }
public virtual string no { get; set; }
public virtual Guid? companyId { get; set; }
public virtual bool? blocked { get; set; }
public virtual string nameAbbreviation { get; set; }
}
public partial class Header
{
///
///Inhoud van het bericht
///
[ApiMember(Description="Inhoud van het bericht")]
public virtual string Contains { get; set; }
///
///Datum aanmaak bericht
///
[ApiMember(Description="Datum aanmaak bericht")]
public virtual string Date { get; set; }
///
///ID voor het bericht
///
[ApiMember(Description="ID voor het bericht")]
public virtual string MessageID { get; set; }
///
///Verzender van het bericht
///
[ApiMember(Description="Verzender van het bericht")]
public virtual string Sender { get; set; }
}
///
///Import bedrijf record vanuit 4PS
///
[Route("/4PSBC/ImportBedrijf", "POST")]
[Api(Description="Import bedrijf record vanuit 4PS")]
public partial class IDB_4PSBC_Import_Bedrijf
: IReturn
{
///
///Message header
///
[ApiMember(Description="Message header", IsRequired=true)]
public virtual Header Header { get; set; }
///
///Message data
///
[ApiMember(Description="Message data", IsRequired=true)]
public virtual Data_Company Data { get; set; }
}
public partial class IDB_4PSBC_Response_Bedrijf
{
///
///Header of the response
///
[ApiMember(Description="Header of the response", IsRequired=true)]
public virtual Header Header { get; set; }
///
///Response body
///
[ApiMember(Description="Response body", IsRequired=true)]
public virtual Response_Company Response { get; set; }
}
public partial class Response_Company
{
///
///Reponse status (Ok/Error)
///
[ApiMember(Description="Reponse status (Ok/Error)", IsRequired=true)]
public virtual string Status { get; set; }
///
///Errors summary
///
[ApiMember(Description="Errors summary")]
public virtual string Errors { get; set; }
///
///ID of the company in DigiOffice
///
[ApiMember(Description="ID of the company in DigiOffice", IsRequired=true)]
public virtual string DigiOfficeCompanyID { get; set; }
///
///GlobalID (digiOfficeId) of the company in DigiOffice
///
[ApiMember(Description="GlobalID (digiOfficeId) of the company in DigiOffice", IsRequired=true)]
public virtual Guid DigiOfficeGlobalID { get; set; }
}
}