UNPKG

b1-sl

Version:

library for connection and session management of the service layer sap b1

68 lines (65 loc) 1.77 kB
class ContactEmployee { constructor() { this.CardCode = new String(); this.Name = new String(); this.Position = new String(); this.Address = new String(); this.Phone1 = new String(); this.Phone2 = new String(); this.MobilePhone = new String(); this.Fax = new String(); this.E_Mail = new String(); this.Pager = new String(); this.Remarks1 = new String(); this.Remarks2 = new String(); this.Password = new String(); this.InternalCode = new Number(); this.PlaceOfBirth = new String(); this.DateOfBirth = new String(); this.Gender = new String(); this.Profession = new String(); this.Title = new String(); this.CityOfBirth = new String(); this.Active = new String(); this.FirstName = new String(); this.MiddleName = new String(); this.LastName = new String(); this.EmailGroupCode = new String(); this.BlockSendingMarketingContent = new String(); this.CreateDate = new String(); this.CreateTime = new String(); this.UpdateDate = new String(); this.UpdateTime = new String(); } CardCode; Name; Position; Address; Phone1; Phone2; MobilePhone; Fax; E_Mail; Pager; Remarks1; Remarks2; Password; InternalCode; PlaceOfBirth; DateOfBirth; Gender; Profession; Title; CityOfBirth; Active; FirstName; MiddleName; LastName; EmailGroupCode; BlockSendingMarketingContent; CreateDate; CreateTime; UpdateDate; UpdateTime; } module.exports = ContactEmployee;