videoPinWithHttpInfo method

Future<Response> videoPinWithHttpInfo(
  1. String type,
  2. String id,
  3. PinRequest pinRequest
)

Pin

Pins a track for all users in the call. Required permissions: - PinCallTrack

Note: This method returns the HTTP Response.

Parameters:

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,
  );
}