10 lines
205 B
TypeScript
10 lines
205 B
TypeScript
export type CreateSelfServiceCitizenRunner = {
|
|
email?: string;
|
|
firstname: string;
|
|
middlename?: string;
|
|
lastname: string;
|
|
phone?: string;
|
|
address?: any;
|
|
created_via?: string;
|
|
};
|