apiV1AlevelWebhookCreate method
API point process webhook request from Stripe once an user subscribed for A-level course
Implementation
Future<void> apiV1AlevelWebhookCreate() async {
final response = await apiV1AlevelWebhookCreateWithHttpInfo();
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}