catalogMetadataCoursePublicRetrieve2 method

Future<void> catalogMetadataCoursePublicRetrieve2(
  1. String field
)

GET Query public course metadata Params: course_id

Parameters:

Implementation

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