videoPinWithHttpInfo method
Pin
Pins a track for all users in the call. Required permissions: - PinCallTrack
Note: This method returns the HTTP Response
.
Parameters:
-
String type (required):
-
String id (required):
-
PinRequest pinRequest (required):
Implementation
Future<Response> videoPinWithHttpInfo(
String type,
String id,
PinRequest pinRequest,
) async {
// ignore: prefer_const_declarations
final path = r'/video/call/{type}/{id}/pin'
.replaceAll('{type}', type)
.replaceAll('{id}', id);
// ignore: prefer_final_locals
Object? postBody = pinRequest;
final queryParams = <QueryParam>[];
final headerParams = <String, String>{};
final formParams = <String, String>{};
const contentTypes = <String>['application/json'];
return apiClient.invokeAPI(
path,
'POST',
queryParams,
postBody,
headerParams,
formParams,
contentTypes.isEmpty ? null : contentTypes.first,
);
}