@@ -28,9 +28,9 @@ type ListsApiService service
28
28
29
29
/*
30
30
ListsApiService Add existing contacts to a list
31
- * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
32
- * @param listId Id of the list
33
- * @param contactEmails Emails addresses OR IDs of the contacts
31
+ - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
32
+ - @param listId Id of the list
33
+ - @param contactEmails Emails addresses OR IDs of the contacts
34
34
35
35
@return PostContactInfo
36
36
*/
@@ -167,8 +167,8 @@ func (a *ListsApiService) AddContactToList(ctx context.Context, listId int64, co
167
167
168
168
/*
169
169
ListsApiService Create a list
170
- * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
171
- * @param createList Values to create a list
170
+ - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
171
+ - @param createList Values to create a list
172
172
173
173
@return CreateModel
174
174
*/
@@ -293,10 +293,8 @@ func (a *ListsApiService) CreateList(ctx context.Context, createList CreateList)
293
293
294
294
/*
295
295
ListsApiService Delete a list
296
- * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
297
- * @param listId Id of the list
298
-
299
-
296
+ - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
297
+ - @param listId Id of the list
300
298
*/
301
299
func (a * ListsApiService ) DeleteList (ctx context.Context , listId int64 ) (* http.Response , error ) {
302
300
var (
@@ -713,8 +711,8 @@ func (a *ListsApiService) GetFolderLists(ctx context.Context, folderId int64, lo
713
711
714
712
/*
715
713
ListsApiService Get a list's details
716
- * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
717
- * @param listId Id of the list
714
+ - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
715
+ - @param listId Id of the list
718
716
719
717
@return GetExtendedList
720
718
*/
@@ -986,9 +984,9 @@ func (a *ListsApiService) GetLists(ctx context.Context, localVarOptionals *GetLi
986
984
987
985
/*
988
986
ListsApiService Delete a contact from a list
989
- * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
990
- * @param listId Id of the list
991
- * @param contactEmails Emails addresses OR IDs of the contacts
987
+ - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
988
+ - @param listId Id of the list
989
+ - @param contactEmails Emails addresses OR IDs of the contacts
992
990
993
991
@return PostContactInfo
994
992
*/
@@ -1125,11 +1123,9 @@ func (a *ListsApiService) RemoveContactFromList(ctx context.Context, listId int6
1125
1123
1126
1124
/*
1127
1125
ListsApiService Update a list
1128
- * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
1129
- * @param listId Id of the list
1130
- * @param updateList Values to update a list
1131
-
1132
-
1126
+ - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
1127
+ - @param listId Id of the list
1128
+ - @param updateList Values to update a list
1133
1129
*/
1134
1130
func (a * ListsApiService ) UpdateList (ctx context.Context , listId int64 , updateList UpdateList ) (* http.Response , error ) {
1135
1131
var (
0 commit comments