mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 12:25:15 +08:00
18 lines
No EOL
333 B
JavaScript
18 lines
No EOL
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; |