instance = $instance; } /** * Initializes a new card verification processor response Builder object. */ public static function init(): self { return new self(new CardVerificationProcessorResponse()); } /** * Sets avs code field. */ public function avsCode(?string $value): self { $this->instance->setAvsCode($value); return $this; } /** * Sets cvv code field. */ public function cvvCode(?string $value): self { $this->instance->setCvvCode($value); return $this; } /** * Initializes a new card verification processor response object. */ public function build(): CardVerificationProcessorResponse { return CoreHelper::clone($this->instance); } }