24 lines
526 B
TypeScript
24 lines
526 B
TypeScript
export type Address = {
|
|
id: number
|
|
'@id'?: string
|
|
label: string | null
|
|
street: string | null
|
|
streetComplement: string | null
|
|
postalCode: string | null
|
|
city: string | null
|
|
country: string
|
|
client?: string | null
|
|
prospect?: string | null
|
|
}
|
|
|
|
export type AddressWrite = {
|
|
label: string | null
|
|
street: string | null
|
|
streetComplement: string | null
|
|
postalCode: string | null
|
|
city: string | null
|
|
country: string
|
|
client?: string | null
|
|
prospect?: string | null
|
|
}
|