Skip to content

Commit 65524a8

Browse files
authored
Merge pull request #112 from aligent/fix/incorrect-attribute-type-on-price-rule
Amount should be float, not int
2 parents 855e294 + 6ad3148 commit 65524a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/BigCommerce/ResourceModels/Catalog/Product/ProductBulkPricingRule.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ class ProductBulkPricingRule extends ResourceModel
1414
public int $quantity_min;
1515
public int $quantity_max;
1616
public string $type;
17-
public int $amount;
17+
public float $amount;
1818
}

0 commit comments

Comments
 (0)