Home > @vsf-enterprise/sap-commerce-webservices-sdk > OrderFormsControllerApiAxiosParamCreator

OrderFormsControllerApiAxiosParamCreator variable

OrderFormsControllerApi - axios parameter creator

Signature:

OrderFormsControllerApiAxiosParamCreator: (configuration?: Configuration) => {
    createOrderFormUsingPOST: (orderFormWsDTO: OrderForm, options?: any) => Promise<RequestArgs>;
    deleteOrderFormUsingDELETE: (orderFormCode: string, options?: any) => Promise<RequestArgs>;
    getOrderFormForCodeUsingGET: (orderFormCode: string, fields?: string, options?: any) => Promise<RequestArgs>;
    getOrderFormsForCurrentUserUsingGET: (fields?: string, options?: any) => Promise<RequestArgs>;
    orderFormUsingPOST: (baseSiteId: string, orderFormCode: string, fields?: string, options?: any) => Promise<RequestArgs>;
    updateOrderFormUsingPUT: (orderFormCode: string, orderFormWsDTO: OrderForm, fields?: string, options?: any) => Promise<RequestArgs>;
}