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 {
id : number,
code : PaymentCode,
etat : boolean
id: number;
code: PaymentCode;
etat: boolean;
}
export interface IpaginatedResponse<T> {
count : number,
next : string | null,
previous : string | null,
results : T
count: number;
next: string | null;
previous: string | null;
results: T;
}
export interface ImerchandInformations {
marchandId: string;
// biome-ignore lint/style/useNamingConvention: <Api response>
marchand_id: string;
nom: string;
code: 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