interface UnleashedSoftwareNodeParameters {
filters?:
| {
customerCode?: string;
customerId?: string;
endDate?: string;
modifiedSince?: string;
orderNumber?: string;
orderStatus?: (
| "Completed"
| "Deleted"
| "Backordered"
| "Parked"
| "Placed"
)[];
startDate?: string;
}
| {
asAtDate?: string;
IsAssembled?: boolean;
modifiedSince?: string;
orderBy?: string;
productId?: string;
warehouseCode?: string;
warehouseName?: string;
};
limit?: number;
operation?: "get"
| "getAll";
productId?: string;
resource?: "salesOrder" | "stockOnHand";
returnAll?: boolean;
}Properties§
§§§§
readonly filters?:
| {
customerCode?: string;
customerId?: string;
endDate?: string;
modifiedSince?: string;
orderNumber?: string;
orderStatus?: (
| "Completed"
| "Deleted"
| "Backordered"
| "Parked"
| "Placed"
)[];
startDate?: string;
}
| {
asAtDate?: string;
IsAssembled?: boolean;
modifiedSince?: string;
orderBy?: string;
productId?: string;
warehouseCode?: string;
warehouseName?: string;
}§
readonly limit?: numberMax number of results to return Default: 100 Type options: {"minValue":1,"maxValue":1000}
readonly operation?: "get" | "getAll"Default: "getAll"
readonly product Id?: string§readonly resource?: "salesOrder" | "stockOnHand"Default: "salesOrder"
readonly return All?: booleanWhether to return all results or only up to a given limit
Default: {}