OnlineSalesAutoCrop/Api/OnlineSalesAutoCrop.CoreAPI.Models/Responses/Integrations/CustomerIntegrationResponse.cs

49 lines
2.0 KiB
C#

namespace OnlineSalesAutoCrop.CoreAPI.Models.Responses.Integrations;
public class CustomerIntegrationResponse : ResponseBase
{
public string CustomerNumber { get; set; }
public string CompanyCode { get; set; }
public bool IsUpdated { get; set; }
}
public class CustomerByCompanyCodeResponse : ResponseBase
{
public int CustomerId { get; set; }
public string CustomerNumber { get; set; }
public string CustomerName { get; set; }
public string AccountGroup { get; set; }
public string AccountGroupDescription { get; set; }
public string CompanyCode { get; set; }
public string CompanyCodeDescription { get; set; }
public string SalesOrganization { get; set; }
public string SalesOrganizationDescription { get; set; }
public string DistributionChannel { get; set; }
public string DistributionChannelDescription { get; set; }
public string Division { get; set; }
public string DivisionDescription { get; set; }
public string MobileNumber { get; set; }
public string EmailAddress { get; set; }
public string BusinessTaxNumber { get; set; }
public decimal CreditLimit { get; set; }
public string SalesGroup { get; set; }
public string SalesGroupDescription { get; set; }
public string CustomerGroup { get; set; }
public string CustomerGroupDescription { get; set; }
public string CustomerPriceGroup { get; set; }
public string CustomerPriceGroupDescription { get; set; }
public string StatusCode { get; set; }
public string StatusDescription { get; set; }
public string PaymentTerms { get; set; }
public string PaymentTermsDescription { get; set; }
public string SearchTerm { get; set; }
public string AreaRegion { get; set; }
public string AreaRegionDescription { get; set; }
public string SalesUnitAreaAV { get; set; }
public string SalesUnitAreaAVDescription { get; set; }
public string Territory { get; set; }
public string TerritoryName { get; set; }
public string Plant { get; set; }
public string PlantName { get; set; }
}