File "Product.js"

Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/woocommerce-paypal-payments/modules/ppcp-button/resources/js/modules/Entity/Product.js
File size: 321 bytes
MIME-type: text/plain
Charset: utf-8

class Product {
	constructor( id, quantity, variations, extra ) {
		this.id = id;
		this.quantity = quantity;
		this.variations = variations;
		this.extra = extra;
	}
	data() {
		return {
			id: this.id,
			quantity: this.quantity,
			variations: this.variations,
			extra: this.extra,
		};
	}
}

export default Product;