FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
square
/
square
/
src
/
Models
/
Builders
Edit File: RefundBuilder.php
<?php declare(strict_types=1); namespace Square\Models\Builders; use Core\Utils\CoreHelper; use Square\Models\Money; use Square\Models\Refund; /** * Builder for model Refund * * @see Refund */ class RefundBuilder { /** * @var Refund */ private $instance; private function __construct(Refund $instance) { $this->instance = $instance; } /** * Initializes a new refund Builder object. */ public static function init( string $id, string $locationId, string $tenderId, string $reason, Money $amountMoney, string $status ): self { return new self(new Refund($id, $locationId, $tenderId, $reason, $amountMoney, $status)); } /** * Sets transaction id field. */ public function transactionId(?string $value): self { $this->instance->setTransactionId($value); return $this; } /** * Unsets transaction id field. */ public function unsetTransactionId(): self { $this->instance->unsetTransactionId(); return $this; } /** * Sets created at field. */ public function createdAt(?string $value): self { $this->instance->setCreatedAt($value); return $this; } /** * Sets processing fee money field. */ public function processingFeeMoney(?Money $value): self { $this->instance->setProcessingFeeMoney($value); return $this; } /** * Sets additional recipients field. */ public function additionalRecipients(?array $value): self { $this->instance->setAdditionalRecipients($value); return $this; } /** * Unsets additional recipients field. */ public function unsetAdditionalRecipients(): self { $this->instance->unsetAdditionalRecipients(); return $this; } /** * Initializes a new refund object. */ public function build(): Refund { return CoreHelper::clone($this->instance); } }
Save
Back