UNPKG
aade-mydata-client
Version:
latest (1.2.3)
1.2.3
1.2.2
1.2.1
1.2.0
1.1.4
1.1.3
1.1.2
1.1.1
Node.js Client for AADE myDATA (my Digital Accounting and Tax Application) REST API
aade-mydata-client
/
lib
/
models
/
Address.d.ts
12 lines
(11 loc)
•
277 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
export
declare
class
AddressType
{
/** Οδός */
street?:
string
;
/** Αριθμός */
number?:
string
;
/** Ταχυδρομικός Κώδικας */
postalCode:
string
;
/** Χώρα */
city:
string
;
constructor
(props?: AddressType); }