lfk-client-js/dist/models/Address.d.ts

10 lines
194 B
TypeScript
Raw Normal View History

2020-12-22 14:17:25 +00:00
export declare type Address = {
id: number;
description?: string;
address1: string;
address2?: string;
postalcode: string;
city: string;
country: string;
};