@@ -44,6 +44,9 @@ func NewListItemService(opts ...option.RequestOption) (r *ListItemService) {
4444//
4545// This operation is asynchronous. To get current the operation status, invoke the
4646// `Get bulk operation status` endpoint with the returned `operation_id`.
47+ //
48+ // There is a limit of 1 pending bulk operation per account. If an outstanding bulk
49+ // operation is in progress, the request will be rejected.
4750func (r * ListItemService ) New (ctx context.Context , listID string , params ListItemNewParams , opts ... option.RequestOption ) (res * ListItemNewResponse , err error ) {
4851 var env ListItemNewResponseEnvelope
4952 opts = slices .Concat (r .Options , opts )
@@ -69,6 +72,9 @@ func (r *ListItemService) New(ctx context.Context, listID string, params ListIte
6972//
7073// This operation is asynchronous. To get current the operation status, invoke the
7174// `Get bulk operation status` endpoint with the returned `operation_id`.
75+ //
76+ // There is a limit of 1 pending bulk operation per account. If an outstanding bulk
77+ // operation is in progress, the request will be rejected.
7278func (r * ListItemService ) Update (ctx context.Context , listID string , params ListItemUpdateParams , opts ... option.RequestOption ) (res * ListItemUpdateResponse , err error ) {
7379 var env ListItemUpdateResponseEnvelope
7480 opts = slices .Concat (r .Options , opts )
@@ -124,6 +130,9 @@ func (r *ListItemService) ListAutoPaging(ctx context.Context, listID string, par
124130//
125131// This operation is asynchronous. To get current the operation status, invoke the
126132// `Get bulk operation status` endpoint with the returned `operation_id`.
133+ //
134+ // There is a limit of 1 pending bulk operation per account. If an outstanding bulk
135+ // operation is in progress, the request will be rejected.
127136func (r * ListItemService ) Delete (ctx context.Context , listID string , params ListItemDeleteParams , opts ... option.RequestOption ) (res * ListItemDeleteResponse , err error ) {
128137 var env ListItemDeleteResponseEnvelope
129138 opts = slices .Concat (r .Options , opts )
0 commit comments