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