instance = $instance; } /** * Initializes a new apple pay card Builder object. */ public static function init(): self { return new self(new ApplePayCard()); } /** * Sets name field. */ public function name(?string $value): self { $this->instance->setName($value); return $this; } /** * Sets last digits field. */ public function lastDigits(?string $value): self { $this->instance->setLastDigits($value); return $this; } /** * Sets type field. */ public function type(?string $value): self { $this->instance->setType($value); return $this; } /** * Sets brand field. */ public function brand(?string $value): self { $this->instance->setBrand($value); return $this; } /** * Sets billing address field. */ public function billingAddress(?Address $value): self { $this->instance->setBillingAddress($value); return $this; } /** * Initializes a new apple pay card object. */ public function build(): ApplePayCard { return CoreHelper::clone($this->instance); } }