You are here

public function ResourceTypeField::getInternalName in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/jsonapi/src/ResourceType/ResourceTypeField.php \Drupal\jsonapi\ResourceType\ResourceTypeField::getInternalName()
  2. 10 core/modules/jsonapi/src/ResourceType/ResourceTypeField.php \Drupal\jsonapi\ResourceType\ResourceTypeField::getInternalName()

Gets the internal name of the field.

Return value

string The internal name of the field.

File

core/modules/jsonapi/src/ResourceType/ResourceTypeField.php, line 71

Class

ResourceTypeField
Abstract value object containing all metadata for a JSON:API resource field.

Namespace

Drupal\jsonapi\ResourceType

Code

public function getInternalName() {
  return $this->internalName;
}