File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ export default class ContactListsBaseAPI {
11
11
12
12
public get : ContactListsApi [ "get" ] ;
13
13
14
- public getAll : ContactListsApi [ "getAll " ] ;
14
+ public getList : ContactListsApi [ "getList " ] ;
15
15
16
16
public update : ContactListsApi [ "update" ] ;
17
17
@@ -23,7 +23,7 @@ export default class ContactListsBaseAPI {
23
23
const contactLists = new ContactListsApi ( this . client , this . accountId ) ;
24
24
this . create = contactLists . create . bind ( contactLists ) ;
25
25
this . get = contactLists . get . bind ( contactLists ) ;
26
- this . getAll = contactLists . getAll . bind ( contactLists ) ;
26
+ this . getList = contactLists . getList . bind ( contactLists ) ;
27
27
this . update = contactLists . update . bind ( contactLists ) ;
28
28
this . delete = contactLists . delete . bind ( contactLists ) ;
29
29
}
You can’t perform that action at this time.
0 commit comments