describeOffering method
Get details for an offering.
May throw BadGatewayException.
May throw BadRequestException.
May throw ForbiddenException.
May throw GatewayTimeoutException.
May throw InternalServerErrorException.
May throw NotFoundException.
May throw TooManyRequestsException.
Parameter offeringId :
Unique offering ID, e.g. '87654321'
Implementation
Future<DescribeOfferingResponse> describeOffering({
required String offeringId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/prod/offerings/${Uri.encodeComponent(offeringId)}',
exceptionFnMap: _exceptionFns,
);
return DescribeOfferingResponse.fromJson(response);
}