UNPKG

b1-sl

Version:

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

58 lines (55 loc) 1.49 kB
class BPAddress { constructor() { this.AddressName = new String(); this.Street = new String(); this.Block = new String(); this.ZipCode = new String(); this.City = new String(); this.County = new String(); this.Country = new String(); this.State = new String(); this.FederalTaxID = new String(); this.TaxCode = new String(); this.BuildingFloorRoom = new String(); this.AddressType = new String(); this.AddressName2 = new String(); this.AddressName3 = new String(); this.TypeOfAddress = new String(); this.StreetNo = new String(); this.BPCode = new String(); this.RowNum = new Number(); this.GlobalLocationNumber = new String(); this.Nationality = new String(); this.TaxOffice = new String(); this.GSTIN = new String(); this.GstType = new String(); this.CreateDate = new String(); this.CreateTime = new String(); } AddressName; Street; Block; ZipCode; City; County; Country; State; FederalTaxID; TaxCode; BuildingFloorRoom; AddressType; AddressName2; AddressName3; TypeOfAddress; StreetNo; BPCode; RowNum; GlobalLocationNumber; Nationality; TaxOffice; GSTIN; GstType; CreateDate; CreateTime; } module.exports = BPAddress;