You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
692 B
TypeScript
25 lines
692 B
TypeScript
import { Response } from "./response";
|
|
|
|
export class GetItemHistoryList extends Response {
|
|
public OU_NAME: string;
|
|
public REVISION_NUM: number;
|
|
public CREATION_DATE: string;
|
|
public BUYER: string;
|
|
public ITEM_ID: number;
|
|
public BONUS_QUANTITY: number;
|
|
public DISCOUNT_PERCENTAGE: number;
|
|
public CLOSED_CODE: string;
|
|
public ROW_NUM: number;
|
|
public FROM_ROW_NUM: number;
|
|
public PO_NUMBER: string;
|
|
public SUPPLIER: string;
|
|
public UOM: string;
|
|
public QUANTITY_ORDERED: number;
|
|
public QUANTITY_RECEIVED: number;
|
|
public PURCHASE_PRICE: number;
|
|
public NET_PRICE: number;
|
|
public BALANCE_QUANTITY: number;
|
|
public NO_OF_ROWS: number;
|
|
public TO_ROW_NUM: number;
|
|
}
|