You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -160,7 +160,7 @@ Name | Type | Description | Notes
160
160
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
@@ -174,10 +174,10 @@ final api = Dub().getLinksApi();
174
174
final String linkId = linkId_example; // String | The id of the link to edit. You may use either `linkId` (obtained via `/links/info` endpoint) or `externalId` prefixed with `ext_`.
175
175
final String workspaceId = ws_cluuwcv0r...; // String | The ID of the workspace.
176
176
final String projectSlug = projectSlug_example; // String | The slug of the project. This field is deprecated – use `workspaceId` instead.
177
-
final EditLinkRequest editLinkRequest = ; // EditLinkRequest |
177
+
final CreateLinkRequest createLinkRequest = ; // CreateLinkRequest |
178
178
179
179
try {
180
-
final response = api.editLink(linkId, workspaceId, projectSlug, editLinkRequest);
180
+
final response = api.editLink(linkId, workspaceId, projectSlug, createLinkRequest);
181
181
print(response);
182
182
} catch on DioException (e) {
183
183
print('Exception when calling LinksApi->editLink: $e\n');
@@ -191,7 +191,7 @@ Name | Type | Description | Notes
191
191
**linkId** | **String**| The id of the link to edit. You may use either `linkId` (obtained via `/links/info` endpoint) or `externalId` prefixed with `ext_`. |
192
192
**workspaceId** | **String**| The ID of the workspace. |
193
193
**projectSlug** | **String**| The slug of the project. This field is deprecated – use `workspaceId` instead. | [optional]
@@ -273,8 +273,8 @@ final String workspaceId = ws_cluuwcv0r...; // String | The ID of the workspace.
273
273
final String projectSlug = projectSlug_example; // String | The slug of the project. This field is deprecated – use `workspaceId` instead.
274
274
final String domain = domain_example; // String | The domain to filter the links by. E.g. `ac.me`. If not provided, all links for the workspace will be returned.
275
275
final String tagId = tagId_example; // String | The tag ID to filter the links by. This field is deprecated – use `tagIds` instead.
276
-
final String tagIds = tagIds_example; // String | The tag IDs to filter the links by.
277
-
final String tagNames = tagNames_example; // String | The unique name of the tags assigned to the short link (case insensitive).
276
+
final List<String> tagIds = ; // List<String> | The tag IDs to filter the links by.
277
+
final List<String> tagNames = ; // List<String> | The unique name of the tags assigned to the short link (case insensitive).
278
278
final String search = search_example; // String | The search term to filter the links by. The search term will be matched against the short link slug and the destination url.
279
279
final String userId = userId_example; // String | The user ID to filter the links by.
280
280
final bool showArchived = true; // bool | Whether to include archived links in the response. Defaults to `false` if not provided.
@@ -298,8 +298,8 @@ Name | Type | Description | Notes
298
298
**projectSlug** | **String**| The slug of the project. This field is deprecated – use `workspaceId` instead. | [optional]
299
299
**domain** | **String**| The domain to filter the links by. E.g. `ac.me`. If not provided, all links for the workspace will be returned. | [optional]
300
300
**tagId** | **String**| The tag ID to filter the links by. This field is deprecated – use `tagIds` instead. | [optional]
301
-
**tagIds** | **String**| The tag IDs to filter the links by. | [optional]
302
-
**tagNames** | **String**| The unique name of the tags assigned to the short link (case insensitive). | [optional]
301
+
**tagIds** | [**List<String>**](String.md)| The tag IDs to filter the links by. | [optional]
302
+
**tagNames** | [**List<String>**](String.md)| The unique name of the tags assigned to the short link (case insensitive). | [optional]
303
303
**search** | **String**| The search term to filter the links by. The search term will be matched against the short link slug and the destination url. | [optional]
304
304
**userId** | **String**| The user ID to filter the links by. | [optional]
305
305
**showArchived** | **bool**| Whether to include archived links in the response. Defaults to `false` if not provided. | [optional][default to false]
@@ -338,13 +338,13 @@ final String workspaceId = ws_cluuwcv0r...; // String | The ID of the workspace.
338
338
final String projectSlug = projectSlug_example; // String | The slug of the project. This field is deprecated – use `workspaceId` instead.
339
339
final String domain = domain_example; // String | The domain to filter the links by. E.g. `ac.me`. If not provided, all links for the workspace will be returned.
340
340
final String tagId = tagId_example; // String | The tag ID to filter the links by. This field is deprecated – use `tagIds` instead.
341
-
final String tagIds = tagIds_example; // String | The tag IDs to filter the links by.
342
-
final String tagNames = tagNames_example; // String | The unique name of the tags assigned to the short link (case insensitive).
341
+
final List<String> tagIds = ; // List<String> | The tag IDs to filter the links by.
342
+
final List<String> tagNames = ; // List<String> | The unique name of the tags assigned to the short link (case insensitive).
343
343
final String search = search_example; // String | The search term to filter the links by. The search term will be matched against the short link slug and the destination url.
344
344
final String userId = userId_example; // String | The user ID to filter the links by.
345
345
final bool showArchived = true; // bool | Whether to include archived links in the response. Defaults to `false` if not provided.
346
346
final bool withTags = true; // bool | Whether to include tags in the response. Defaults to `false` if not provided.
347
-
final String groupBy = groupBy_example; // String | The field to group the links by.
347
+
final List<String> groupBy = ; // List<String> | The field to group the links by.
@@ -362,13 +362,13 @@ Name | Type | Description | Notes
362
362
**projectSlug** | **String**| The slug of the project. This field is deprecated – use `workspaceId` instead. | [optional]
363
363
**domain** | **String**| The domain to filter the links by. E.g. `ac.me`. If not provided, all links for the workspace will be returned. | [optional]
364
364
**tagId** | **String**| The tag ID to filter the links by. This field is deprecated – use `tagIds` instead. | [optional]
365
-
**tagIds** | **String**| The tag IDs to filter the links by. | [optional]
366
-
**tagNames** | **String**| The unique name of the tags assigned to the short link (case insensitive). | [optional]
365
+
**tagIds** | [**List<String>**](String.md)| The tag IDs to filter the links by. | [optional]
366
+
**tagNames** | [**List<String>**](String.md)| The unique name of the tags assigned to the short link (case insensitive). | [optional]
367
367
**search** | **String**| The search term to filter the links by. The search term will be matched against the short link slug and the destination url. | [optional]
368
368
**userId** | **String**| The user ID to filter the links by. | [optional]
369
369
**showArchived** | **bool**| Whether to include archived links in the response. Defaults to `false` if not provided. | [optional][default to false]
370
370
**withTags** | **bool**| Whether to include tags in the response. Defaults to `false` if not provided. | [optional][default to false]
371
-
**groupBy** | **String**| The field to group the links by. | [optional]
371
+
**groupBy** | [**List<String>**](String.md)| The field to group the links by. | [optional]
0 commit comments