Title: GenerativeAiResult::fromArray
Published: May 20, 2026

---

# GenerativeAiResult::fromArray( $array )

## In this article

 * [Source](https://developer.wordpress.org/reference/classes/wordpress-aiclient-results-dto-generativeairesult/fromarray/?output_format=md#source)
 * [Related](https://developer.wordpress.org/reference/classes/wordpress-aiclient-results-dto-generativeairesult/fromarray/?output_format=md#related)
 * [Changelog](https://developer.wordpress.org/reference/classes/wordpress-aiclient-results-dto-generativeairesult/fromarray/?output_format=md#changelog)

[ Back to top](https://developer.wordpress.org/reference/classes/wordpress-aiclient-results-dto-generativeairesult/fromarray/?output_format=md#wp--skip-link--target)

{@inheritDoc}

## 󠀁[Source](https://developer.wordpress.org/reference/classes/wordpress-aiclient-results-dto-generativeairesult/fromarray/?output_format=md#source)󠁿

    ```php
    public static function fromArray(array $array): self
    {
        static::validateFromArrayData($array, [self::KEY_ID, self::KEY_CANDIDATES, self::KEY_TOKEN_USAGE, self::KEY_PROVIDER_METADATA, self::KEY_MODEL_METADATA]);
        $candidates = array_map(fn(array $candidateData) => \WordPress\AiClient\Results\DTO\Candidate::fromArray($candidateData), $array[self::KEY_CANDIDATES]);
        return new self($array[self::KEY_ID], $candidates, \WordPress\AiClient\Results\DTO\TokenUsage::fromArray($array[self::KEY_TOKEN_USAGE]), ProviderMetadata::fromArray($array[self::KEY_PROVIDER_METADATA]), ModelMetadata::fromArray($array[self::KEY_MODEL_METADATA]), $array[self::KEY_ADDITIONAL_DATA] ?? []);
    }
    ```

[View all references](https://developer.wordpress.org/reference/files/wp-includes/php-ai-client/src/results/dto/generativeairesult.php/)
[View on Trac](https://core.trac.wordpress.org/browser/tags/7.0/src/wp-includes/php-ai-client/src/Results/DTO/GenerativeAiResult.php#L395)
[View on GitHub](https://github.com/WordPress/wordpress-develop/blob/7.0/src/wp-includes/php-ai-client/src/Results/DTO/GenerativeAiResult.php#L395-L400)

## 󠀁[Related](https://developer.wordpress.org/reference/classes/wordpress-aiclient-results-dto-generativeairesult/fromarray/?output_format=md#related)󠁿

| Uses | Description | 
| [TokenUsage::fromArray()](https://developer.wordpress.org/reference/classes/wordpress-aiclient-results-dto-tokenusage/fromarray/)`wp-includes/php-ai-client/src/Results/DTO/TokenUsage.php` |

{@inheritDoc}

  | 
| [GenerativeAiResult::__construct()](https://developer.wordpress.org/reference/classes/wordpress-aiclient-results-dto-generativeairesult/__construct/)`wp-includes/php-ai-client/src/Results/DTO/GenerativeAiResult.php` |

Constructor.

  | 
| [Candidate::fromArray()](https://developer.wordpress.org/reference/classes/wordpress-aiclient-results-dto-candidate/fromarray/)`wp-includes/php-ai-client/src/Results/DTO/Candidate.php` |

{@inheritDoc}

  | 
| [ModelMetadata::fromArray()](https://developer.wordpress.org/reference/classes/wordpress-aiclient-providers-models-dto-modelmetadata/fromarray/)`wp-includes/php-ai-client/src/Providers/Models/DTO/ModelMetadata.php` |

{@inheritDoc}

  | 
| [ProviderMetadata::fromArray()](https://developer.wordpress.org/reference/classes/wordpress-aiclient-providers-dto-providermetadata/fromarray/)`wp-includes/php-ai-client/src/Providers/DTO/ProviderMetadata.php` |

{@inheritDoc}

  |

| Used by | Description | 
| [GenerativeAiOperation::fromArray()](https://developer.wordpress.org/reference/classes/wordpress-aiclient-operations-dto-generativeaioperation/fromarray/)`wp-includes/php-ai-client/src/Operations/DTO/GenerativeAiOperation.php` |

{@inheritDoc}

  |

## 󠀁[Changelog](https://developer.wordpress.org/reference/classes/wordpress-aiclient-results-dto-generativeairesult/fromarray/?output_format=md#changelog)󠁿

| Version | Description | 
| [0.1.0](https://developer.wordpress.org/reference/since/0.1.0/) | Introduced. |

## User Contributed Notes

You must [log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fdeveloper.wordpress.org%2Freference%2Fclasses%2Fwordpress-aiclient-results-dto-generativeairesult%2Ffromarray%2F)
before being able to contribute a note or feedback.