myinvois-sdk
Version:
TypeScript SDK for interacting with the Malaysia e-invoicing system (MyInvois) API
17 lines (16 loc) • 402 B
TypeScript
import { BaseModel } from './base-model';
/**
* Represents a price for an item
*/
export declare class Price extends BaseModel {
private _priceAmount;
private _currencyID;
get priceAmount(): number;
set priceAmount(value: number);
get currencyID(): string;
set currencyID(value: string);
/**
* Converts the price to a JSON representation
*/
toJSON(): any;
}