getTaxInheritance method

Future<GetTaxInheritanceResponse> getTaxInheritance()

The get account tax inheritance status.

May throw InternalServerException. May throw ResourceNotFoundException. May throw ValidationException.

Implementation

Future<GetTaxInheritanceResponse> getTaxInheritance() async {
  final response = await _protocol.send(
    payload: null,
    method: 'POST',
    requestUri: '/GetTaxInheritance',
    exceptionFnMap: _exceptionFns,
  );
  return GetTaxInheritanceResponse.fromJson(response);
}