getELoadTranactionsAcknowledgement abstract method

  1. @PUT.new("${Api.eLoadTranactionsAcknowledgement}/types/{types}/id/{id}")
Future<EloadTranactionsAcknowledgementModel> getELoadTranactionsAcknowledgement({
  1. @Header.new("content-type") String contentType = "application/json",
  2. @Body.new() required dynamic body,
  3. @Path.new("types") required String types,
  4. @Path.new("id") required String id,
})

Implementation

@PUT("${Api.eLoadTranactionsAcknowledgement}/types/{types}/id/{id}")
Future<EloadTranactionsAcknowledgementModel>
    getELoadTranactionsAcknowledgement({
  @Header("content-type") String contentType = "application/json",
  @Body() required dynamic body,
  @Path("types") required String types,
  @Path("id") required String id,
});