Commit 4a4f14e8 by G

request to retrieve the list of payment types supported by the app

parent 3c0d6999
import { IauthenticationData } from "@/contexts/Types";
import axiosRequest from "../axios-request";
import { IpaginatedResponse, IpaymentType } from "./Types";
const getPaymentTypes = async () => {
return await axiosRequest<IpaginatedResponse<IpaymentType[]>>({
url: "/typepaiement/",
method: "GET",
});
};
export default getPaymentTypes;
\ No newline at end of file
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