accumulateLoyaltyPoints abstract method

  1. @POST('/v2/loyalty/accounts/{accountId}/accumulate')
Future<AccumulateLoyaltyPointsResponse> accumulateLoyaltyPoints({
  1. @Body() required AccumulateLoyaltyPointsRequest body,
  2. @Path() required String accountId,
})

Implementation

@POST('/v2/loyalty/accounts/{accountId}/accumulate')
Future<AccumulateLoyaltyPointsResponse> accumulateLoyaltyPoints({
  @Body() required AccumulateLoyaltyPointsRequest body,
  @Path() required String accountId,
});