receiptGenerate abstract method
- @GET.new("${Api.receiptGenerate}/{transactionId}")
Future<InvoiceGenerateModel>
receiptGenerate(
{ - @Header.new("X-User-Name") String xUserName = "",
- @Header.new("X-User-Id") String xUserId = "",
- @Header.new("X-Channel") String? xChannel = "",
- @Header.new("content-type") String contentType = "application/json",
- @Path.new("transactionId") required String transactionId,
})
Implementation
@GET("${Api.receiptGenerate}/{transactionId}")
Future<InvoiceGenerateModel> receiptGenerate({
@Header("X-User-Name") String xUserName = "",
@Header("X-User-Id") String xUserId = "",
@Header("X-Channel") String? xChannel = "",
@Header("content-type") String contentType = "application/json",
@Path("transactionId") required String transactionId,
});