Umgeschrieben auf Sevdesk

This commit is contained in:
2023-07-17 19:10:11 +02:00
parent 47e39bc11f
commit 8c640c426c
32 changed files with 1795 additions and 369 deletions

View File

@@ -0,0 +1,232 @@
using Newtonsoft.Json;
using System.Runtime.Serialization;
namespace ConsoleApp3.DataContracts
{
[DataContract]
public class ModelContact
{
[DataMember(Name = "id", EmitDefaultValue = false)]
[JsonProperty(PropertyName = "id")]
public int Id { get; set; }
[DataMember(Name = "objectName", EmitDefaultValue = false)]
[JsonProperty(PropertyName = "objectName")]
public string ObjectName { get; set; } = "";
/// <summary>
/// the contact address
/// </summary>
/// <value>the contact address</value>
[DataMember(Name = "address", EmitDefaultValue = false)]
[JsonProperty(PropertyName = "address")]
public ModelContactAddress Address { get; set; }
/// <summary>
/// the creation date of the contact
/// </summary>
/// <value>the creation date of the contact</value>
[DataMember(Name = "create", EmitDefaultValue = false)]
[JsonProperty(PropertyName = "create")]
public DateTime? Create { get; set; }
/// <summary>
/// date, the contact was last updated
/// </summary>
/// <value>date, the contact was last updated</value>
[DataMember(Name = "update", EmitDefaultValue = false)]
[JsonProperty(PropertyName = "update")]
public DateTime? Update { get; set; }
/// <summary>
/// name of the contact
/// </summary>
/// <value>name of the contact</value>
[DataMember(Name = "name", EmitDefaultValue = false)]
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
/// <summary>
/// status of the contact
/// </summary>
/// <value>status of the contact</value>
[DataMember(Name = "status", EmitDefaultValue = false)]
[JsonProperty(PropertyName = "status")]
public int? Status { get; set; }
/// <summary>
/// customer number of the contact
/// </summary>
/// <value>customer number of the contact</value>
[DataMember(Name = "customerNumber", EmitDefaultValue = false)]
[JsonProperty(PropertyName = "customerNumber")]
public int? CustomerNumber { get; set; }
/// <summary>
///
/// </summary>
/// <value></value>
[DataMember(Name = "parent", EmitDefaultValue = false)]
[JsonProperty(PropertyName = "parent")]
public ModelContact Parent { get; set; }
/// <summary>
/// surname of the contact
/// </summary>
/// <value>surname of the contact</value>
[DataMember(Name = "surename", EmitDefaultValue = false)]
[JsonProperty(PropertyName = "surename")]
public string Surename { get; set; }
/// <summary>
/// family name of the contact
/// </summary>
/// <value>family name of the contact</value>
[DataMember(Name = "familyname", EmitDefaultValue = false)]
[JsonProperty(PropertyName = "familyname")]
public string Familyname { get; set; }
/// <summary>
/// title of the contact
/// </summary>
/// <value>title of the contact</value>
[DataMember(Name = "titel", EmitDefaultValue = false)]
[JsonProperty(PropertyName = "titel")]
public string Titel { get; set; }
/// <summary>
/// category of the contact
/// </summary>
/// <value>category of the contact</value>
[DataMember(Name = "category", EmitDefaultValue = false)]
[JsonProperty(PropertyName = "category")]
public ModelCategory Category { get; set; }
/// <summary>
/// description of the contact
/// </summary>
/// <value>description of the contact</value>
[DataMember(Name = "description", EmitDefaultValue = false)]
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
/// <summary>
/// any academic title of the contact
/// </summary>
/// <value>any academic title of the contact</value>
[DataMember(Name = "academicTitle", EmitDefaultValue = false)]
[JsonProperty(PropertyName = "academicTitle")]
public string AcademicTitle { get; set; }
/// <summary>
/// gender of the contact
/// </summary>
/// <value>gender of the contact</value>
[DataMember(Name = "gender", EmitDefaultValue = false)]
[JsonProperty(PropertyName = "gender")]
public string Gender { get; set; }
/// <summary>
/// sevClient is the unique id every customer has and is used in nearly all operations
/// </summary>
/// <value>sevClient is the unique id every customer has and is used in nearly all operations</value>
[DataMember(Name = "sevClient", EmitDefaultValue = false)]
[JsonProperty(PropertyName = "sevClient")]
public Object SevClient { get; set; }
/// <summary>
/// second name of the contact
/// </summary>
/// <value>second name of the contact</value>
[DataMember(Name = "name2", EmitDefaultValue = false)]
[JsonProperty(PropertyName = "name2")]
public string Name2 { get; set; }
/// <summary>
/// birthday of the contact
/// </summary>
/// <value>birthday of the contact</value>
[DataMember(Name = "birthday", EmitDefaultValue = false)]
[JsonProperty(PropertyName = "birthday")]
public DateTime? Birthday { get; set; }
/// <summary>
/// vat number of the contact
/// </summary>
/// <value>vat number of the contact</value>
[DataMember(Name = "vatNumber", EmitDefaultValue = false)]
[JsonProperty(PropertyName = "vatNumber")]
public string VatNumber { get; set; }
/// <summary>
/// bank account of the contact
/// </summary>
/// <value>bank account of the contact</value>
[DataMember(Name = "bankAccount", EmitDefaultValue = false)]
[JsonProperty(PropertyName = "bankAccount")]
public string BankAccount { get; set; }
/// <summary>
/// bank number of the contact
/// </summary>
/// <value>bank number of the contact</value>
[DataMember(Name = "bankNumber", EmitDefaultValue = false)]
[JsonProperty(PropertyName = "bankNumber")]
public string BankNumber { get; set; }
/// <summary>
/// desired payment method of the customer
/// </summary>
/// <value>desired payment method of the customer</value>
[DataMember(Name = "paymentMethod", EmitDefaultValue = false)]
[JsonProperty(PropertyName = "paymentMethod")]
public ModelPaymentMethod PaymentMethod { get; set; }
/// <summary>
///
/// </summary>
/// <value></value>
[DataMember(Name = "entryType", EmitDefaultValue = false)]
[JsonProperty(PropertyName = "entryType")]
public ModelEntryType EntryType { get; set; }
/// <summary>
/// default cashback time of the contact
/// </summary>
/// <value>default cashback time of the contact</value>
[DataMember(Name = "defaultCashbackTime", EmitDefaultValue = false)]
[JsonProperty(PropertyName = "defaultCashbackTime")]
public int? DefaultCashbackTime { get; set; }
/// <summary>
/// default cashback percentage of the contact
/// </summary>
/// <value>default cashback percentage of the contact</value>
[DataMember(Name = "defaultCashbackPercent", EmitDefaultValue = false)]
[JsonProperty(PropertyName = "defaultCashbackPercent")]
public int? DefaultCashbackPercent { get; set; }
/// <summary>
/// default time to pay of the contact
/// </summary>
/// <value>default time to pay of the contact</value>
[DataMember(Name = "defaultTimeToPay", EmitDefaultValue = false)]
[JsonProperty(PropertyName = "defaultTimeToPay")]
public int? DefaultTimeToPay { get; set; }
/// <summary>
/// tax number of the contact
/// </summary>
/// <value>tax number of the contact</value>
[DataMember(Name = "taxNumber", EmitDefaultValue = false)]
[JsonProperty(PropertyName = "taxNumber")]
public string TaxNumber { get; set; }
/// <summary>
/// tax office of the contact
/// </summary>
/// <value>tax office of the contact</value>
[DataMember(Name = "taxOffice", EmitDefaultValue = false)]
[JsonProperty(PropertyName = "taxOffice")]
public string TaxOffice { get; set; }
}
}