copyWithWrapped method

Implementation

WebApiModulesUtilitiesInventoryPurchaseUtilityUpdateInventoryPurchaseSessionRequest
    copyWithWrapped(
        {Wrapped<String?>? sessionId,
        Wrapped<String?>? inventoryId,
        Wrapped<int?>? quantity}) {
  return WebApiModulesUtilitiesInventoryPurchaseUtilityUpdateInventoryPurchaseSessionRequest(
      sessionId: (sessionId != null ? sessionId.value : this.sessionId),
      inventoryId:
          (inventoryId != null ? inventoryId.value : this.inventoryId),
      quantity: (quantity != null ? quantity.value : this.quantity));
}