Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions src/Models/Statistics/Order.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ class Order implements HelloassoObject
private string $organizationSlug;
private MetaModel $meta;

private ?int $checkoutIntentId = null;

public function getPayer(): PayerLight
{
return $this->payer;
Expand Down Expand Up @@ -173,4 +175,16 @@ public function setMeta(MetaModel $meta): self

return $this;
}

public function getCheckoutIntentId(): ?int
{
return $this->checkoutIntentId;
}

public function setCheckoutIntentId(?int $checkoutIntentId): self
{
$this->checkoutIntentId = $checkoutIntentId;

return $this;
}
}
14 changes: 14 additions & 0 deletions src/Models/Statistics/OrderLight.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ class OrderLight implements HelloassoObject
private FormType $formType;
private MetaModel $meta;

private ?int $checkoutIntentId = null;

public function getId(): int
{
return $this->id;
Expand Down Expand Up @@ -103,4 +105,16 @@ public function setMeta(MetaModel $meta): self

return $this;
}

public function getCheckoutIntentId(): ?int
{
return $this->checkoutIntentId;
}

public function setCheckoutIntentId(?int $checkoutIntentId): self
{
$this->checkoutIntentId = $checkoutIntentId;

return $this;
}
}