*/ public function toArray(): array { return [ 'price_data' => [ 'currency' => $this->currency->value, 'unit_amount' => $this->price, 'product_data' => [ 'name' => $this->productName, 'description' => $this->productDescription, ], ], 'quantity' => $this->quantity, ]; } }