17 lines
300 B
TypeScript
17 lines
300 B
TypeScript
/**
|
|
* Generated by orval v8.8.0 🍺
|
|
* Do not edit manually.
|
|
* OpenAPI spec version: 0.0.0
|
|
*/
|
|
|
|
export interface Contact {
|
|
email: string;
|
|
first_name?: string;
|
|
last_name?: string;
|
|
phone_number?: string;
|
|
city?: string;
|
|
street?: string;
|
|
postal_code?: string;
|
|
country_code?: string;
|
|
}
|