You are here

public function WebformSubmissionAjaxResponse::setWebformSubmission in Webform 8.5

Same name and namespace in other branches
  1. 6.x src/Ajax/WebformSubmissionAjaxResponse.php \Drupal\webform\Ajax\WebformSubmissionAjaxResponse::setWebformSubmission()

Sets the webform submission of this response.

Parameters

\Drupal\webform\WebformSubmissionInterface $webform_submission: The webform submission of this ajax request.

File

src/Ajax/WebformSubmissionAjaxResponse.php, line 30

Class

WebformSubmissionAjaxResponse
Custom JSON response object for an ajax webform submission response.

Namespace

Drupal\webform\Ajax

Code

public function setWebformSubmission(WebformSubmissionInterface $webform_submission) {
  $this->submission = $webform_submission;
}