instance = $instance; } /** * Initializes a new eps payment object Builder object. */ public static function init(): self { return new self(new EpsPaymentObject()); } /** * Sets name field. */ public function name(?string $value): self { $this->instance->setName($value); return $this; } /** * Sets country code field. */ public function countryCode(?string $value): self { $this->instance->setCountryCode($value); return $this; } /** * Sets bic field. */ public function bic(?string $value): self { $this->instance->setBic($value); return $this; } /** * Initializes a new eps payment object object. */ public function build(): EpsPaymentObject { return CoreHelper::clone($this->instance); } }