depositSwitchCreatePost method

Future<Response<DepositSwitchCreateResponse>> depositSwitchCreatePost({
  1. required DepositSwitchCreateRequest? body,
})

Create a deposit switch

Implementation

Future<chopper.Response<DepositSwitchCreateResponse>> depositSwitchCreatePost(
    {required DepositSwitchCreateRequest? body}) {
  generatedMapping.putIfAbsent(DepositSwitchCreateResponse,
      () => DepositSwitchCreateResponse.fromJsonFactory);

  return _depositSwitchCreatePost(body: body);
}