NetSuite SubRecord field type (reference to a subrecord object, usually described as 'summary' in the records browser. Pass in the (TypeScript) type that matches the subrecord this property points to
Decorator for subrecord fields with the subrecord shape represented by T (which defines the properties you want on the subrecord)
Constructor for the type that has the properties you want from the subrecord. e.g. AssemblyBuild.InventoryDetail
import { InventoryDetail } from './DataAceess/InventoryDetail'class AssemblyBuild { @FieldType.subrecord(InventoryDetail) inventorydetail: InventoryDetail} Copy
import { InventoryDetail } from './DataAceess/InventoryDetail'class AssemblyBuild { @FieldType.subrecord(InventoryDetail) inventorydetail: InventoryDetail}
NetSuite SubRecord field type (reference to a subrecord object, usually described as 'summary' in the records browser. Pass in the (TypeScript) type that matches the subrecord this property points to