processorIdentityGetPost abstract method

  1. @Post.new(path: '/processor/identity/get')
Future<Response<ProcessorIdentityGetResponse>> processorIdentityGetPost({
  1. @Body.new() required ProcessorIdentityGetRequest? body,
})

Retrieve Identity data

Implementation

@Post(path: '/processor/identity/get')
Future<chopper.Response<ProcessorIdentityGetResponse>>
    processorIdentityGetPost(
        {@Body() required ProcessorIdentityGetRequest? body});