(* Options: Date: 2024-09-30 10:28:26 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: CompanyBillingInformation.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace BokaMera.API.ServiceModel.Db open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Globalization open ServiceStack.Data open System.IO [] type BaseModel() = class end [] type BillingMethodCountriesRelation() = inherit BaseModel() [] member val BillingMethodId:Int32 = new Int32() with get,set [] member val CountryId:String = null with get,set member val ModifiedDate:Nullable = new Nullable() with get,set [] type BillingMethod() = inherit BaseModel() member val BillingMethodCountriesRelation:ResizeArray = new ResizeArray() with get,set [] member val Name:String = null with get,set [] member val Description:String = null with get,set member val ModifiedDate:Nullable = new Nullable() with get,set member val Id:Int32 = new Int32() with get,set [] type BillingMethodQueryResponse() = /// ///The billing method id /// [] member val Id:Int32 = new Int32() with get,set /// ///The billing method name /// [] member val Name:String = null with get,set /// ///The billing method description /// [] member val Description:String = null with get,set /// ///The billing method is valid for the following countries /// [] member val Countries:ResizeArray = new ResizeArray() with get,set [] type BillingInformation() = inherit BaseModel() member val BillingMethod:BillingMethod = null with get,set [] member val BillingMethodId:Int32 = new Int32() with get,set [] member val Name:String = null with get,set member val Attention:String = null with get,set member val Street1:String = null with get,set member val Street2:String = null with get,set member val ZipCode:String = null with get,set member val City:String = null with get,set member val Email:String = null with get,set member val CreditCard:String = null with get,set member val CreditCardHolder:String = null with get,set member val CreditCardNumber:String = null with get,set member val ValidToYear:Nullable = new Nullable() with get,set member val ValidToMonth:Nullable = new Nullable() with get,set member val CSV:String = null with get,set [] member val Updated:DateTime = new DateTime() with get,set [] member val Created:DateTime = new DateTime() with get,set [] member val CountryId:String = null with get,set [] member val PaymentTermsDays:Int32 = new Int32() with get,set member val VATRegistrationNumber:String = null with get,set member val GLN:String = null with get,set member val ReferenceLine1:String = null with get,set member val ReferenceLine2:String = null with get,set member val ModifiedDate:Nullable = new Nullable() with get,set [] member val Id:Guid = new Guid() with get,set [] [] [] [] type CompanyBillingInformation() = inherit QueryDb() interface IReturn> /// ///The company id, if empty will use the company id for the user you are logged in with. /// [] member val CompanyId:Nullable = new Nullable() with get,set /// ///If you want to include the billing methods to select from /// [] member val IncludeBillingMethodOptions:Boolean = new Boolean() with get,set