/// <summary> /// Initializes a new instance of the <see cref="ContactResponse" /> class. /// </summary> /// <param name="Name">Name of the contact.</param> /// <param name="Address">Address of the contact.</param> /// <param name="WebsiteUrl">Website of the contact.</param> /// <param name="Email">Email address of the contact.</param> /// <param name="Phone">Phone number of the contact.</param> /// <param name="Fax">Fax number of the contact.</param> public ContactResponse(DetailResponse Name = default(DetailResponse), AddressResponse Address = default(AddressResponse), Object WebsiteUrl = default(Object), Object Email = default(Object), DetailResponse Phone = default(DetailResponse), DetailResponse Fax = default(DetailResponse)) { this.Name = Name; this.Address = Address; this.WebsiteUrl = WebsiteUrl; this.Email = Email; this.Phone = Phone; this.Fax = Fax; }
/// <summary> /// Initializes a new instance of the <see cref="AddressResponse" /> class. /// </summary> /// <param name="Street">Street (incl. street number).</param> /// <param name="ZipCode">Zip code / postal code.</param> /// <param name="City">City.</param> /// <param name="Country">Country.</param> /// <param name="X">X-Position according to the document resolution.</param> /// <param name="Y">Y-Position according to the document resolution.</param> /// <param name="Width">Width according to the document resolution.</param> /// <param name="Height">Height according to the document resolution.</param> public AddressResponse(DetailResponse Street = default(DetailResponse), DetailResponse ZipCode = default(DetailResponse), DetailResponse City = default(DetailResponse), DetailResponse Country = default(DetailResponse), int?X = default(int?), int?Y = default(int?), int?Width = default(int?), int?Height = default(int?)) { this.Street = Street; this.ZipCode = ZipCode; this.City = City; this.Country = Country; this.X = X; this.Y = Y; this.Width = Width; this.Height = Height; }
/// <summary> /// Initializes a new instance of the <see cref="LineItemGroupResponse" /> class. /// </summary> /// <param name="Description">Description text of the line item.</param> /// <param name="Quantity">Quantity (number of single units) of the line item.</param> /// <param name="UnitPrice">Single unit price of the line item.</param> /// <param name="LineItemAmount">Total amount of the line item.</param> /// <param name="Score">Scored probability. Value between zero and one..</param> /// <param name="X">X-Position according to the document resolution.</param> /// <param name="Y">Y-Position according to the document resolution.</param> /// <param name="Width">Width according to the document resolution.</param> /// <param name="Height">Height according to the document resolution.</param> public LineItemGroupResponse(DetailResponse Description = default(DetailResponse), DetailResponse Quantity = default(DetailResponse), DetailResponse UnitPrice = default(DetailResponse), DetailResponse LineItemAmount = default(DetailResponse), double?Score = default(double?), int?X = default(int?), int?Y = default(int?), int?Width = default(int?), int?Height = default(int?)) { this.Description = Description; this.Quantity = Quantity; this.UnitPrice = UnitPrice; this.LineItemAmount = LineItemAmount; this.Score = Score; this.X = X; this.Y = Y; this.Width = Width; this.Height = Height; }