mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 18:16:38 +08:00
18 lines
333 B
JavaScript
18 lines
333 B
JavaScript
|
class Product {
|
||
|
|
||
|
constructor(id, quantity, variations) {
|
||
|
this.id = id;
|
||
|
this.quantity = quantity;
|
||
|
this.variations = variations;
|
||
|
}
|
||
|
|
||
|
data() {
|
||
|
return {
|
||
|
id:this.id,
|
||
|
quantity:this.quantity,
|
||
|
variations:this.variations
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default Product;
|