UNPKG
node-suitetalk
Version:
latest (0.0.8)
0.0.8
0.0.5
0.0.4
0.0.3
0.0.2
NodeJs Suitetalk wrapper.
github.com/felipechang/node-suitetalk
felipechang/node-suitetalk
node-suitetalk
/
app
/
record
/
lists
/
creditMemoItem.js
16 lines
(11 loc)
•
291 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"use strict"
;
const
Line
=
require
(
"./common/line"
);
class
CreditMemoItem
extends
Line
{
constructor
(
) {
super
();
this
.
_type
=
"tranCust"
;
this
.
_name
=
"CreditMemoItem"
;
this
.
_listName
=
"item"
; } }
module
.
exports
=
CreditMemoItem
;