FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
square
/
square
/
src
/
Models
/
Builders
Edit File: V1OrderBuilder.php
<?php declare(strict_types=1); namespace Square\Models\Builders; use Core\Utils\CoreHelper; use Square\Models\Address; use Square\Models\V1Money; use Square\Models\V1Order; use Square\Models\V1Tender; /** * Builder for model V1Order * * @see V1Order */ class V1OrderBuilder { /** * @var V1Order */ private $instance; private function __construct(V1Order $instance) { $this->instance = $instance; } /** * Initializes a new v1 order Builder object. */ public static function init(): self { return new self(new V1Order()); } /** * Sets errors field. */ public function errors(?array $value): self { $this->instance->setErrors($value); return $this; } /** * Unsets errors field. */ public function unsetErrors(): self { $this->instance->unsetErrors(); return $this; } /** * Sets id field. */ public function id(?string $value): self { $this->instance->setId($value); return $this; } /** * Sets buyer email field. */ public function buyerEmail(?string $value): self { $this->instance->setBuyerEmail($value); return $this; } /** * Unsets buyer email field. */ public function unsetBuyerEmail(): self { $this->instance->unsetBuyerEmail(); return $this; } /** * Sets recipient name field. */ public function recipientName(?string $value): self { $this->instance->setRecipientName($value); return $this; } /** * Unsets recipient name field. */ public function unsetRecipientName(): self { $this->instance->unsetRecipientName(); return $this; } /** * Sets recipient phone number field. */ public function recipientPhoneNumber(?string $value): self { $this->instance->setRecipientPhoneNumber($value); return $this; } /** * Unsets recipient phone number field. */ public function unsetRecipientPhoneNumber(): self { $this->instance->unsetRecipientPhoneNumber(); return $this; } /** * Sets state field. */ public function state(?string $value): self { $this->instance->setState($value); return $this; } /** * Sets shipping address field. */ public function shippingAddress(?Address $value): self { $this->instance->setShippingAddress($value); return $this; } /** * Sets subtotal money field. */ public function subtotalMoney(?V1Money $value): self { $this->instance->setSubtotalMoney($value); return $this; } /** * Sets total shipping money field. */ public function totalShippingMoney(?V1Money $value): self { $this->instance->setTotalShippingMoney($value); return $this; } /** * Sets total tax money field. */ public function totalTaxMoney(?V1Money $value): self { $this->instance->setTotalTaxMoney($value); return $this; } /** * Sets total price money field. */ public function totalPriceMoney(?V1Money $value): self { $this->instance->setTotalPriceMoney($value); return $this; } /** * Sets total discount money field. */ public function totalDiscountMoney(?V1Money $value): self { $this->instance->setTotalDiscountMoney($value); return $this; } /** * Sets created at field. */ public function createdAt(?string $value): self { $this->instance->setCreatedAt($value); return $this; } /** * Sets updated at field. */ public function updatedAt(?string $value): self { $this->instance->setUpdatedAt($value); return $this; } /** * Sets expires at field. */ public function expiresAt(?string $value): self { $this->instance->setExpiresAt($value); return $this; } /** * Unsets expires at field. */ public function unsetExpiresAt(): self { $this->instance->unsetExpiresAt(); return $this; } /** * Sets payment id field. */ public function paymentId(?string $value): self { $this->instance->setPaymentId($value); return $this; } /** * Unsets payment id field. */ public function unsetPaymentId(): self { $this->instance->unsetPaymentId(); return $this; } /** * Sets buyer note field. */ public function buyerNote(?string $value): self { $this->instance->setBuyerNote($value); return $this; } /** * Unsets buyer note field. */ public function unsetBuyerNote(): self { $this->instance->unsetBuyerNote(); return $this; } /** * Sets completed note field. */ public function completedNote(?string $value): self { $this->instance->setCompletedNote($value); return $this; } /** * Unsets completed note field. */ public function unsetCompletedNote(): self { $this->instance->unsetCompletedNote(); return $this; } /** * Sets refunded note field. */ public function refundedNote(?string $value): self { $this->instance->setRefundedNote($value); return $this; } /** * Unsets refunded note field. */ public function unsetRefundedNote(): self { $this->instance->unsetRefundedNote(); return $this; } /** * Sets canceled note field. */ public function canceledNote(?string $value): self { $this->instance->setCanceledNote($value); return $this; } /** * Unsets canceled note field. */ public function unsetCanceledNote(): self { $this->instance->unsetCanceledNote(); return $this; } /** * Sets tender field. */ public function tender(?V1Tender $value): self { $this->instance->setTender($value); return $this; } /** * Sets order history field. */ public function orderHistory(?array $value): self { $this->instance->setOrderHistory($value); return $this; } /** * Unsets order history field. */ public function unsetOrderHistory(): self { $this->instance->unsetOrderHistory(); return $this; } /** * Sets promo code field. */ public function promoCode(?string $value): self { $this->instance->setPromoCode($value); return $this; } /** * Unsets promo code field. */ public function unsetPromoCode(): self { $this->instance->unsetPromoCode(); return $this; } /** * Sets btc receive address field. */ public function btcReceiveAddress(?string $value): self { $this->instance->setBtcReceiveAddress($value); return $this; } /** * Unsets btc receive address field. */ public function unsetBtcReceiveAddress(): self { $this->instance->unsetBtcReceiveAddress(); return $this; } /** * Sets btc price satoshi field. */ public function btcPriceSatoshi(?float $value): self { $this->instance->setBtcPriceSatoshi($value); return $this; } /** * Unsets btc price satoshi field. */ public function unsetBtcPriceSatoshi(): self { $this->instance->unsetBtcPriceSatoshi(); return $this; } /** * Initializes a new v1 order object. */ public function build(): V1Order { return CoreHelper::clone($this->instance); } }
Save
Back