' Options: 'Date: 2024-06-02 02:56:08 'Version: 8.23 '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: True '''ExportValueTypes: False 'IncludeTypes: AddBillingInformation.* '''ExcludeTypes: '''AddNamespaces: '''AddDefaultXmlNamespace: http://schemas.servicestack.net/types Imports System Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports System.Globalization Imports ServiceStack.Data Imports BokaMera.API.ServiceModel.Interfaces Imports BokaMera.API.ServiceModel.Db Imports BokaMera.API.ServiceModel.Dtos Namespace Global Namespace BokaMera.API.ServiceModel.Db Public Partial Class BaseModel End Class Public Partial Class BillingMethod Inherits BaseModel Public Sub New() BillingMethodCountriesRelation = New List(Of BillingMethodCountriesRelation) End Sub Public Overridable Property BillingMethodCountriesRelation As List(Of BillingMethodCountriesRelation) Public Overridable Property Name As String Public Overridable Property Description As String Public Overridable Property ModifiedDate As Nullable(Of DateTimeOffset) Public Overridable Property Id As Integer End Class Public Partial Class BillingMethodCountriesRelation Inherits BaseModel Public Overridable Property BillingMethodId As Integer Public Overridable Property CountryId As String Public Overridable Property ModifiedDate As Nullable(Of DateTimeOffset) End Class End Namespace Namespace BokaMera.API.ServiceModel.Dtos Public Partial Class AddBillingInformation Implements IReturn(Of BillingInformationResponse) Implements ICompany ''' '''The company id, if empty will use the company id for the user you are logged in with. ''' Public Overridable Property CompanyId As Nullable(Of Guid) ''' '''The prefered billing method. ''' Public Overridable Property BillingMethodId As Integer ''' '''The name that should be printed on the billing information, normally this would be your company name. ''' Public Overridable Property Name As String ''' '''If you want to add the attention to the billing address. ''' Public Overridable Property Attention As String ''' '''The street for the billing adress. This is required when having postal invoice as billing method. ''' Public Overridable Property Street1 As String ''' '''The street for the billing adress. ''' Public Overridable Property Street2 As String ''' '''The zip code (postal code) for the billing adress. This is required when having postal invoice as billing method. ''' Public Overridable Property ZipCode As String ''' '''The city for the billing adress. This is required when having postal invoice as billing method. ''' Public Overridable Property City As String ''' '''The country for the billing adress. This is required when having postal invoice as billing method. ''' Public Overridable Property CountryId As String ''' '''The billing email. This is required when having email invoice as billing method. ''' Public Overridable Property Email As String ''' '''The billing payment terms in days. This is default 15 days. ''' Public Overridable Property PaymentTermsDays As Nullable(Of Integer) ''' '''The company vat registration number. ''' Public Overridable Property VatRegistrationNumber As String ''' '''The company global location number. ''' Public Overridable Property GLN As String ''' '''You're internal rereference. ''' Public Overridable Property ReferenceLine1 As String ''' '''You're internal rereference. ''' Public Overridable Property ReferenceLine2 As String End Class Public Partial Class BillingInformationResponse Public Sub New() BillingMethodOptions = New List(Of BillingMethod) End Sub ''' '''The company id. ''' Public Overridable Property CompanyId As Guid ''' '''The prefered billing method. ''' Public Overridable Property BillingMethodId As Integer ''' '''The name that should be printed on the billing information, normally this would be your company name. ''' Public Overridable Property Name As String ''' '''If you want to add the attention to the billing address. ''' Public Overridable Property Attention As String ''' '''The street for the billing adress. This is required when having postal invoice as billing method. ''' Public Overridable Property Street1 As String ''' '''The street for the billing adress. ''' Public Overridable Property Street2 As String ''' '''The zip code (postal code) for the billing adress. This is required when having postal invoice as billing method. ''' Public Overridable Property ZipCode As String ''' '''The city for the billing adress. This is required when having postal invoice as billing method. ''' Public Overridable Property City As String ''' '''The country for the billing adress. This is required when having postal invoice as billing method. ''' Public Overridable Property CountryId As String ''' '''The billing email. This is required when having email invoice as billing method. ''' Public Overridable Property Email As String ''' '''The company global location number. ''' Public Overridable Property GLN As String ''' '''You're internal rereference. ''' Public Overridable Property ReferenceLine1 As String ''' '''You're internal rereference. ''' Public Overridable Property ReferenceLine2 As String ''' '''The billing payment terms in days. This is default 15 days. ''' Public Overridable Property PaymentTermsDays As Integer ''' '''The company vat registration number. ''' Public Overridable Property VatRegistrationNumber As String ''' '''The billing method options to choose from ''' Public Overridable Property BillingMethodOptions As List(Of BillingMethod) End Class End Namespace Namespace BokaMera.API.ServiceModel.Interfaces Public Interface ICompany Property CompanyId As Nullable(Of Guid) End Interface End Namespace End Namespace