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