netsuite-companion
Version:
NetSuite account customizations scaffold
29 lines (24 loc) • 617 B
TypeScript
interface Attributes {
scriptid: string;
}
interface TextField {
_text: string;
}
interface Customrecordcustomfield {
_attributes: Attributes;
fieldtype: TextField;
label: TextField;
}
interface Customrecordcustomfields {
customrecordcustomfield: Customrecordcustomfield[] | Customrecordcustomfield;
}
interface Customrecordtype {
_attributes: Attributes;
fieldtype: TextField;
label: TextField;
recordname: TextField;
customrecordcustomfields: Customrecordcustomfields;
}
export interface IXmlField {
[key: string]: Customrecordtype;
}