ReplenishmentOrderApiFactory
ReplenishmentOrderApi - factory interface
Signature
ReplenishmentOrderApiFactory: (
configuration?: Configuration,
basePath?: string,
axios?: AxiosInstance
) => {
getReplenishmentOrder(baseSiteId: string,
replenishmentOrderCode: string,
userId: string,
fields?: string,
options?: any): AxiosPromise<ReplenishmentOrder>;
getReplenishmentOrderHistory(baseSiteId: string,
replenishmentOrderCode: string,
userId: string,
currentPage?: number,
fields?: string,
pageSize?: number,
sort?: string,
options?: any): AxiosPromise<OrderHistoryList>;
getReplenishmentOrders(baseSiteId: string,
userId: string,
currentPage?: number,
fields?: string,
pageSize?: number,
sort?: string,
options?: any): AxiosPromise<ReplenishmentOrderList>;
updateReplenishmentOrder(baseSiteId: string,
replenishmentOrderCode: string,
userId: string,
fields?: string,
options?: any): AxiosPromise<ReplenishmentOrder>;
}Parameters
| Name | Required | Type | Description |
|---|---|---|---|
configuration | Optional | Configuration | |
basePath | Optional | string | |
axios | Optional | AxiosInstance |
Referenced Types
AxiosInstanceAxiosPromise- ReplenishmentOrder
- OrderHistoryList
- ReplenishmentOrderList