ownershipTransferForAssets abstract method

  1. @POST("${Api.ownershipTransferForAssets}/{type}/carts/{cartId}")
Future<OwnershipChangeModel> ownershipTransferForAssets({
  1. @Body() required CollectStockSubmitRequest body,
  2. @Header("Content-Type") String contentType = "application/json",
  3. @Header("X-User-Token") String xUserToken = "",
  4. @Path("type") required String type,
  5. @Path("cartId") required String cartId,
})

Implementation

@POST("${Api.ownershipTransferForAssets}/{type}/carts/{cartId}")
Future<OwnershipChangeModel> ownershipTransferForAssets(
    {@Body() required CollectStockSubmitRequest body,
    @Header("Content-Type") String contentType = "application/json",
    @Header("X-User-Token") String xUserToken = "",
    @Path("type") required String type,
    @Path("cartId") required String cartId});