pollIpAuthorization abstract method

  1. @GET.new('/auth/ip-authorization/poll')
Future<IpAuthorizationPollResponse> pollIpAuthorization({
  1. @Query.new('ticket') required String ticket,
})

Poll IP authorization.

Poll the status of an IP authorization request. Use the ticket parameter to check if verification has been completed.

Implementation

@GET('/auth/ip-authorization/poll')
Future<IpAuthorizationPollResponse> pollIpAuthorization({
  @Query('ticket') required String ticket,
});