Commit 7539ebfc by G

merchandId -> merchand_id

parent a17bd265
export type PaymentCode = "OM" | "FLOOZ" | "MTN" | "WAVE" | "CB" export type PaymentCode = "OM" | "FLOOZ" | "MTN" | "WAVE" | "CB";
export interface IpaymentType { export interface IpaymentType {
id : number, id: number;
code : PaymentCode, code: PaymentCode;
etat : boolean etat: boolean;
} }
export interface IpaginatedResponse<T> { export interface IpaginatedResponse<T> {
count : number, count: number;
next : string | null, next: string | null;
previous : string | null, previous: string | null;
results : T results: T;
} }
export interface ImerchandInformations { export interface ImerchandInformations {
marchandId: string; // biome-ignore lint/style/useNamingConvention: <Api response>
marchand_id: string;
nom: string; nom: string;
code: string; code: string;
adresse: string; adresse: string;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment