diff --git a/src/utils/requests/Types.ts b/src/utils/requests/Types.ts index 26be5a4..db015d9 100644 --- a/src/utils/requests/Types.ts +++ b/src/utils/requests/Types.ts @@ -12,4 +12,24 @@ export interface IpaginatedResponse { next : string | null, previous : string | null, results : T -} \ No newline at end of file +} + + +export interface ImerchandInformations { + marchandId: string; + nom: string; + code: string; + adresse: string; + urlSuccess: string; + urlEchec: string; + entreprise: number; + user: number; +} + +export interface IuserInformations { + username: string; + email: string; + firstName: string; + lastName: string; + marchand: ImerchandInformations; +}