catalogMetadataCourseRetrieve2 method

Future<void> catalogMetadataCourseRetrieve2(
  1. String field
)

GET Query course metadata Params: course_id

Parameters:

Implementation

Future<void> catalogMetadataCourseRetrieve2(String field,) async {
  final response = await catalogMetadataCourseRetrieve2WithHttpInfo(field,);
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException(response.statusCode, await _decodeBodyBytes(response));
  }
}