sandboxTransferTestClockAdvancePost method

Future<Response<SandboxTransferTestClockAdvanceResponse>> sandboxTransferTestClockAdvancePost({
  1. required SandboxTransferTestClockAdvanceRequest? body,
})

Advance a test clock

Implementation

Future<chopper.Response<SandboxTransferTestClockAdvanceResponse>>
    sandboxTransferTestClockAdvancePost(
        {required SandboxTransferTestClockAdvanceRequest? body}) {
  generatedMapping.putIfAbsent(SandboxTransferTestClockAdvanceResponse,
      () => SandboxTransferTestClockAdvanceResponse.fromJsonFactory);

  return _sandboxTransferTestClockAdvancePost(body: body);
}